Orca Note Plugin API Documentation
    Preparing search index...

    Interface BlockRef

    Represents a reference from one block to another. References create connections between different blocks in the knowledge graph.

    interface BlockRef {
        alias?: string;
        data?: BlockProperty[];
        from: number;
        id: number;
        to: number;
        type: number;
    }
    Index

    Properties

    Properties

    alias?: string

    Optional alias name used for the reference

    data?: BlockProperty[]

    Optional additional properties for the reference

    from: number

    ID of the block containing the reference

    id: number

    Unique identifier for the reference

    to: number

    ID of the block being referenced

    type: number

    Type code for the reference