...
1- rule: 'ExecutableDefinitionsRule/.*'
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: 'KnownDirectivesRule/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: 'KnownTypeNamesRule/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: 'OverlappingFieldsCanBeMergedRule/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: 'ValuesOfCorrectTypeRule/.*custom scalar.*'
20 skip: "Custom scalars are a runtime feature, maybe they dont belong in here?"
21
22- rule: 'NoDeprecatedCustomRule/.*'
23 skip: "This rule is optional and is not part of the Validation section of the GraphQL Specification"
24
25- rule: 'NoSchemaIntrospectionCustomRule/.*'
26 skip: "This rule is optional and is not part of the Validation section of the GraphQL Specification"
27
28- rule: 'KnownTypeNamesRule/references to standard scalars that are missing in schema'
29 skip: "standard scalars must be exists in schema"
View as plain text