prorm API Reference
    Preparing search index...

    Interface TigerGraphAttributeValue<T>

    TigerGraph's documented upsert wire format wraps every attribute value as {"value": <actual value>}, with an optional op accumulator code (e.g. '+'/'max') for attributes backed by an accumulator. Confirmed against TigerGraph's REST++ upsert documentation (see README).

    interface TigerGraphAttributeValue<T = unknown> {
        value: T;
        op?: string;
    }

    Type Parameters

    • T = unknown
    Index
    value: T
    op?: string