prorm API Reference
    Preparing search index...

    Interface VertexTypeSchema

    One vertex type as returned by GSQL schema introspection.

    interface VertexTypeSchema {
        Name: string;
        PrimaryId?: Record<string, unknown>;
        Attributes?: {
            AttributeName: string;
            AttributeType?: Record<string, unknown>;
        }[];
    }
    Index
    Name: string
    PrimaryId?: Record<string, unknown>
    Attributes?: { AttributeName: string; AttributeType?: Record<string, unknown> }[]