interface GraphQLResponse<T> {
    data: Record<string, T>;
    errors?: any;
}

Type Parameters

  • T

Properties

Properties

data: Record<string, T>
errors?: any