Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions src/utilities/__tests__/buildASTSchema-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -969,6 +969,20 @@ describe('Failures', () => {
);
});

it('Does not consider directive names', () => {
const body = dedent`
schema {
query: Foo
}

directive @Foo on QUERY
`;
const doc = parse(body);
expect(() => buildASTSchema(doc)).to.throw(
'Specified query type "Foo" not found in document.',
);
});

it('Does not consider operation names', () => {
const body = dedent`
schema {
Expand Down