prorm API Reference
    Preparing search index...

    Interface UpsertPayload

    Raw upsert payload matching TigerGraph's POST /graph/{graph} body shape exactly.

    interface UpsertPayload {
        vertices?: Record<string, Record<string, WireAttributes>>;
        edges?: Record<
            string,
            Record<
                string,
                Record<string, Record<string, Record<string, WireAttributes>>>,
            >,
        >;
    }
    Index
    vertices?: Record<string, Record<string, WireAttributes>>
    edges?: Record<
        string,
        Record<
            string,
            Record<string, Record<string, Record<string, WireAttributes>>>,
        >,
    >