123456789101112131415161718192021222324252627282930 |
- import { Maybe } from '../jsutils/Maybe';
- import { ValueNode } from '../language/ast';
- import { GraphQLInputType } from '../type/definition';
- export function valueFromAST(
- valueNode: Maybe<ValueNode>,
- type: GraphQLInputType,
- variables?: Maybe<{ [key: string]: any }>,
- ): any;
|