Mirror: The spec-compliant minimum of client-side GraphQL.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 0ce16030f5c5b2b066439c8c7b4091c6e3a9c8a6 18 lines 530 B view raw
1import type * as graphql from 'graphql'; 2import type * as graphqlWeb from '../src/index'; 3 4export function parseInput(input: typeof graphqlWeb.parse): typeof graphql.parse { 5 return input; 6} 7 8export function parseOutput(input: typeof graphql.parse): typeof graphqlWeb.parse { 9 return input; 10} 11 12export function parseValueInput(input: typeof graphqlWeb.parseValue): typeof graphql.parseValue { 13 return input; 14} 15 16export function parseValueOutput(input: typeof graphql.parseValue): typeof graphqlWeb.parseValue { 17 return input; 18}