File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -801,7 +801,8 @@ of rules must be adhered to by every Object type in a GraphQL schema.
801
801
4 . For each argument of the field:
802
802
1 . The argument must not have a name which begins with the
803
803
characters {"__ "} (two underscores).
804
- 2 . The argument must accept a type where {IsInputType(argumentType)} returns {true}.
804
+ 2 . The argument must accept a type where {IsInputType(argumentType)}
805
+ returns {true}.
805
806
4 . An object type may declare that it implements one or more unique interfaces.
806
807
5 . An object type must be a super-set of all interfaces it implements:
807
808
1 . The object type must include a field of the same name for every field
@@ -1698,7 +1699,13 @@ directive @invalidExample(arg: String @invalidExample) on ARGUMENT_DEFINITION
1698
1699
2. A directive definition must not contain the use of a directive which
1699
1700
references itself indirectly by referencing a Type or Directive which
1700
1701
transitively includes a reference to this directive .
1701
-
1702
+ 3. The directive must not have a name which begins with the characters
1703
+ {"__" } (two underscores).
1704
+ 4. For each argument of the directive :
1705
+ 1. The argument must not have a name which begins with the
1706
+ characters {"__" } (two underscores).
1707
+ 2. The argument must accept a type where {IsInputType (argumentType)}
1708
+ returns {true }.
1702
1709
1703
1710
### @skip
1704
1711
You can’t perform that action at this time.
0 commit comments