@playlive/tiltify-graphql
    Preparing search index...

    Interface TiltifyGraphQLResponse<T>

    Shape of a successful Tiltify GraphQL response. The wire format follows the standard GraphQL spec, so we mirror it directly.

    interface TiltifyGraphQLResponse<T> {
        data?: T;
        errors?: {
            extensions?: Record<string, unknown>;
            key?: string;
            message: string;
            path?: (string | number)[];
        }[];
    }

    Type Parameters

    • T
    Index
    data?: T
    errors?: {
        extensions?: Record<string, unknown>;
        key?: string;
        message: string;
        path?: (string | number)[];
    }[]