prorm API Reference
    Preparing search index...

    Interface GraphNode<P>

    A Neo4j node, mapped to a plain object (see "Result mapping" in the README).

    interface GraphNode<P = Record<string, unknown>> {
        elementId: string;
        identity: number;
        labels: string[];
        properties: P;
    }

    Type Parameters

    • P = Record<string, unknown>
    Index
    elementId: string
    identity: number

    Legacy numeric ID (unwrapped from Neo4j's Integer type - see intToNumber/README "Known limitations").

    labels: string[]
    properties: P