1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- import { Maybe } from '../jsutils/Maybe';
- import { GraphQLError } from '../error/GraphQLError';
- import {
- FieldNode,
- DirectiveNode,
- VariableDefinitionNode,
- } from '../language/ast';
- import { GraphQLDirective } from '../type/directives';
- import { GraphQLSchema } from '../type/schema';
- import { GraphQLField } from '../type/definition';
- type CoercedVariableValues =
- | { errors: ReadonlyArray<GraphQLError>; coerced?: never }
- | { errors?: never; coerced: { [key: string]: any } };
- export function getVariableValues(
- schema: GraphQLSchema,
- varDefNodes: ReadonlyArray<VariableDefinitionNode>,
- inputs: { [key: string]: any },
- options?: { maxErrors?: number },
- ): CoercedVariableValues;
- export function getArgumentValues(
- def: GraphQLField<any, any> | GraphQLDirective,
- node: FieldNode | DirectiveNode,
- variableValues?: Maybe<{ [key: string]: any }>,
- ): { [key: string]: any };
- export function getDirectiveValues(
- directiveDef: GraphQLDirective,
- node: {
- readonly directives?: ReadonlyArray<DirectiveNode>;
- },
- variableValues?: Maybe<{ [key: string]: any }>,
- ): undefined | { [key: string]: any };
|