Skip to content

Commit 2eeafec

Browse files
committed
Validate variables are known types
Adds a check to the validation rule VariablesAreInputTypes to ensure that referenced types exist at all before checking they are input types. This check is not explicitly described in the specification for validating variables: http://spec.graphql.org/draft/#sec-Validation.Variables I am assuming this is simply an oversight and the rule is implicit. Still, it is valuable to check for it in order to provide a proper error to clients.
1 parent 5ed10ef commit 2eeafec

File tree

2 files changed

+33
-3
lines changed

2 files changed

+33
-3
lines changed

src/validation/__tests__/VariablesAreInputTypesRule-test.ts

+17
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,23 @@ describe('Validate: Variables are input types', () => {
2121
`);
2222
});
2323

24+
it('unknown types are invalid', () => {
25+
expectErrors(`
26+
query Foo($a: Unknown, $b: [[Unknown!]]!) {
27+
field(a: $a, b: $b)
28+
}
29+
`).to.deep.equal([
30+
{
31+
locations: [{ line: 2, column: 21 }],
32+
message: 'Variable "$a" references unknown type "Unknown".',
33+
},
34+
{
35+
locations: [{ line: 2, column: 34 }],
36+
message: 'Variable "$b" references unknown type "[[Unknown!]]!".',
37+
},
38+
]);
39+
});
40+
2441
it('output types are invalid', () => {
2542
expectErrors(`
2643
query Foo($a: Dog, $b: [[CatOrDog!]]!, $c: Pet) {

src/validation/rules/VariablesAreInputTypesRule.ts

+16-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,26 @@ export function VariablesAreInputTypesRule(
2323
VariableDefinition(node: VariableDefinitionNode) {
2424
const type = typeFromAST(context.getSchema(), node.type);
2525

26-
if (type && !isInputType(type)) {
26+
if (!type) {
2727
const variableName = node.variable.name.value;
28-
const typeName = print(node.type);
28+
const typeReference = print(node.type);
2929

3030
context.reportError(
3131
new GraphQLError(
32-
`Variable "$${variableName}" cannot be non-input type "${typeName}".`,
32+
`Variable "$${variableName}" references unknown type "${typeReference}".`,
33+
node.type,
34+
),
35+
);
36+
return;
37+
}
38+
39+
if (!isInputType(type)) {
40+
const variableName = node.variable.name.value;
41+
const typeReference = print(node.type);
42+
43+
context.reportError(
44+
new GraphQLError(
45+
`Variable "$${variableName}" cannot be non-input type "${typeReference}".`,
3346
node.type,
3447
),
3548
);

0 commit comments

Comments
 (0)