Mirror: The spec-compliant minimum of client-side GraphQL.
1import type * as graphql from 'graphql';
2import type * as graphqlWeb from '../src/index';
3
4export function errorInput(input: graphqlWeb.GraphQLError): graphql.GraphQLError {
5 return input;
6}
7
8export function errorOutput(input: graphql.GraphQLError): graphqlWeb.GraphQLError {
9 return input;
10}