prorm API Reference
    Preparing search index...

    Interface NeptuneVertex<P>

    A vertex or edge normalized from Gremlin's Map/Vertex/Edge result shapes into a plain object.

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

    Type Parameters

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