...
1- rule: 'ExecutableDefinitions/.*'
2 skip: "These are impossible to generate because the parser is split between Query and Schema"
3
4- rule: 'FieldsOnCorrectType/Defined on implementors but not on interface'
5 errors:
6 - message: Cannot query field "nickname" on type "Pet". Did you mean to use an inline fragment on "Cat" or "Dog"?
7 locations:
8 - {line: 3, column: 9}
9
10- rule: 'KnownDirectives/within schema language/with misplaced directives'
11 skip: "When the syntax of schema is mixed in query, parser can't consume schema syntax and ignore it"
12
13- rule: 'KnownTypeNames/ignores type definitions'
14 skip: "When the syntax of schema is mixed in query, parser can't consume schema syntax and ignore it"
15
16- rule: 'OverlappingFieldsCanBeMerged/return types must be unambiguous/reports correctly when a non-exclusive follows an exclusive'
17 skip: "Spec issue? scalar is not exists on SomeBox"
18
19- rule: 'ValuesOfCorrectType/.*custom scalar.*'
20 skip: "Custom scalars are a runtime feature, maybe they dont belong in here?"
View as plain text