prorm API Reference
    Preparing search index...

    Interface EdgeTypeSchema

    One edge type as returned by GSQL schema introspection.

    interface EdgeTypeSchema {
        Name: string;
        FromVertexTypeName?: string;
        ToVertexTypeName?: string;
        IsDirected?: boolean;
        Attributes?: {
            AttributeName: string;
            AttributeType?: Record<string, unknown>;
        }[];
    }
    Index
    Name: string
    FromVertexTypeName?: string
    ToVertexTypeName?: string
    IsDirected?: boolean
    Attributes?: { AttributeName: string; AttributeType?: Record<string, unknown> }[]