forked from graphql-nexus/nexus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kitchen-sink-schema.graphql
329 lines (279 loc) · 5.94 KB
/
kitchen-sink-schema.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
### This file was generated by Nexus Schema
### Do not make changes to this file directly
"""
Bar description
"""
interface Bar {
argsTest(a: InputType = { answer: 2, key: "one" }): Boolean
ok: Boolean @deprecated(reason: "Not ok?")
}
interface Baz {
"""
'A' description
"""
a: Bar
ok: Boolean
}
type BooleanConnection {
"""
https://relay.dev/graphql/connections.htm#sec-Edge-Types
"""
edges: [BooleanEdge]
"""
https://relay.dev/graphql/connections.htm#sec-undefined.PageInfo
"""
pageInfo: PageInfo!
}
type BooleanEdge {
"""
https://relay.dev/graphql/connections.htm#sec-Cursor
"""
cursor: String!
"""
https://relay.dev/graphql/connections.htm#sec-Node
"""
node: Boolean
}
type ComplexObject {
id: ID
}
scalar Date
type DateConnection {
"""
https://relay.dev/graphql/connections.htm#sec-Edge-Types
"""
edges: [DateEdge]
"""
https://relay.dev/graphql/connections.htm#sec-undefined.PageInfo
"""
pageInfo: PageInfo!
}
type DateEdge {
"""
https://relay.dev/graphql/connections.htm#sec-Cursor
"""
cursor: String!
"""
https://relay.dev/graphql/connections.htm#sec-Node
"""
node: Date
}
type Foo implements Bar {
argsTest(a: InputType = { answer: 2, key: "one" }): Boolean
name: String
ok: Boolean @deprecated(reason: "Not ok?")
}
input InputType {
answer: Int
key: String!
nestedInput: InputType2
}
input InputType2 {
answer: Int
key: String!
someDate: Date!
}
type Mutation {
ok: Boolean
someMutationField(id: ID!): Foo
}
input NestedType {
veryNested: String
}
interface Node {
data: Node
id: ID
}
"""
PageInfo cursor, as defined in https://relay.dev/graphql/connections.htm#sec-undefined.PageInfo
"""
type PageInfo {
"""
The cursor corresponding to the last nodes in edges. Null if the connection is empty.
"""
endCursor: String
"""
Used to indicate whether more edges exist following the set defined by the clients arguments.
"""
hasNextPage: Boolean!
"""
Used to indicate whether more edges exist prior to the set defined by the clients arguments.
"""
hasPreviousPage: Boolean!
"""
The cursor corresponding to the first nodes in edges. Null if the connection is empty.
"""
startCursor: String
}
type Query {
asArgExample(testAsArg: InputType!): String
bar: TestObj
booleanConnection(
"""
Returns the elements in the list that come after the specified cursor
"""
after: String
"""
Returns the first n elements from the list.
"""
first: Int!
): BooleanConnection
complexQuery(count: Int!): [ComplexObject]
dateAsList: [Date]
deprecatedConnection(
"""
Returns the elements in the list that come after the specified cursor
"""
after: String
"""
Returns the elements in the list that come before the specified cursor
"""
before: String
"""
Returns the first n elements from the list.
"""
first: Int
"""
Returns the last n elements from the list.
"""
last: Int
): BooleanConnection! @deprecated(reason: "Dont use this, use booleanConnection instead")
extended: SomeItem
getNumberOrNull(a: Int!): Int
guardedConnection(
"""
Returns the elements in the list that come after the specified cursor
"""
after: String
"""
Returns the first n elements from the list.
"""
first: Int!
): DateConnection
inlineArgs(someArg: SomeArg): String
inputAsArgExample(testInput: InputType, testScalar: String): String
protectedField: Int
userConnectionAdditionalArgs(
"""
Returns the elements in the list that come after the specified cursor
"""
after: String
"""
Returns the first n elements from the list.
"""
first: Int!
"""
If true, filters the users with an odd pk
"""
isEven: Boolean
): UserConnection
userConnectionBackwardOnly(
"""
Returns the elements in the list that come before the specified cursor
"""
before: String
"""
Returns the last n elements from the list.
"""
last: Int!
): UserConnection
userConnectionForwardOnly(
"""
Returns the elements in the list that come after the specified cursor
"""
after: String
"""
Returns the first n elements from the list.
"""
first: Int!
): UserConnection
"""
A connection with some user nodes
"""
usersConnectionNodes(
"""
Returns the elements in the list that come after the specified cursor
"""
after: String
"""
Returns the elements in the list that come before the specified cursor
"""
before: String
"""
Returns the first n elements from the list.
"""
first: Int
"""
Returns the last n elements from the list.
"""
last: Int
): UserConnection
usersConnectionResolve(
"""
Returns the elements in the list that come after the specified cursor
"""
after: String
"""
Returns the elements in the list that come before the specified cursor
"""
before: String
"""
Returns the first n elements from the list.
"""
first: Int
"""
Returns the last n elements from the list.
"""
last: Int
): UserConnection
}
input SomeArg {
arg: NestedType
someField: String
}
type SomeItem {
id: ID
}
type SomeNode implements Node {
data: SomeNode
id: ID
}
type TestObj implements Bar & Baz & Node {
"""
'A' description
"""
a: Bar
argsTest(a: InputType = { answer: 2, key: "one" }): Boolean
data: Node
id: ID!
item: String
ok: Boolean
}
union TestUnion = Foo
interface UnusedInterface {
ok: Boolean
}
type User {
id: ID
name: String
}
type UserConnection {
"""
https://relay.dev/graphql/connections.htm#sec-Edge-Types
"""
edges: [UserEdge]
"""
https://relay.dev/graphql/connections.htm#sec-undefined.PageInfo
"""
pageInfo: PageInfo!
}
type UserEdge {
"""
https://relay.dev/graphql/connections.htm#sec-Cursor
"""
cursor: String!
"""
https://relay.dev/graphql/connections.htm#sec-Node
"""
node: User
}