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

    Interface TiltifyGraphQLErrorOptions

    Options accepted by the TiltifyGraphQLError constructor.

    interface TiltifyGraphQLErrorOptions {
        cause?: unknown;
        errors?: readonly TiltifyGraphQLErrorEntry[];
        isNotFound?: boolean;
        operationName: string;
        status?: number;
    }
    Index
    cause?: unknown

    Underlying error to chain via Error.cause.

    errors?: readonly TiltifyGraphQLErrorEntry[]

    Raw errors[] from the response body, if any.

    isNotFound?: boolean

    Force the not-found classification instead of deriving it.

    operationName: string

    GraphQL operation name that produced the failure.

    status?: number

    HTTP status, when the failure was an HTTP-level one.