prorm API Reference
    Preparing search index...

    Interface GraphRelationship<P>

    A Neo4j relationship, mapped to a plain object.

    interface GraphRelationship<P = Record<string, unknown>> {
        elementId: string;
        identity: number;
        type: string;
        startElementId: string;
        endElementId: string;
        start: number;
        end: number;
        properties: P;
    }

    Type Parameters

    • P = Record<string, unknown>
    Index
    elementId: string
    identity: number
    type: string
    startElementId: string
    endElementId: string
    start: number
    end: number
    properties: P