@logseq/libs
    Preparing search index...

    Interface BlockEntity

    Block - Logseq's fundamental data structure.

    interface BlockEntity {
        anchor?: string;
        body?: any;
        children?: (BlockEntity | BlockUUIDTuple)[];
        "collapsed?": boolean;
        container?: string;
        content?: string;
        createdAt: number;
        file?: IEntityID;
        format: "markdown" | "org";
        fullTitle: string;
        id: number;
        ident?: string;
        level?: number;
        marker?: string;
        meta?: {
            endPos: number;
            properties: any;
            startPos: number;
            timestamps: any;
        };
        order: string;
        page: IEntityID;
        parent: IEntityID;
        properties?: Record<string, any>;
        title: string;
        updatedAt: number;
        uuid: string;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    anchor?: string
    body?: any
    children?: (BlockEntity | BlockUUIDTuple)[]
    "collapsed?": boolean
    container?: string
    content?: string
    createdAt: number
    file?: IEntityID
    format: "markdown" | "org"
    fullTitle: string
    id: number
    ident?: string
    level?: number
    marker?: string
    meta?: { endPos: number; properties: any; startPos: number; timestamps: any }
    order: string
    page: IEntityID
    parent: IEntityID
    properties?: Record<string, any>
    title: string
    updatedAt: number
    uuid: string