-
-
Notifications
You must be signed in to change notification settings - Fork 756
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
64985e1
commit c97d972
Showing
3 changed files
with
103 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
...es/__snapshots__/DescriptionTests.Schema_With_All_Possible_Descriptions_No_Indent.graphql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
"Single line comment" schema { query: Query } "Single line comment" interface OtherInterface { field: String } """ | ||
Multi line | ||
comment | ||
""" interface SomeInterface { "Single line comment" field: String """ | ||
Multi line | ||
comment | ||
""" fieldMulti: String fieldWithArgs("Single line comment" arg1: String """ | ||
Multi line | ||
comment | ||
""" arg2: String): String } """ | ||
Multi line | ||
comment | ||
""" type OtherObjectType implements SomeInterface & OtherInterface { field: String fieldMulti: String fieldWithArgs(arg1: String arg2: String): String } """ | ||
Multi line | ||
comment | ||
""" type Query { "Single line comment" outputFieldSingle: String """ | ||
Multi line | ||
comment | ||
""" outputFieldMulti: String outputFieldWithArgs("Single line comment" arg1: SomeInput """ | ||
Multi line | ||
comment | ||
""" arg2: OtherInput): String } "Single line comment" union OtherUnion = OtherObjectType """ | ||
Multi line | ||
comment | ||
""" union SomeUnion = OtherObjectType "Single line comment" input OtherInput { "Single line comment" field: String """ | ||
Multi line | ||
comment | ||
""" fieldMulti: String } """ | ||
Multi line | ||
comment | ||
""" input SomeInput { "Single line comment" field: String """ | ||
Multi line | ||
comment | ||
""" fieldMulti: String } """ | ||
Multi line | ||
comment | ||
""" enum OtherEnum { "Single line comment" VALUE1 """ | ||
Multi line | ||
comment | ||
""" VALUE2 } "Single line comment" enum SomeEnum { "Single line comment" VALUE1 """ | ||
Multi line | ||
comment | ||
""" VALUE2 } "Single line comment" directive @other("Single line comment" arg1: String """ | ||
Multi line | ||
comment | ||
""" arg2: String) on FIELD """ | ||
Multi line | ||
comment | ||
""" directive @some("Single line comment" arg1: String """ | ||
Multi line | ||
comment | ||
""" arg2: String) on FIELD """ | ||
Multi line | ||
comment | ||
""" scalar Other "Single line comment" scalar Some |