1
+ const kitchenSinkSDL : string = `
1
2
"""This is a description of the schema as a whole."""
2
3
schema {
3
4
query: QueryType
@@ -6,21 +7,21 @@ schema {
6
7
7
8
"""
8
9
This is a description
9
- of the `Foo` type.
10
+ of the \ `Foo\ ` type.
10
11
"""
11
12
type Foo implements Bar & Baz & Two {
12
- "Description of the `one` field."
13
+ "Description of the \ `one\ ` field."
13
14
one: Type
14
15
"""
15
- This is a description of the `two` field.
16
+ This is a description of the \ `two\ ` field.
16
17
"""
17
18
two(
18
19
"""
19
- This is a description of the `argument` argument.
20
+ This is a description of the \ `argument\ ` argument.
20
21
"""
21
22
argument: InputType!
22
23
): Type
23
- """This is a description of the `three` field."""
24
+ """This is a description of the \ `three\ ` field."""
24
25
three(argument: InputType, other: String): Int
25
26
four(argument: String = "string"): String
26
27
five(argument: [String] = ["string", "string"]): String
@@ -86,14 +87,14 @@ extend scalar CustomScalar @onScalar
86
87
87
88
enum Site {
88
89
"""
89
- This is a description of the `DESKTOP` value
90
+ This is a description of the \ `DESKTOP\ ` value
90
91
"""
91
92
DESKTOP
92
93
93
- """This is a description of the `MOBILE` value"""
94
+ """This is a description of the \ `MOBILE\ ` value"""
94
95
MOBILE
95
96
96
- "This is a description of the `WEB` value"
97
+ "This is a description of the \ `WEB\ ` value"
97
98
WEB
98
99
}
99
100
@@ -128,10 +129,10 @@ extend input InputType {
128
129
extend input InputType @onInputObject
129
130
130
131
"""
131
- This is a description of the `@skip` directive
132
+ This is a description of the \ `@skip\ ` directive
132
133
"""
133
134
directive @skip(
134
- """This is a description of the `if` argument"""
135
+ """This is a description of the \ `if\ ` argument"""
135
136
if: Boolean! @onArgumentDefinition
136
137
) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
137
138
@@ -154,3 +155,6 @@ extend schema @onSchema
154
155
extend schema @onSchema {
155
156
subscription: SubscriptionType
156
157
}
158
+ ` ;
159
+
160
+ export default kitchenSinkSDL ;
0 commit comments