UNPKG

@kamilkisiela/graphql-tools

Version:

Useful tools to create and manipulate GraphQL schemas.

8 lines (7 loc) 256 B
import { Transform } from './transforms'; import { GraphQLEnumType } from 'graphql'; export default class ConvertEnumResponse implements Transform { private enumNode; constructor(enumNode: GraphQLEnumType); transformResult(result: any): any; }