prorm API Reference
    Preparing search index...

    Interface EdgeCreateSpec

    Fully-resolved spec for creating an edge between matched endpoints.

    interface EdgeCreateSpec {
        fromLabel: string;
        fromWhere?: WhereOptions;
        edgeLabel: string;
        toLabel: string;
        toWhere?: WhereOptions;
        props?: Record<string, unknown>;
    }
    Index
    fromLabel: string
    fromWhere?: WhereOptions
    edgeLabel: string
    toLabel: string
    toWhere?: WhereOptions
    props?: Record<string, unknown>