prorm API Reference
    Preparing search index...

    Interface EdgeUpsert

    A single edge to upsert via upsertEdges().

    interface EdgeUpsert {
        fromType: string;
        fromId: string;
        edgeType: string;
        toType: string;
        toId: string;
        attributes?: PlainAttributes;
    }
    Index
    fromType: string
    fromId: string
    edgeType: string
    toType: string
    toId: string
    attributes?: PlainAttributes