graphql
Version:
A Query Language and Runtime which can target any service.
46 lines (37 loc) • 1.36 kB
Flow
// @flow strict
import { GraphQLError } from '../../error/GraphQLError';
import { print } from '../../language/printer';
import { type ASTVisitor } from '../../language/visitor';
import { type VariableDefinitionNode } from '../../language/ast';
import { isInputType } from '../../type/definition';
import { typeFromAST } from '../../utilities/typeFromAST';
import { type ValidationContext } from '../ValidationContext';
export function nonInputTypeOnVarMessage(
variableName: string,
typeName: string,
): string {
return `Variable "$${variableName}" cannot be non-input type "${typeName}".`;
}
/**
* Variables are input types
*
* A GraphQL operation is only valid if all the variables it defines are of
* input types (scalar, enum, or input object).
*/
export function VariablesAreInputTypes(context: ValidationContext): ASTVisitor {
return {
VariableDefinition(node: VariableDefinitionNode): ?GraphQLError {
const type = typeFromAST(context.getSchema(), node.type);
// If the variable type is not an input type, return an error.
if (type && !isInputType(type)) {
const variableName = node.variable.name.value;
context.reportError(
new GraphQLError(
nonInputTypeOnVarMessage(variableName, print(node.type)),
node.type,
),
);
}
},
};
}