Generic GraphQL API response with optional errors.
export interface AniListResponse<T> { data: T; errors?: GraphQLError[];} Copy
export interface AniListResponse<T> { data: T; errors?: GraphQLError[];}
Optional
Generic GraphQL API response with optional errors.
Source