prorm API Reference
    Preparing search index...

    Interface NeptuneEdge<P>

    A normalized edge; outV/inV are the endpoint vertex IDs (the edge's tail/head).

    interface NeptuneEdge<
        P extends Record<string, unknown> = Record<string, unknown>,
    > {
        id: NeptuneId;
        label: string;
        outV: NeptuneId;
        inV: NeptuneId;
        properties: P;
    }

    Type Parameters

    • P extends Record<string, unknown> = Record<string, unknown>
    Index
    label: string
    outV: NeptuneId
    properties: P