-
Notifications
You must be signed in to change notification settings - Fork 10.3k
/
Copy pathschema.gql
589 lines (506 loc) · 14.6 KB
/
schema.gql
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
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
### Type definitions saved at 2021-09-25T11:33:25.217Z ###
type File implements Node @dontInfer {
sourceInstanceName: String!
absolutePath: String!
relativePath: String!
extension: String!
size: Int!
prettySize: String!
modifiedTime: Date! @dateformat
accessTime: Date! @dateformat
changeTime: Date! @dateformat
birthTime: Date! @dateformat
root: String!
dir: String!
base: String!
ext: String!
name: String!
relativeDirectory: String!
dev: Int!
mode: Int!
nlink: Int!
uid: Int!
gid: Int!
rdev: Int!
ino: Float!
atimeMs: Float!
mtimeMs: Float!
ctimeMs: Float!
atime: Date! @dateformat
mtime: Date! @dateformat
ctime: Date! @dateformat
birthtime: Date @deprecated(reason: "Use `birthTime` instead")
birthtimeMs: Float @deprecated(reason: "Use `birthTime` instead")
}
type Directory implements Node @dontInfer {
sourceInstanceName: String!
absolutePath: String!
relativePath: String!
extension: String!
size: Int!
prettySize: String!
modifiedTime: Date! @dateformat
accessTime: Date! @dateformat
changeTime: Date! @dateformat
birthTime: Date! @dateformat
root: String!
dir: String!
base: String!
ext: String!
name: String!
relativeDirectory: String!
dev: Int!
mode: Int!
nlink: Int!
uid: Int!
gid: Int!
rdev: Int!
ino: Float!
atimeMs: Float!
mtimeMs: Float!
ctimeMs: Float!
atime: Date! @dateformat
mtime: Date! @dateformat
ctime: Date! @dateformat
birthtime: Date @deprecated(reason: "Use `birthTime` instead")
birthtimeMs: Float @deprecated(reason: "Use `birthTime` instead")
}
type Site implements Node @dontInfer {
buildTime: Date @dateformat
siteMetadata: SiteSiteMetadata
polyfill: Boolean
pathPrefix: String
}
type SiteSiteMetadata {
title: String
description: String
}
type SiteFunction implements Node @dontInfer {
functionRoute: String!
pluginName: String!
originalAbsoluteFilePath: String!
originalRelativeFilePath: String!
relativeCompiledFilePath: String!
absoluteCompiledFilePath: String!
matchPath: String
}
type SitePage implements Node @dontInfer {
path: String!
component: String!
internalComponentName: String!
componentChunkName: String!
matchPath: String
pageContext: JSON
}
type SitePlugin implements Node @dontInfer {
resolve: String
name: String
version: String
nodeAPIs: [String]
browserAPIs: [String]
ssrAPIs: [String]
pluginFilepath: String
pluginOptions: JSON
packageJson: JSON
}
type SiteBuildMetadata implements Node @dontInfer {
buildTime: Date @dateformat
}
interface ContentfulEntry implements Node {
contentful_id: String!
id: ID!
node_locale: String!
}
interface ContentfulReference {
contentful_id: String!
id: ID!
}
type ContentfulAsset implements ContentfulReference & Node @derivedTypes @dontInfer {
contentful_id: String!
spaceId: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
file: ContentfulAssetFile
title: String
description: String
node_locale: String
sys: ContentfulAssetSys
}
type ContentfulAssetFile @derivedTypes {
url: String
details: ContentfulAssetFileDetails
fileName: String
contentType: String
}
type ContentfulAssetFileDetails @derivedTypes {
size: Int
image: ContentfulAssetFileDetailsImage
}
type ContentfulAssetFileDetailsImage {
width: Int
height: Int
}
type ContentfulAssetSys {
type: String
revision: Int
}
type ContentfulNumber implements ContentfulReference & ContentfulEntry & Node @derivedTypes @dontInfer {
contentful_id: String!
node_locale: String!
title: String
integerLocalized: Int
spaceId: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulNumberSys
metadata: ContentfulNumberMetadata
decimal: Float
integer: Int
content_reference: [ContentfulContentReference] @link(by: "id", from: "content reference___NODE") @proxy(from: "content reference___NODE")
decimalLocalized: Float
}
type ContentfulNumberSys @derivedTypes {
type: String
revision: Int
contentType: ContentfulNumberSysContentType
}
type ContentfulNumberSysContentType @derivedTypes {
sys: ContentfulNumberSysContentTypeSys
}
type ContentfulNumberSysContentTypeSys {
type: String
linkType: String
id: String
}
type ContentfulNumberMetadata {
tags: [ContentfulTag] @link(by: "id", from: "tags___NODE")
}
type ContentfulTag implements Node @dontInfer {
name: String!
contentful_id: String!
}
type ContentfulContentReference implements ContentfulReference & ContentfulEntry & Node @derivedTypes @dontInfer {
contentful_id: String!
node_locale: String!
title: String
one: ContentfulContentReferenceContentfulTextUnion @link(by: "id", from: "one___NODE")
content_reference: [ContentfulContentReference] @link(by: "id", from: "content reference___NODE") @proxy(from: "content reference___NODE")
spaceId: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulContentReferenceSys
oneLocalized: ContentfulNumber @link(by: "id", from: "oneLocalized___NODE")
many: [ContentfulContentReferenceContentfulNumberContentfulTextUnion] @link(by: "id", from: "many___NODE")
manyLocalized: [ContentfulNumberContentfulTextUnion] @link(by: "id", from: "manyLocalized___NODE")
}
union ContentfulContentReferenceContentfulTextUnion = ContentfulContentReference | ContentfulText
type ContentfulContentReferenceSys @derivedTypes {
type: String
revision: Int
contentType: ContentfulContentReferenceSysContentType
}
type ContentfulContentReferenceSysContentType @derivedTypes {
sys: ContentfulContentReferenceSysContentTypeSys
}
type ContentfulContentReferenceSysContentTypeSys {
type: String
linkType: String
id: String
}
union ContentfulContentReferenceContentfulNumberContentfulTextUnion = ContentfulContentReference | ContentfulNumber | ContentfulText
union ContentfulNumberContentfulTextUnion = ContentfulNumber | ContentfulText
type ContentfulText implements ContentfulReference & ContentfulEntry & Node @derivedTypes @dontInfer {
contentful_id: String!
node_locale: String!
title: String
longLocalized: contentfulTextLongLocalizedTextNode @link(by: "id", from: "longLocalized___NODE")
spaceId: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulTextSys
longMarkdown: contentfulTextLongMarkdownTextNode @link(by: "id", from: "longMarkdown___NODE")
shortLocalized: String
longPlain: contentfulTextLongPlainTextNode @link(by: "id", from: "longPlain___NODE")
shortList: [String]
short: String
content_reference: [ContentfulContentReference] @link(by: "id", from: "content reference___NODE") @proxy(from: "content reference___NODE")
}
type contentfulTextLongLocalizedTextNode implements Node @derivedTypes @childOf(types: ["ContentfulText"]) @dontInfer {
longLocalized: String
sys: contentfulTextLongLocalizedTextNodeSys
}
type contentfulTextLongLocalizedTextNodeSys {
type: String
}
type ContentfulTextSys @derivedTypes {
type: String
revision: Int
contentType: ContentfulTextSysContentType
}
type ContentfulTextSysContentType @derivedTypes {
sys: ContentfulTextSysContentTypeSys
}
type ContentfulTextSysContentTypeSys {
type: String
linkType: String
id: String
}
type contentfulTextLongMarkdownTextNode implements Node @derivedTypes @childOf(types: ["ContentfulText"]) @dontInfer {
longMarkdown: String
sys: contentfulTextLongMarkdownTextNodeSys
}
type contentfulTextLongMarkdownTextNodeSys {
type: String
}
type contentfulTextLongPlainTextNode implements Node @derivedTypes @childOf(types: ["ContentfulText"]) @dontInfer {
longPlain: String
sys: contentfulTextLongPlainTextNodeSys
}
type contentfulTextLongPlainTextNodeSys {
type: String
}
type ContentfulMediaReference implements ContentfulReference & ContentfulEntry & Node @derivedTypes @dontInfer {
contentful_id: String!
node_locale: String!
title: String
one: ContentfulAsset @link(by: "id", from: "one___NODE")
spaceId: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulMediaReferenceSys
oneLocalized: ContentfulAsset @link(by: "id", from: "oneLocalized___NODE")
many: [ContentfulAsset] @link(by: "id", from: "many___NODE")
manyLocalized: [ContentfulAsset] @link(by: "id", from: "manyLocalized___NODE")
}
type ContentfulMediaReferenceSys @derivedTypes {
type: String
revision: Int
contentType: ContentfulMediaReferenceSysContentType
}
type ContentfulMediaReferenceSysContentType @derivedTypes {
sys: ContentfulMediaReferenceSysContentTypeSys
}
type ContentfulMediaReferenceSysContentTypeSys {
type: String
linkType: String
id: String
}
type ContentfulBoolean implements ContentfulReference & ContentfulEntry & Node @derivedTypes @dontInfer {
contentful_id: String!
node_locale: String!
title: String
booleanLocalized: Boolean
spaceId: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulBooleanSys
boolean: Boolean
}
type ContentfulBooleanSys @derivedTypes {
type: String
revision: Int
contentType: ContentfulBooleanSysContentType
}
type ContentfulBooleanSysContentType @derivedTypes {
sys: ContentfulBooleanSysContentTypeSys
}
type ContentfulBooleanSysContentTypeSys {
type: String
linkType: String
id: String
}
type ContentfulDate implements ContentfulReference & ContentfulEntry & Node @derivedTypes @dontInfer {
contentful_id: String!
node_locale: String!
title: String
dateTimeTimezone: Date @dateformat
spaceId: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulDateSys
date: Date @dateformat
dateLocalized: Date @dateformat
dateTime: Date @dateformat
}
type ContentfulDateSys @derivedTypes {
type: String
revision: Int
contentType: ContentfulDateSysContentType
}
type ContentfulDateSysContentType @derivedTypes {
sys: ContentfulDateSysContentTypeSys
}
type ContentfulDateSysContentTypeSys {
type: String
linkType: String
id: String
}
type ContentfulLocation implements ContentfulReference & ContentfulEntry & Node @derivedTypes @dontInfer {
contentful_id: String!
node_locale: String!
title: String
locationLocalized: ContentfulLocationLocationLocalized
spaceId: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulLocationSys
location: ContentfulLocationLocation
}
type ContentfulLocationLocationLocalized {
lon: Float
lat: Float
}
type ContentfulLocationSys @derivedTypes {
type: String
revision: Int
contentType: ContentfulLocationSysContentType
}
type ContentfulLocationSysContentType @derivedTypes {
sys: ContentfulLocationSysContentTypeSys
}
type ContentfulLocationSysContentTypeSys {
type: String
linkType: String
id: String
}
type ContentfulLocationLocation {
lat: Float
lon: Float
}
type ContentfulJson implements ContentfulReference & ContentfulEntry & Node @derivedTypes @dontInfer {
contentful_id: String!
node_locale: String!
title: String
json: contentfulJsonJsonJsonNode @link(by: "id", from: "json___NODE")
spaceId: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulJsonSys
jsonLocalized: contentfulJsonJsonLocalizedJsonNode @link(by: "id", from: "jsonLocalized___NODE")
}
type contentfulJsonJsonJsonNode implements Node @derivedTypes @childOf(types: ["ContentfulJson"]) @dontInfer {
age: Int
city: String
name: String
sys: contentfulJsonJsonJsonNodeSys
Actors: [contentfulJsonJsonJsonNodeActors]
}
type contentfulJsonJsonJsonNodeSys {
type: String
}
type contentfulJsonJsonJsonNodeActors {
age: Int
name: String
wife: String
photo: String
weight: Float
Born_At: String @proxy(from: "Born At")
children: [String]
Birthdate: String
hasChildren: Boolean
hasGreyHair: Boolean
}
type ContentfulJsonSys @derivedTypes {
type: String
revision: Int
contentType: ContentfulJsonSysContentType
}
type ContentfulJsonSysContentType @derivedTypes {
sys: ContentfulJsonSysContentTypeSys
}
type ContentfulJsonSysContentTypeSys {
type: String
linkType: String
id: String
}
type contentfulJsonJsonLocalizedJsonNode implements Node @derivedTypes @childOf(types: ["ContentfulJson"]) @dontInfer {
name: String
age: Int
city: String
sys: contentfulJsonJsonLocalizedJsonNodeSys
}
type contentfulJsonJsonLocalizedJsonNodeSys {
type: String
}
type ContentfulRichText implements ContentfulReference & ContentfulEntry & Node @derivedTypes @dontInfer {
contentful_id: String!
node_locale: String!
title: String
richText: ContentfulRichTextRichText
spaceId: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulRichTextSys
richTextValidated: ContentfulRichTextRichTextValidated
richTextLocalized: ContentfulRichTextRichTextLocalized
}
type ContentfulRichTextRichText {
raw: String
references: [ContentfulAssetContentfulContentReferenceContentfulLocationContentfulTextUnion] @link(by: "id", from: "references___NODE")
}
union ContentfulAssetContentfulContentReferenceContentfulLocationContentfulTextUnion = ContentfulAsset | ContentfulContentReference | ContentfulLocation | ContentfulText
type ContentfulRichTextSys @derivedTypes {
type: String
revision: Int
contentType: ContentfulRichTextSysContentType
}
type ContentfulRichTextSysContentType @derivedTypes {
sys: ContentfulRichTextSysContentTypeSys
}
type ContentfulRichTextSysContentTypeSys {
type: String
linkType: String
id: String
}
type ContentfulRichTextRichTextValidated {
raw: String
references: [ContentfulAssetContentfulLocationContentfulNumberContentfulTextUnion] @link(by: "id", from: "references___NODE")
}
union ContentfulAssetContentfulLocationContentfulNumberContentfulTextUnion = ContentfulAsset | ContentfulLocation | ContentfulNumber | ContentfulText
type ContentfulRichTextRichTextLocalized {
raw: String
}
type ContentfulValidatedContentReference implements ContentfulReference & ContentfulEntry & Node @dontInfer {
contentful_id: String!
node_locale: String!
}
type MarkdownHeading {
id: String
value: String
depth: Int
}
enum MarkdownHeadingLevels {
h1
h2
h3
h4
h5
h6
}
enum MarkdownExcerptFormats {
PLAIN
HTML
MARKDOWN
}
type MarkdownWordCount {
paragraphs: Int
sentences: Int
words: Int
}
type MarkdownRemark implements Node @childOf(mimeTypes: ["text/markdown", "text/x-markdown"], types: ["contentfulTextLongPlainTextNode", "contentfulTextLongMarkdownTextNode", "contentfulTextLongLocalizedTextNode"]) @derivedTypes @dontInfer {
frontmatter: MarkdownRemarkFrontmatter
excerpt: String
rawMarkdownBody: String
}
type MarkdownRemarkFrontmatter {
title: String
}
type ContentfulContentType implements Node @derivedTypes @dontInfer {
name: String
displayField: String
description: String
sys: ContentfulContentTypeSys
}
type ContentfulContentTypeSys {
type: String
}