-
Notifications
You must be signed in to change notification settings - Fork 2
/
schema.gql
987 lines (837 loc) · 29 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
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
### Type definitions saved at 2020-04-06T10:35:43.058Z ###
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 SitePage implements Node @dontInfer {
path: String!
component: String!
internalComponentName: String!
componentChunkName: String!
matchPath: String
}
type StackbitInternal implements Node @dontInfer {
updateTime: Float
}
type ContentfulAsset implements Node @derivedTypes @dontInfer {
contentful_id: String
file: ContentfulAssetFile
title: String
description: String
node_locale: String
}
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 contentfulSectionReviewsSubtitleTextNode implements Node @dontInfer {
subtitle: String
}
type contentfulSectionReviewsTitleTextNode implements Node @dontInfer {
title: String
}
type contentfulSectionReviewsSectionIdTextNode implements Node @dontInfer {
section_id: String
}
type ContentfulSectionReviews implements Node @derivedTypes @dontInfer {
bg: String
reviews: [ContentfulSectionReviewsReviews] @link(by: "id", from: "reviews___NODE")
landing: [ContentfulLanding] @link(by: "id", from: "landing___NODE")
section_id: contentfulSectionReviewsSectionIdTextNode @link(by: "id", from: "section_id___NODE")
title: contentfulSectionReviewsTitleTextNode @link(by: "id", from: "title___NODE")
subtitle: contentfulSectionReviewsSubtitleTextNode @link(by: "id", from: "subtitle___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulSectionReviewsSys
node_locale: String
}
type ContentfulSectionReviewsReviews implements Node @derivedTypes @dontInfer {
avatar: ContentfulAsset @link(by: "id", from: "avatar___NODE")
section_reviews: [ContentfulSectionReviews] @link(by: "id", from: "section_reviews___NODE")
author: contentfulSectionReviewsReviewsAuthorTextNode @link(by: "id", from: "author___NODE")
content: contentfulSectionReviewsReviewsContentTextNode @link(by: "id", from: "content___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulSectionReviewsReviewsSys
node_locale: String
}
type contentfulSectionReviewsReviewsAuthorTextNode implements Node @dontInfer {
author: String
}
type contentfulSectionReviewsReviewsContentTextNode implements Node @dontInfer {
content: String
}
type ContentfulSectionReviewsReviewsSys @derivedTypes {
revision: Int
contentType: ContentfulSectionReviewsReviewsSysContentType
}
type ContentfulSectionReviewsReviewsSysContentType @derivedTypes {
sys: ContentfulSectionReviewsReviewsSysContentTypeSys
}
type ContentfulSectionReviewsReviewsSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type ContentfulLanding implements Node @derivedTypes @dontInfer {
slug: String
sections: [ContentfulSectionContactContentfulSectionContentContentfulSectionCtaContentfulSectionFaqContentfulSectionFeaturesContentfulSectionHeroContentfulSectionPostsContentfulSectionPricingContentfulSectionReviewsUnion] @link(by: "id", from: "sections___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulLandingSys
node_locale: String
title: contentfulLandingTitleTextNode @link(by: "id", from: "title___NODE")
}
union ContentfulSectionContactContentfulSectionContentContentfulSectionCtaContentfulSectionFaqContentfulSectionFeaturesContentfulSectionHeroContentfulSectionPostsContentfulSectionPricingContentfulSectionReviewsUnion = ContentfulSectionContact | ContentfulSectionContent | ContentfulSectionCta | ContentfulSectionFaq | ContentfulSectionFeatures | ContentfulSectionHero | ContentfulSectionPosts | ContentfulSectionPricing | ContentfulSectionReviews
type ContentfulLandingSys @derivedTypes {
revision: Int
contentType: ContentfulLandingSysContentType
}
type ContentfulLandingSysContentType @derivedTypes {
sys: ContentfulLandingSysContentTypeSys
}
type ContentfulLandingSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type contentfulLandingTitleTextNode implements Node @dontInfer {
title: String
}
type ContentfulSectionReviewsSys @derivedTypes {
revision: Int
contentType: ContentfulSectionReviewsSysContentType
}
type ContentfulSectionReviewsSysContentType @derivedTypes {
sys: ContentfulSectionReviewsSysContentTypeSys
}
type ContentfulSectionReviewsSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type contentfulSectionPricingPricingplansDetailsTextNode implements Node @dontInfer {
details: String
}
type contentfulSectionPricingPricingplansPriceTextNode implements Node @dontInfer {
price: String
}
type contentfulSectionPricingPricingplansTitleTextNode implements Node @dontInfer {
title: String
}
type ContentfulSectionPricingPricingplans implements Node @derivedTypes @dontInfer {
actions: [ContentfulAction] @link(by: "id", from: "actions___NODE")
section_pricing: [ContentfulSectionPricing] @link(by: "id", from: "section_pricing___NODE")
title: contentfulSectionPricingPricingplansTitleTextNode @link(by: "id", from: "title___NODE")
price: contentfulSectionPricingPricingplansPriceTextNode @link(by: "id", from: "price___NODE")
details: contentfulSectionPricingPricingplansDetailsTextNode @link(by: "id", from: "details___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulSectionPricingPricingplansSys
node_locale: String
highlight: Boolean
}
type ContentfulAction implements Node @derivedTypes @dontInfer {
primary: Boolean
new_window: Boolean
section_content: [ContentfulSectionContent] @link(by: "id", from: "section_content___NODE")
label: contentfulActionLabelTextNode @link(by: "id", from: "label___NODE")
url: contentfulActionUrlTextNode @link(by: "id", from: "url___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulActionSys
node_locale: String
config_header: [ContentfulConfigHeader] @link(by: "id", from: "config_header___NODE")
section_hero: [ContentfulSectionHero] @link(by: "id", from: "section_hero___NODE")
config_footer: [ContentfulConfigFooter] @link(by: "id", from: "config_footer___NODE")
section_cta: [ContentfulSectionCta] @link(by: "id", from: "section_cta___NODE")
section_features_featureslist: [ContentfulSectionFeaturesFeatureslist] @link(by: "id", from: "section_features_featureslist___NODE")
section_pricing_pricingplans: [ContentfulSectionPricingPricingplans] @link(by: "id", from: "section_pricing_pricingplans___NODE")
}
type ContentfulSectionContent implements Node @derivedTypes @dontInfer {
bg: String
landing: [ContentfulLanding] @link(by: "id", from: "landing___NODE")
section_id: contentfulSectionContentSectionIdTextNode @link(by: "id", from: "section_id___NODE")
title: contentfulSectionContentTitleTextNode @link(by: "id", from: "title___NODE")
content: contentfulSectionContentContentTextNode @link(by: "id", from: "content___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulSectionContentSys
node_locale: String
actions: [ContentfulAction] @link(by: "id", from: "actions___NODE")
image: ContentfulAsset @link(by: "id", from: "image___NODE")
}
type contentfulSectionContentSectionIdTextNode implements Node @dontInfer {
section_id: String
}
type contentfulSectionContentTitleTextNode implements Node @dontInfer {
title: String
}
type contentfulSectionContentContentTextNode implements Node @dontInfer {
content: String
}
type ContentfulSectionContentSys @derivedTypes {
revision: Int
contentType: ContentfulSectionContentSysContentType
}
type ContentfulSectionContentSysContentType @derivedTypes {
sys: ContentfulSectionContentSysContentTypeSys
}
type ContentfulSectionContentSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type contentfulActionLabelTextNode implements Node @dontInfer {
label: String
}
type contentfulActionUrlTextNode implements Node @dontInfer {
url: String
}
type ContentfulActionSys @derivedTypes {
revision: Int
contentType: ContentfulActionSysContentType
}
type ContentfulActionSysContentType @derivedTypes {
sys: ContentfulActionSysContentTypeSys
}
type ContentfulActionSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type ContentfulConfigHeader implements Node @derivedTypes @dontInfer {
has_nav: Boolean
logo_img: ContentfulAsset @link(by: "id", from: "logo_img___NODE")
nav_links: [ContentfulAction] @link(by: "id", from: "nav_links___NODE")
config: [ContentfulConfig] @link(by: "id", from: "config___NODE")
title: contentfulConfigHeaderTitleTextNode @link(by: "id", from: "title___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulConfigHeaderSys
node_locale: String
}
type ContentfulConfig implements Node @derivedTypes @dontInfer {
palette: String
alert: String
header: ContentfulConfigHeader @link(by: "id", from: "header___NODE")
footer: ContentfulConfigFooter @link(by: "id", from: "footer___NODE")
title: contentfulConfigTitleTextNode @link(by: "id", from: "title___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulConfigSys
node_locale: String
}
type ContentfulConfigFooter implements Node @derivedTypes @dontInfer {
has_nav: Boolean
has_social: Boolean
has_subscribe: Boolean
logo_img: ContentfulAsset @link(by: "id", from: "logo_img___NODE")
nav_links: [ContentfulAction] @link(by: "id", from: "nav_links___NODE")
social_links: [ContentfulAction] @link(by: "id", from: "social_links___NODE")
links: [ContentfulAction] @link(by: "id", from: "links___NODE")
config: [ContentfulConfig] @link(by: "id", from: "config___NODE")
tagline: contentfulConfigFooterTaglineTextNode @link(by: "id", from: "tagline___NODE")
nav_title: contentfulConfigFooterNavTitleTextNode @link(by: "id", from: "nav_title___NODE")
social_title: contentfulConfigFooterSocialTitleTextNode @link(by: "id", from: "social_title___NODE")
subscribe_title: contentfulConfigFooterSubscribeTitleTextNode @link(by: "id", from: "subscribe_title___NODE")
subscribe_content: contentfulConfigFooterSubscribeContentTextNode @link(by: "id", from: "subscribe_content___NODE")
content: contentfulConfigFooterContentTextNode @link(by: "id", from: "content___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulConfigFooterSys
node_locale: String
}
type contentfulConfigFooterTaglineTextNode implements Node @dontInfer {
tagline: String
}
type contentfulConfigFooterNavTitleTextNode implements Node @dontInfer {
nav_title: String
}
type contentfulConfigFooterSocialTitleTextNode implements Node @dontInfer {
social_title: String
}
type contentfulConfigFooterSubscribeTitleTextNode implements Node @dontInfer {
subscribe_title: String
}
type contentfulConfigFooterSubscribeContentTextNode implements Node @dontInfer {
subscribe_content: String
}
type contentfulConfigFooterContentTextNode implements Node @dontInfer {
content: String
}
type ContentfulConfigFooterSys @derivedTypes {
revision: Int
contentType: ContentfulConfigFooterSysContentType
}
type ContentfulConfigFooterSysContentType @derivedTypes {
sys: ContentfulConfigFooterSysContentTypeSys
}
type ContentfulConfigFooterSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type contentfulConfigTitleTextNode implements Node @dontInfer {
title: String
}
type ContentfulConfigSys @derivedTypes {
revision: Int
contentType: ContentfulConfigSysContentType
}
type ContentfulConfigSysContentType @derivedTypes {
sys: ContentfulConfigSysContentTypeSys
}
type ContentfulConfigSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type contentfulConfigHeaderTitleTextNode implements Node @dontInfer {
title: String
}
type ContentfulConfigHeaderSys @derivedTypes {
revision: Int
contentType: ContentfulConfigHeaderSysContentType
}
type ContentfulConfigHeaderSysContentType @derivedTypes {
sys: ContentfulConfigHeaderSysContentTypeSys
}
type ContentfulConfigHeaderSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type ContentfulSectionHero implements Node @derivedTypes @dontInfer {
image: ContentfulAsset @link(by: "id", from: "image___NODE")
actions: [ContentfulAction] @link(by: "id", from: "actions___NODE")
landing: [ContentfulLanding] @link(by: "id", from: "landing___NODE")
section_id: contentfulSectionHeroSectionIdTextNode @link(by: "id", from: "section_id___NODE")
title: contentfulSectionHeroTitleTextNode @link(by: "id", from: "title___NODE")
content: contentfulSectionHeroContentTextNode @link(by: "id", from: "content___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulSectionHeroSys
node_locale: String
}
type contentfulSectionHeroSectionIdTextNode implements Node @dontInfer {
section_id: String
}
type contentfulSectionHeroTitleTextNode implements Node @dontInfer {
title: String
}
type contentfulSectionHeroContentTextNode implements Node @dontInfer {
content: String
}
type ContentfulSectionHeroSys @derivedTypes {
revision: Int
contentType: ContentfulSectionHeroSysContentType
}
type ContentfulSectionHeroSysContentType @derivedTypes {
sys: ContentfulSectionHeroSysContentTypeSys
}
type ContentfulSectionHeroSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type ContentfulSectionCta implements Node @derivedTypes @dontInfer {
actions: [ContentfulAction] @link(by: "id", from: "actions___NODE")
landing: [ContentfulLanding] @link(by: "id", from: "landing___NODE")
section_id: contentfulSectionCtaSectionIdTextNode @link(by: "id", from: "section_id___NODE")
title: contentfulSectionCtaTitleTextNode @link(by: "id", from: "title___NODE")
subtitle: contentfulSectionCtaSubtitleTextNode @link(by: "id", from: "subtitle___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulSectionCtaSys
node_locale: String
}
type contentfulSectionCtaSectionIdTextNode implements Node @dontInfer {
section_id: String
}
type contentfulSectionCtaTitleTextNode implements Node @dontInfer {
title: String
}
type contentfulSectionCtaSubtitleTextNode implements Node @dontInfer {
subtitle: String
}
type ContentfulSectionCtaSys @derivedTypes {
revision: Int
contentType: ContentfulSectionCtaSysContentType
}
type ContentfulSectionCtaSysContentType @derivedTypes {
sys: ContentfulSectionCtaSysContentTypeSys
}
type ContentfulSectionCtaSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type ContentfulSectionFeaturesFeatureslist implements Node @derivedTypes @dontInfer {
image: ContentfulAsset @link(by: "id", from: "image___NODE")
actions: [ContentfulAction] @link(by: "id", from: "actions___NODE")
section_features: [ContentfulSectionFeatures] @link(by: "id", from: "section_features___NODE")
title: contentfulSectionFeaturesFeatureslistTitleTextNode @link(by: "id", from: "title___NODE")
content: contentfulSectionFeaturesFeatureslistContentTextNode @link(by: "id", from: "content___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulSectionFeaturesFeatureslistSys
node_locale: String
}
type ContentfulSectionFeatures implements Node @derivedTypes @dontInfer {
bg: String
featureslist: [ContentfulSectionFeaturesFeatureslist] @link(by: "id", from: "featureslist___NODE")
landing: [ContentfulLanding] @link(by: "id", from: "landing___NODE")
section_id: contentfulSectionFeaturesSectionIdTextNode @link(by: "id", from: "section_id___NODE")
title: contentfulSectionFeaturesTitleTextNode @link(by: "id", from: "title___NODE")
subtitle: contentfulSectionFeaturesSubtitleTextNode @link(by: "id", from: "subtitle___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulSectionFeaturesSys
node_locale: String
}
type contentfulSectionFeaturesSectionIdTextNode implements Node @dontInfer {
section_id: String
}
type contentfulSectionFeaturesTitleTextNode implements Node @dontInfer {
title: String
}
type contentfulSectionFeaturesSubtitleTextNode implements Node @dontInfer {
subtitle: String
}
type ContentfulSectionFeaturesSys @derivedTypes {
revision: Int
contentType: ContentfulSectionFeaturesSysContentType
}
type ContentfulSectionFeaturesSysContentType @derivedTypes {
sys: ContentfulSectionFeaturesSysContentTypeSys
}
type ContentfulSectionFeaturesSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type contentfulSectionFeaturesFeatureslistTitleTextNode implements Node @dontInfer {
title: String
}
type contentfulSectionFeaturesFeatureslistContentTextNode implements Node @dontInfer {
content: String
}
type ContentfulSectionFeaturesFeatureslistSys @derivedTypes {
revision: Int
contentType: ContentfulSectionFeaturesFeatureslistSysContentType
}
type ContentfulSectionFeaturesFeatureslistSysContentType @derivedTypes {
sys: ContentfulSectionFeaturesFeatureslistSysContentTypeSys
}
type ContentfulSectionFeaturesFeatureslistSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type ContentfulSectionPricing implements Node @derivedTypes @dontInfer {
bg: String
pricingplans: [ContentfulSectionPricingPricingplans] @link(by: "id", from: "pricingplans___NODE")
landing: [ContentfulLanding] @link(by: "id", from: "landing___NODE")
section_id: contentfulSectionPricingSectionIdTextNode @link(by: "id", from: "section_id___NODE")
title: contentfulSectionPricingTitleTextNode @link(by: "id", from: "title___NODE")
subtitle: contentfulSectionPricingSubtitleTextNode @link(by: "id", from: "subtitle___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulSectionPricingSys
node_locale: String
}
type contentfulSectionPricingSectionIdTextNode implements Node @dontInfer {
section_id: String
}
type contentfulSectionPricingTitleTextNode implements Node @dontInfer {
title: String
}
type contentfulSectionPricingSubtitleTextNode implements Node @dontInfer {
subtitle: String
}
type ContentfulSectionPricingSys @derivedTypes {
revision: Int
contentType: ContentfulSectionPricingSysContentType
}
type ContentfulSectionPricingSysContentType @derivedTypes {
sys: ContentfulSectionPricingSysContentTypeSys
}
type ContentfulSectionPricingSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type ContentfulSectionPricingPricingplansSys @derivedTypes {
revision: Int
contentType: ContentfulSectionPricingPricingplansSysContentType
}
type ContentfulSectionPricingPricingplansSysContentType @derivedTypes {
sys: ContentfulSectionPricingPricingplansSysContentTypeSys
}
type ContentfulSectionPricingPricingplansSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type contentfulSectionPostsSubtitleTextNode implements Node @dontInfer {
subtitle: String
}
type contentfulSectionPostsTitleTextNode implements Node @dontInfer {
title: String
}
type contentfulSectionPostsSectionIdTextNode implements Node @dontInfer {
section_id: String
}
type ContentfulSectionPosts implements Node @derivedTypes @dontInfer {
bg: String
landing: [ContentfulLanding] @link(by: "id", from: "landing___NODE")
section_id: contentfulSectionPostsSectionIdTextNode @link(by: "id", from: "section_id___NODE")
title: contentfulSectionPostsTitleTextNode @link(by: "id", from: "title___NODE")
subtitle: contentfulSectionPostsSubtitleTextNode @link(by: "id", from: "subtitle___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulSectionPostsSys
node_locale: String
}
type ContentfulSectionPostsSys @derivedTypes {
revision: Int
contentType: ContentfulSectionPostsSysContentType
}
type ContentfulSectionPostsSysContentType @derivedTypes {
sys: ContentfulSectionPostsSysContentTypeSys
}
type ContentfulSectionPostsSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type contentfulSectionFaqSubtitleTextNode implements Node @dontInfer {
subtitle: String
}
type contentfulSectionFaqTitleTextNode implements Node @dontInfer {
title: String
}
type contentfulSectionFaqSectionIdTextNode implements Node @dontInfer {
section_id: String
}
type ContentfulSectionFaq implements Node @derivedTypes @dontInfer {
bg: String
section_id: contentfulSectionFaqSectionIdTextNode @link(by: "id", from: "section_id___NODE")
title: contentfulSectionFaqTitleTextNode @link(by: "id", from: "title___NODE")
subtitle: contentfulSectionFaqSubtitleTextNode @link(by: "id", from: "subtitle___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulSectionFaqSys
node_locale: String
faqitems: [ContentfulSectionFaqFaqitems] @link(by: "id", from: "faqitems___NODE")
landing: [ContentfulLanding] @link(by: "id", from: "landing___NODE")
}
type ContentfulSectionFaqSys @derivedTypes {
revision: Int
contentType: ContentfulSectionFaqSysContentType
}
type ContentfulSectionFaqSysContentType @derivedTypes {
sys: ContentfulSectionFaqSysContentTypeSys
}
type ContentfulSectionFaqSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type ContentfulSectionFaqFaqitems implements Node @derivedTypes @dontInfer {
section_faq: [ContentfulSectionFaq] @link(by: "id", from: "section_faq___NODE")
question: contentfulSectionFaqFaqitemsQuestionTextNode @link(by: "id", from: "question___NODE")
answer: contentfulSectionFaqFaqitemsAnswerTextNode @link(by: "id", from: "answer___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulSectionFaqFaqitemsSys
node_locale: String
}
type contentfulSectionFaqFaqitemsQuestionTextNode implements Node @dontInfer {
question: String
}
type contentfulSectionFaqFaqitemsAnswerTextNode implements Node @dontInfer {
answer: String
}
type ContentfulSectionFaqFaqitemsSys @derivedTypes {
revision: Int
contentType: ContentfulSectionFaqFaqitemsSysContentType
}
type ContentfulSectionFaqFaqitemsSysContentType @derivedTypes {
sys: ContentfulSectionFaqFaqitemsSysContentTypeSys
}
type ContentfulSectionFaqFaqitemsSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type contentfulPostContentTextNode implements Node @dontInfer {
content: String
}
type contentfulPostExcerptTextNode implements Node @dontInfer {
excerpt: String
}
type contentfulPostSubtitleTextNode implements Node @dontInfer {
subtitle: String
}
type contentfulPostTitleTextNode implements Node @dontInfer {
title: String
}
type ContentfulPost implements Node @derivedTypes @dontInfer {
slug: String
date: Date @dateformat
thumb_img_path: ContentfulAsset @link(by: "id", from: "thumb_img_path___NODE")
img_path: ContentfulAsset @link(by: "id", from: "img_path___NODE")
title: contentfulPostTitleTextNode @link(by: "id", from: "title___NODE")
subtitle: contentfulPostSubtitleTextNode @link(by: "id", from: "subtitle___NODE")
excerpt: contentfulPostExcerptTextNode @link(by: "id", from: "excerpt___NODE")
content: contentfulPostContentTextNode @link(by: "id", from: "content___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulPostSys
node_locale: String
}
type ContentfulPostSys @derivedTypes {
revision: Int
contentType: ContentfulPostSysContentType
}
type ContentfulPostSysContentType @derivedTypes {
sys: ContentfulPostSysContentTypeSys
}
type ContentfulPostSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type contentfulSectionContactContentTextNode implements Node @dontInfer {
content: String
}
type contentfulSectionContactSubtitleTextNode implements Node @dontInfer {
subtitle: String
}
type contentfulSectionContactTitleTextNode implements Node @dontInfer {
title: String
}
type contentfulSectionContactSectionIdTextNode implements Node @dontInfer {
section_id: String
}
type ContentfulSectionContact implements Node @derivedTypes @dontInfer {
bg: String
section_id: contentfulSectionContactSectionIdTextNode @link(by: "id", from: "section_id___NODE")
title: contentfulSectionContactTitleTextNode @link(by: "id", from: "title___NODE")
subtitle: contentfulSectionContactSubtitleTextNode @link(by: "id", from: "subtitle___NODE")
content: contentfulSectionContactContentTextNode @link(by: "id", from: "content___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulSectionContactSys
node_locale: String
landing: [ContentfulLanding] @link(by: "id", from: "landing___NODE")
}
type ContentfulSectionContactSys @derivedTypes {
contentType: ContentfulSectionContactSysContentType
revision: Int
}
type ContentfulSectionContactSysContentType @derivedTypes {
sys: ContentfulSectionContactSysContentTypeSys
}
type ContentfulSectionContactSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type contentfulPageContentTextNode implements Node @dontInfer {
content: String
}
type contentfulPageSubtitleTextNode implements Node @dontInfer {
subtitle: String
}
type contentfulPageTitleTextNode implements Node @dontInfer {
title: String
}
type ContentfulPage implements Node @derivedTypes @dontInfer {
slug: String
title: contentfulPageTitleTextNode @link(by: "id", from: "title___NODE")
subtitle: contentfulPageSubtitleTextNode @link(by: "id", from: "subtitle___NODE")
content: contentfulPageContentTextNode @link(by: "id", from: "content___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulPageSys
node_locale: String
img_path: ContentfulAsset @link(by: "id", from: "img_path___NODE")
}
type ContentfulPageSys @derivedTypes {
revision: Int
contentType: ContentfulPageSysContentType
}
type ContentfulPageSysContentType @derivedTypes {
sys: ContentfulPageSysContentTypeSys
}
type ContentfulPageSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type contentfulBlogTitleTextNode implements Node @dontInfer {
title: String
}
type ContentfulBlog implements Node @derivedTypes @dontInfer {
slug: String
title: contentfulBlogTitleTextNode @link(by: "id", from: "title___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulBlogSys
node_locale: String
}
type ContentfulBlogSys @derivedTypes {
revision: Int
contentType: ContentfulBlogSysContentType
}
type ContentfulBlogSysContentType @derivedTypes {
sys: ContentfulBlogSysContentTypeSys
}
type ContentfulBlogSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type ContentfulContentType implements Node @dontInfer {
name: String
displayField: String
description: String
}