g3-toolkit API Reference
    Preparing search index...

    Interface SchemaModel

    Schema model describing the types, properties, and relationships available in the data source.

    interface SchemaModel {
        edgeProperties: Record<string, string[]>;
        edgeTypes: string[];
        nodeProperties: Record<string, string[]>;
        nodeTypes: string[];
    }
    Index

    Properties

    edgeProperties: Record<string, string[]>

    Property keys per edge type.

    edgeTypes: string[]

    Edge type labels available (e.g., ["knows", "worksFor"]).

    nodeProperties: Record<string, string[]>

    Property keys per node type.

    nodeTypes: string[]

    Node type labels available (e.g., ["Person", "Organization"]).