g3-toolkit API Reference
    Preparing search index...

    Interface PropertyKeyRegistry

    Property-key registry (R3.1).

    Tracks all observed node types, edge types, and property keys across the graph. Used by faceted filters (R2.7), schema discovery (R3.3), and visual encoding auto-mapping.

    interface PropertyKeyRegistry {
        edgePropertyKeys: ReadonlySet<string>;
        edgeTypes: ReadonlySet<string>;
        nodePropertyKeys: ReadonlySet<string>;
        nodeTypes: ReadonlySet<string>;
    }
    Index

    Properties

    edgePropertyKeys: ReadonlySet<string>

    All observed property keys on edges.

    edgeTypes: ReadonlySet<string>

    All observed edge type labels.

    nodePropertyKeys: ReadonlySet<string>

    All observed property keys on nodes.

    nodeTypes: ReadonlySet<string>

    All observed node type labels.