UNPKG

apollo-mantra

Version:

Tools for integration of apollo with Mantra

11 lines (10 loc) 325 B
import { GraphQLError } from 'graphql'; export interface ApolloError { message: string; graphQLErrors: GraphQLError[]; networkError?: Error; extraInfo?: any; stack?: string; } export declare function createError(errors: GraphQLError[]): ApolloError; export declare function log(error: ApolloError): void;