GraphqlResponse: (
    | {
        data: JsonObject
        | null;
        errors?: [GraphqlErrorResponse, ...GraphqlErrorResponse[]];
    }
    | {
        data?: undefined;
        errors: [GraphqlErrorResponse, ...GraphqlErrorResponse[]];
    }
) & { extensions?: JsonObject }

A response from the GraphQL API

Type declaration

  • Optionalextensions?: JsonObject

    Extra information about the request