prorm API Reference
    Preparing search index...

    Interface TigerGraphVertex<T>

    A vertex as returned by GET /graph/{graph}/vertices/{type}/{id} (confirmed shape).

    interface TigerGraphVertex<T = Record<string, unknown>> {
        v_id: string;
        v_type: string;
        attributes: T;
    }

    Type Parameters

    • T = Record<string, unknown>
    Index
    v_id: string
    v_type: string
    attributes: T