1+ const kitchenSinkSDL : string = `
12"""This is a description of the schema as a whole."""
23schema {
34 query: QueryType
@@ -6,21 +7,21 @@ schema {
67
78"""
89This is a description
9- of the `Foo` type.
10+ of the \ `Foo\ ` type.
1011"""
1112type Foo implements Bar & Baz & Two {
12- "Description of the `one` field."
13+ "Description of the \ `one\ ` field."
1314 one: Type
1415 """
15- This is a description of the `two` field.
16+ This is a description of the \ `two\ ` field.
1617 """
1718 two(
1819 """
19- This is a description of the `argument` argument.
20+ This is a description of the \ `argument\ ` argument.
2021 """
2122 argument: InputType!
2223 ): Type
23- """This is a description of the `three` field."""
24+ """This is a description of the \ `three\ ` field."""
2425 three(argument: InputType, other: String): Int
2526 four(argument: String = "string"): String
2627 five(argument: [String] = ["string", "string"]): String
@@ -86,14 +87,14 @@ extend scalar CustomScalar @onScalar
8687
8788enum Site {
8889 """
89- This is a description of the `DESKTOP` value
90+ This is a description of the \ `DESKTOP\ ` value
9091 """
9192 DESKTOP
9293
93- """This is a description of the `MOBILE` value"""
94+ """This is a description of the \ `MOBILE\ ` value"""
9495 MOBILE
9596
96- "This is a description of the `WEB` value"
97+ "This is a description of the \ `WEB\ ` value"
9798 WEB
9899}
99100
@@ -128,10 +129,10 @@ extend input InputType {
128129extend input InputType @onInputObject
129130
130131"""
131- This is a description of the `@skip` directive
132+ This is a description of the \ `@skip\ ` directive
132133"""
133134directive @skip(
134- """This is a description of the `if` argument"""
135+ """This is a description of the \ `if\ ` argument"""
135136 if: Boolean! @onArgumentDefinition
136137) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
137138
@@ -154,3 +155,6 @@ extend schema @onSchema
154155extend schema @onSchema {
155156 subscription: SubscriptionType
156157}
158+ ` ;
159+
160+ export default kitchenSinkSDL ;
0 commit comments