-
Notifications
You must be signed in to change notification settings - Fork 1
/
schema.gql
1489 lines (1303 loc) · 40 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
988
989
990
991
992
993
994
995
996
997
998
999
1000
### Type definitions saved at 2020-12-30T08:26:59.313Z ###
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
pathPrefix: String
polyfill: Boolean
}
type SiteSiteMetadata {
title: String
description: String
}
type SitePage implements Node @dontInfer {
path: String!
component: String!
internalComponentName: String!
componentChunkName: String!
matchPath: 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: [], many: false) @derivedTypes @dontInfer {
frontmatter: MarkdownRemarkFrontmatter
excerpt: String
rawMarkdownBody: String
}
type MarkdownRemarkFrontmatter {
title: String
}
enum ImageFormat {
NO_CHANGE
JPG
PNG
WEBP
}
enum ImageFit {
COVER
CONTAIN
FILL
INSIDE
OUTSIDE
}
enum ImageCropFocus {
CENTER
NORTH
NORTHEAST
EAST
SOUTHEAST
SOUTH
SOUTHWEST
WEST
NORTHWEST
ENTROPY
ATTENTION
}
input DuotoneGradient {
highlight: String!
shadow: String!
opacity: Int
}
enum PotraceTurnPolicy {
TURNPOLICY_BLACK
TURNPOLICY_WHITE
TURNPOLICY_LEFT
TURNPOLICY_RIGHT
TURNPOLICY_MINORITY
TURNPOLICY_MAJORITY
}
input Potrace {
turnPolicy: PotraceTurnPolicy
turdSize: Float
alphaMax: Float
optCurve: Boolean
optTolerance: Float
threshold: Int
blackOnWhite: Boolean
color: String
background: String
}
type ImageSharp implements Node @childOf(types: ["File"]) @dontInfer {
fixed(width: Int, height: Int, base64Width: Int, jpegProgressive: Boolean = true, pngCompressionSpeed: Int = 4, grayscale: Boolean = false, duotone: DuotoneGradient, traceSVG: Potrace, quality: Int, jpegQuality: Int, pngQuality: Int, webpQuality: Int, toFormat: ImageFormat = NO_CHANGE, toFormatBase64: ImageFormat = NO_CHANGE, cropFocus: ImageCropFocus = ATTENTION, fit: ImageFit = COVER, background: String = "rgba(0,0,0,1)", rotate: Int = 0, trim: Float = 0): ImageSharpFixed
resolutions(width: Int, height: Int, base64Width: Int, jpegProgressive: Boolean = true, pngCompressionSpeed: Int = 4, grayscale: Boolean = false, duotone: DuotoneGradient, traceSVG: Potrace, quality: Int, jpegQuality: Int, pngQuality: Int, webpQuality: Int, toFormat: ImageFormat = NO_CHANGE, toFormatBase64: ImageFormat = NO_CHANGE, cropFocus: ImageCropFocus = ATTENTION, fit: ImageFit = COVER, background: String = "rgba(0,0,0,1)", rotate: Int = 0, trim: Float = 0): ImageSharpResolutions @deprecated(reason: "Resolutions was deprecated in Gatsby v2. It's been renamed to \"fixed\" https://example.com/write-docs-and-fix-this-example-link")
fluid(
maxWidth: Int
maxHeight: Int
base64Width: Int
grayscale: Boolean = false
jpegProgressive: Boolean = true
pngCompressionSpeed: Int = 4
duotone: DuotoneGradient
traceSVG: Potrace
quality: Int
jpegQuality: Int
pngQuality: Int
webpQuality: Int
toFormat: ImageFormat = NO_CHANGE
toFormatBase64: ImageFormat = NO_CHANGE
cropFocus: ImageCropFocus = ATTENTION
fit: ImageFit = COVER
background: String = "rgba(0,0,0,1)"
rotate: Int = 0
trim: Float = 0
sizes: String = ""
"""
A list of image widths to be generated. Example: [ 200, 340, 520, 890 ]
"""
srcSetBreakpoints: [Int] = []
): ImageSharpFluid
sizes(
maxWidth: Int
maxHeight: Int
base64Width: Int
grayscale: Boolean = false
jpegProgressive: Boolean = true
pngCompressionSpeed: Int = 4
duotone: DuotoneGradient
traceSVG: Potrace
quality: Int
jpegQuality: Int
pngQuality: Int
webpQuality: Int
toFormat: ImageFormat = NO_CHANGE
toFormatBase64: ImageFormat = NO_CHANGE
cropFocus: ImageCropFocus = ATTENTION
fit: ImageFit = COVER
background: String = "rgba(0,0,0,1)"
rotate: Int = 0
trim: Float = 0
sizes: String = ""
"""
A list of image widths to be generated. Example: [ 200, 340, 520, 890 ]
"""
srcSetBreakpoints: [Int] = []
): ImageSharpSizes @deprecated(reason: "Sizes was deprecated in Gatsby v2. It's been renamed to \"fluid\" https://example.com/write-docs-and-fix-this-example-link")
original: ImageSharpOriginal
resize(width: Int, height: Int, quality: Int, jpegQuality: Int, pngQuality: Int, webpQuality: Int, jpegProgressive: Boolean = true, pngCompressionLevel: Int = 9, pngCompressionSpeed: Int = 4, grayscale: Boolean = false, duotone: DuotoneGradient, base64: Boolean = false, traceSVG: Potrace, toFormat: ImageFormat = NO_CHANGE, cropFocus: ImageCropFocus = ATTENTION, fit: ImageFit = COVER, background: String = "rgba(0,0,0,1)", rotate: Int = 0, trim: Float = 0): ImageSharpResize
}
type ImageSharpFixed {
base64: String
tracedSVG: String
aspectRatio: Float
width: Float!
height: Float!
src: String!
srcSet: String!
srcWebp: String
srcSetWebp: String
originalName: String
}
type ImageSharpResolutions {
base64: String
tracedSVG: String
aspectRatio: Float
width: Float!
height: Float!
src: String!
srcSet: String!
srcWebp: String
srcSetWebp: String
originalName: String
}
type ImageSharpFluid {
base64: String
tracedSVG: String
aspectRatio: Float!
src: String!
srcSet: String!
srcWebp: String
srcSetWebp: String
sizes: String!
originalImg: String
originalName: String
presentationWidth: Int!
presentationHeight: Int!
}
type ImageSharpSizes {
base64: String
tracedSVG: String
aspectRatio: Float!
src: String!
srcSet: String!
srcWebp: String
srcSetWebp: String
sizes: String!
originalImg: String
originalName: String
presentationWidth: Int!
presentationHeight: Int!
}
type ImageSharpOriginal {
width: Float
height: Float
src: String
}
type ImageSharpResize {
src: String
tracedSVG: String
width: Int
height: Int
aspectRatio: Float
originalName: String
}
type contentful404PageErrorDescriptionTextNode implements Node @derivedTypes @dontInfer {
errorDescription: String
sys: contentful404PageErrorDescriptionTextNodeSys
}
type contentful404PageErrorDescriptionTextNodeSys {
type: String
}
type Contentful404Page implements Node @derivedTypes @dontInfer {
errorTitle: String
errorImage: ContentfulAsset @link(by: "id", from: "errorImage___NODE")
errorDescription: contentful404PageErrorDescriptionTextNode @link(by: "id", from: "errorDescription___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: Contentful404PageSys
node_locale: String
}
type ContentfulAsset implements 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 Contentful404PageSys @derivedTypes {
type: String
revision: Int
contentType: Contentful404PageSysContentType
}
type Contentful404PageSysContentType @derivedTypes {
sys: Contentful404PageSysContentTypeSys
}
type Contentful404PageSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type contentfulAlumniPageDescriptionTextNode implements Node @derivedTypes @dontInfer {
description: String
sys: contentfulAlumniPageDescriptionTextNodeSys
}
type contentfulAlumniPageDescriptionTextNodeSys {
type: String
}
type contentfulNewsletterDescriptionTextNode implements Node @derivedTypes @dontInfer {
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 Contentful404PageSys @derivedTypes {
type: String
revision: Int
contentType: Contentful404PageSysContentType
}
type Contentful404PageSysContentType @derivedTypes {
sys: Contentful404PageSysContentTypeSys
}
type Contentful404PageSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type contentfulAlumniPageDescriptionTextNode implements Node @derivedTypes @dontInfer {
description: String
sys: contentfulAlumniPageDescriptionTextNodeSys
}
type contentfulAlumniPageDescriptionTextNodeSys {
type: String
}
type contentfulNewsletterDescriptionTextNode implements Node @derivedTypes @dontInfer {
description: String
sys: contentfulNewsletterDescriptionTextNodeSys
}
type contentfulNewsletterDescriptionTextNodeSys {
type: String
}
type contentfulTeamMemberBioTextNode implements Node @derivedTypes @dontInfer {
bio: String
sys: contentfulTeamMemberBioTextNodeSys
}
type contentfulTeamMemberBioTextNodeSys {
type: String
}
type contentfulInvolvedInvestorPageDescriptionTextNode implements Node @derivedTypes @dontInfer {
description: String
sys: contentfulInvolvedInvestorPageDescriptionTextNodeSys
}
type contentfulInvolvedInvestorPageDescriptionTextNodeSys {
type: String
}
type contentfulInvolvedStudentPageDescriptionTextNode implements Node @derivedTypes @dontInfer {
description: String
sys: contentfulInvolvedStudentPageDescriptionTextNodeSys
}
type contentfulInvolvedStudentPageDescriptionTextNodeSys {
type: String
}
type contentfulInvolvedVenturePageDescriptionTextNode implements Node @derivedTypes @dontInfer {
description: String
sys: contentfulInvolvedVenturePageDescriptionTextNodeSys
}
type contentfulInvolvedVenturePageDescriptionTextNodeSys {
type: String
}
type contentfulTeamPageShortDescriptionTextNode implements Node @derivedTypes @dontInfer {
shortDescription: String
sys: contentfulTeamPageShortDescriptionTextNodeSys
}
type contentfulTeamPageShortDescriptionTextNodeSys {
type: String
}
type contentfulVentureDescriptionTextNode implements Node @derivedTypes @dontInfer {
description: String
sys: contentfulVentureDescriptionTextNodeSys
}
type contentfulVentureDescriptionTextNodeSys {
type: String
}
type contentfulAdvisorBioTextNode implements Node @derivedTypes @dontInfer {
bio: String
sys: contentfulAdvisorBioTextNodeSys
}
type contentfulAdvisorBioTextNodeSys {
type: String
}
type contentfulInvolvedPageStudentBlockDescriptionTextNode implements Node @derivedTypes @dontInfer {
studentBlockDescription: String
sys: contentfulInvolvedPageStudentBlockDescriptionTextNodeSys
}
type contentfulInvolvedPageStudentBlockDescriptionTextNodeSys {
type: String
}
type contentfulInvolvedPageInvestorBlockDescriptionTextNode implements Node @derivedTypes @dontInfer {
investorBlockDescription: String
sys: contentfulInvolvedPageInvestorBlockDescriptionTextNodeSys
}
type contentfulInvolvedPageInvestorBlockDescriptionTextNodeSys {
type: String
}
type contentfulInvolvedPageVentureBlockDescriptionTextNode implements Node @derivedTypes @dontInfer {
ventureBlockDescription: String
sys: contentfulInvolvedPageVentureBlockDescriptionTextNodeSys
}
type contentfulInvolvedPageVentureBlockDescriptionTextNodeSys {
type: String
}
type contentfulEventDescriptionTextNode implements Node @derivedTypes @dontInfer {
description: String
sys: contentfulEventDescriptionTextNodeSys
}
type contentfulEventDescriptionTextNodeSys {
type: String
}
type ContentfulContactInformation implements Node @derivedTypes @dontInfer {
email: String
instagramLink: String
linkedInLink: String
mediumLink: String
contact_page: [ContentfulContactPage] @link(by: "id", from: "contact page___NODE") @proxy(from: "contact page___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulContactInformationSys
node_locale: String
}
type ContentfulContactPage implements Node @derivedTypes @dontInfer {
headline: String
tagline: String
emailHeader: String
emailDescription: String
linkedInHeader: String
linkedInDescription: String
newsletterHeader: String
newsletterDescription: String
socialMediaHeader: String
socialMediaDescription: String
faqHeader: String
featuredNewsletter: ContentfulNewsletter @link(by: "id", from: "featuredNewsletter___NODE")
contactInformationLinks: ContentfulContactInformation @link(by: "id", from: "contactInformationLinks___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulContactPageSys
node_locale: String
}
type ContentfulNewsletter implements Node @derivedTypes @dontInfer {
title: String
publicationDate: Date @dateformat
newsletterFile: ContentfulAsset @link(by: "id", from: "newsletterFile___NODE")
previewImage: ContentfulAsset @link(by: "id", from: "previewImage___NODE")
explore_page: [ContentfulExplorePage] @link(by: "id", from: "explore page___NODE") @proxy(from: "explore page___NODE")
contact_page: [ContentfulContactPage] @link(by: "id", from: "contact page___NODE") @proxy(from: "contact page___NODE")
description: contentfulNewsletterDescriptionTextNode @link(by: "id", from: "description___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulNewsletterSys
node_locale: String
}
type ContentfulExplorePage implements Node @derivedTypes @dontInfer {
headline: String
newsletterHeader: String
newsletterSubheader: String
pastNewslettersLink: String
venturesAndInvestorsHeader: String
venturesAndInvestorsSubheader: String
studentsHeader: String
studentsSubheader: String
noEventsMessage: String
blogButtonHeader: String
blogButtonLabel: String
featuredNewsletter: ContentfulNewsletter @link(by: "id", from: "featuredNewsletter___NODE")
upcomingEvents: [ContentfulEvent] @link(by: "id", from: "upcomingEvents___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulExplorePageSys
node_locale: String
}
type ContentfulEvent implements Node @derivedTypes @dontInfer {
title: String
date: Date @dateformat
startTime: String
endTime: String
location: String
hostName: String
registrationLink: String
photo: ContentfulAsset @link(by: "id", from: "photo___NODE")
home_page: [ContentfulHomePage] @link(by: "id", from: "home page___NODE") @proxy(from: "home page___NODE")
explore_page: [ContentfulExplorePage] @link(by: "id", from: "explore page___NODE") @proxy(from: "explore page___NODE")
description: contentfulEventDescriptionTextNode @link(by: "id", from: "description___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulEventSys
node_locale: String
}
type ContentfulHomePage implements Node @derivedTypes @dontInfer {
headline: String
tagline: String
missionStatementHeader: String
missionStatementSubheader: String
statisticsHeader: String
statisticsButtonLabel: String
eventHeader: String
testimonialsHeader: String
heroImage: ContentfulAsset @link(by: "id", from: "heroImage___NODE")
missionStatement: ContentfulResource @link(by: "id", from: "missionStatement___NODE")
stats: [ContentfulStatistic] @link(by: "id", from: "stats___NODE")
event: ContentfulEvent @link(by: "id", from: "event___NODE")
testimonials: [ContentfulTestimonial] @link(by: "id", from: "testimonials___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulHomePageSys
node_locale: String
}
type ContentfulResource implements Node @derivedTypes @dontInfer {
key: String
involved_investor_page: [ContentfulInvolvedInvestorPage] @link(by: "id", from: "involved investor page___NODE") @proxy(from: "involved investor page___NODE")
value: contentfulResourceValueTextNode @link(by: "id", from: "value___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulResourceSys
node_locale: String
involved_venture_page: [ContentfulInvolvedVenturePage] @link(by: "id", from: "involved venture page___NODE") @proxy(from: "involved venture page___NODE")
home_page: [ContentfulHomePage] @link(by: "id", from: "home page___NODE") @proxy(from: "home page___NODE")
footer: [ContentfulFooter] @link(by: "id", from: "footer___NODE")
resource_set: [ContentfulResourceSet] @link(by: "id", from: "resource set___NODE") @proxy(from: "resource set___NODE")
}
type ContentfulInvolvedInvestorPage implements Node @derivedTypes @dontInfer {
headline: String
benefitsHeader: String
processHeader: String
processShortDescription: String
step1Header: String
step1Description: String
step2Header: String
step2Description: String
step3Header: String
step3Description: String
applyButtonHeader: String
applyButtonLabel: String
pastVenturesHeader: String
finalCTAHeader: String
finalCTADescription: String
titleImage: ContentfulAsset @link(by: "id", from: "titleImage___NODE")
benefitsList: [ContentfulResource] @link(by: "id", from: "benefitsList___NODE")
ventureShowcase: [ContentfulVenture] @link(by: "id", from: "ventureShowcase___NODE")
description: contentfulInvolvedInvestorPageDescriptionTextNode @link(by: "id", from: "description___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulInvolvedInvestorPageSys
node_locale: String
}
type ContentfulVenture implements Node @derivedTypes @dontInfer {
name: String
shortTagline: String
year: Date @dateformat
website: String
logo: ContentfulAsset @link(by: "id", from: "logo___NODE")
portfolio_page: [ContentfulPortfolioPage] @link(by: "id", from: "portfolio page___NODE") @proxy(from: "portfolio page___NODE")
involved_venture_page: [ContentfulInvolvedVenturePage] @link(by: "id", from: "involved venture page___NODE") @proxy(from: "involved venture page___NODE")
involved_student_page: [ContentfulInvolvedStudentPage] @link(by: "id", from: "involved student page___NODE") @proxy(from: "involved student page___NODE")
involved_investor_page: [ContentfulInvolvedInvestorPage] @link(by: "id", from: "involved investor page___NODE") @proxy(from: "involved investor page___NODE")
description: contentfulVentureDescriptionTextNode @link(by: "id", from: "description___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulVentureSys
node_locale: String
}
type ContentfulPortfolioPage implements Node @derivedTypes @dontInfer {
headline: String
shortDescription: String
featuredSubheader: String
pastVenturesSubheader: String
featuredVentures: [ContentfulVenture] @link(by: "id", from: "featuredVentures___NODE")
pastVentures: [ContentfulVenture] @link(by: "id", from: "pastVentures___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulPortfolioPageSys
node_locale: String
}
type ContentfulPortfolioPageSys @derivedTypes {
type: String
revision: Int
contentType: ContentfulPortfolioPageSysContentType
}
type ContentfulPortfolioPageSysContentType @derivedTypes {
sys: ContentfulPortfolioPageSysContentTypeSys
}
type ContentfulPortfolioPageSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type ContentfulInvolvedVenturePage implements Node @derivedTypes @dontInfer {
headline: String
processHeader: String
processShortDescription: String
step1Header: String
step1Description: String
step2Header: String
step2Description: String
step3Header: String
step3Description: String
requirementsHeader: String
requirementsDescription: String
applyButtonHeader: String
applyButtonLabel: String
applyButtonLink: String
pastVenturesHeader: String
finalCTAHeader: String
finalCTADescription: String
titleImage: ContentfulAsset @link(by: "id", from: "titleImage___NODE")
requirementsList: [ContentfulResource] @link(by: "id", from: "requirementsList___NODE")
ventureShowcase: [ContentfulVenture] @link(by: "id", from: "ventureShowcase___NODE")
description: contentfulInvolvedVenturePageDescriptionTextNode @link(by: "id", from: "description___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulInvolvedVenturePageSys
node_locale: String
}
type ContentfulInvolvedVenturePageSys @derivedTypes {
type: String
revision: Int
contentType: ContentfulInvolvedVenturePageSysContentType
}
type ContentfulInvolvedVenturePageSysContentType @derivedTypes {
sys: ContentfulInvolvedVenturePageSysContentTypeSys
}
type ContentfulInvolvedVenturePageSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type ContentfulInvolvedStudentPage implements Node @derivedTypes @dontInfer {
headline: String
processHeader: String
processShortDescription: String
step1Header: String
step1Description: String
step2Header: String
step2Description: String
step3Header: String
step3Description: String
requirementsHeader: String
requirementsDescription: String
applyButtonHeader: String
applyButtonLabel: String
applyButtonLink: String
pastVenturesHeader: String
finalCTAHeader: String
finalCTADescription: String
titleImage: ContentfulAsset @link(by: "id", from: "titleImage___NODE")
ventureShowcase: [ContentfulVenture] @link(by: "id", from: "ventureShowcase___NODE")
description: contentfulInvolvedStudentPageDescriptionTextNode @link(by: "id", from: "description___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulInvolvedStudentPageSys
node_locale: String
}
type ContentfulInvolvedStudentPageSys @derivedTypes {
type: String
revision: Int
contentType: ContentfulInvolvedStudentPageSysContentType
}
type ContentfulInvolvedStudentPageSysContentType @derivedTypes {
sys: ContentfulInvolvedStudentPageSysContentTypeSys
}
type ContentfulInvolvedStudentPageSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type ContentfulVentureSys @derivedTypes {
type: String
revision: Int
contentType: ContentfulVentureSysContentType
}
type ContentfulVentureSysContentType @derivedTypes {
sys: ContentfulVentureSysContentTypeSys
}
type ContentfulVentureSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type ContentfulInvolvedInvestorPageSys @derivedTypes {
type: String
revision: Int
contentType: ContentfulInvolvedInvestorPageSysContentType
}
type ContentfulInvolvedInvestorPageSysContentType @derivedTypes {
sys: ContentfulInvolvedInvestorPageSysContentTypeSys
}
type ContentfulInvolvedInvestorPageSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type contentfulResourceValueTextNode implements Node @derivedTypes @dontInfer {
value: String
sys: contentfulResourceValueTextNodeSys
}
type contentfulResourceValueTextNodeSys {
type: String
}
type ContentfulResourceSys @derivedTypes {
type: String
revision: Int
contentType: ContentfulResourceSysContentType
}
type ContentfulResourceSysContentType @derivedTypes {
sys: ContentfulResourceSysContentTypeSys
}
type ContentfulResourceSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type ContentfulFooter implements Node @derivedTypes @dontInfer {
descriptionAboutHan: String
affiliationText: String
hanLogo: ContentfulAsset @link(by: "id", from: "hanLogo___NODE")
socialMediaReferences: [ContentfulResource] @link(by: "id", from: "socialMediaReferences___NODE")
emailAddress: ContentfulResource @link(by: "id", from: "emailAddress___NODE")
damoreMcKimLogo: ContentfulAsset @link(by: "id", from: "damoreMcKimLogo___NODE")
mosaicLogo: ContentfulAsset @link(by: "id", from: "mosaicLogo___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulFooterSys
node_locale: String
}
type ContentfulFooterSys @derivedTypes {
type: String
revision: Int
contentType: ContentfulFooterSysContentType
}
type ContentfulFooterSysContentType @derivedTypes {
sys: ContentfulFooterSysContentTypeSys
}
type ContentfulFooterSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type ContentfulResourceSet implements Node @derivedTypes @dontInfer {
name: String
resources: [ContentfulImageResourceContentfulResourceContentfulResourceSetUnion] @link(by: "id", from: "resources___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulResourceSetSys
node_locale: String
resource_set: [ContentfulResourceSet] @link(by: "id", from: "resource set___NODE") @proxy(from: "resource set___NODE")
}
union ContentfulImageResourceContentfulResourceContentfulResourceSetUnion = ContentfulImageResource | ContentfulResource | ContentfulResourceSet
type ContentfulResourceSetSys @derivedTypes {
type: String
revision: Int
contentType: ContentfulResourceSetSysContentType
}
type ContentfulResourceSetSysContentType @derivedTypes {
sys: ContentfulResourceSetSysContentTypeSys
}
type ContentfulResourceSetSysContentTypeSys {
type: String
linkType: String
id: String
contentful_id: String
}
type ContentfulStatistic implements Node @derivedTypes @dontInfer {
number: String
description: String
home_page: [ContentfulHomePage] @link(by: "id", from: "home page___NODE") @proxy(from: "home page___NODE")
spaceId: String
contentful_id: String
createdAt: Date @dateformat
updatedAt: Date @dateformat
sys: ContentfulStatisticSys
node_locale: String
}
type ContentfulStatisticSys @derivedTypes {
type: String