AniLink - v2.0.0
    Preparing search index...

    Interface GraphQLResponseEnvelope

    A GraphQL response envelope as returned by the AniList API. The data field holds the root selection set of the operation.

    interface GraphQLResponseEnvelope {
        data?: unknown;
        errors?: GraphQLUpstreamError[];
    }
    Index
    data?: unknown

    Root selection set returned by the operation, when present.

    GraphQL-level failures returned inside the envelope, when present.