prorm API Reference
    Preparing search index...

    Interface TigerGraphEdge<T>

    An edge as returned by GET /graph/{graph}/edges/... (confirmed shape).

    interface TigerGraphEdge<T = Record<string, unknown>> {
        e_type: string;
        directed: boolean;
        from_id: string;
        from_type: string;
        to_id: string;
        to_type: string;
        attributes: T;
    }

    Type Parameters

    • T = Record<string, unknown>
    Index
    e_type: string
    directed: boolean
    from_id: string
    from_type: string
    to_id: string
    to_type: string
    attributes: T