AniLink - v1.29.2
    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?: { message: string }[];
    }
    Index
    data?: unknown
    errors?: { message: string }[]