-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgraphql-env.d.ts
110 lines (107 loc) · 64.7 KB
/
graphql-env.d.ts
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
/* eslint-disable */
/* prettier-ignore */
/** An IntrospectionQuery representation of your schema.
*
* @remarks
* This is an introspection of your schema saved as a file by GraphQLSP.
* It will automatically be used by `gql.tada` to infer the types of your GraphQL documents.
* If you need to reuse this data or update your `scalars`, update `tadaOutputLocation` to
* instead save to a .ts instead of a .d.ts file.
*/
export type introspection = {
name: never;
query: 'Query';
mutation: never;
subscription: never;
types: {
'Asset': { kind: 'OBJECT'; name: 'Asset'; fields: { 'contentType': { name: 'contentType'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'fileName': { name: 'fileName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'AssetLinkingCollections'; ofType: null; } }; 'size': { name: 'size'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'title': { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'url': { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'width': { name: 'width'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; };
'AssetCollection': { kind: 'OBJECT'; name: 'AssetCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; };
'AssetFilter': { kind: 'INPUT_OBJECT'; name: 'AssetFilter'; isOneOf: false; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'title_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'title_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'title_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'description_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'description_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'url_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'url_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'url_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'url_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'url_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'url_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'size_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'size'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'size_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'size_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'size_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'size_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'size_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'size_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'size_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'contentType_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'contentType'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'contentType_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'contentType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'contentType_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'contentType_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'contentType_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'fileName_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'fileName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'fileName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'fileName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'fileName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'fileName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'fileName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'width_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'width'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'width_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'width_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'width_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'width_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'width_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'width_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'width_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'height_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'height_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'height_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'height_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'height_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'height_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'height_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'height_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AssetFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AssetFilter'; ofType: null; }; }; defaultValue: null }]; };
'AssetLinkingCollections': { kind: 'OBJECT'; name: 'AssetLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'homePageCollection': { name: 'homePageCollection'; type: { kind: 'OBJECT'; name: 'HomePageCollection'; ofType: null; } }; 'mediaCollection': { name: 'mediaCollection'; type: { kind: 'OBJECT'; name: 'MediaCollection'; ofType: null; } }; 'projectCollection': { name: 'projectCollection'; type: { kind: 'OBJECT'; name: 'ProjectCollection'; ofType: null; } }; }; };
'AssetOrder': { name: 'AssetOrder'; enumValues: 'url_ASC' | 'url_DESC' | 'size_ASC' | 'size_DESC' | 'contentType_ASC' | 'contentType_DESC' | 'fileName_ASC' | 'fileName_DESC' | 'width_ASC' | 'width_DESC' | 'height_ASC' | 'height_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; };
'Boolean': unknown;
'ContentfulMetadata': { kind: 'OBJECT'; name: 'ContentfulMetadata'; fields: { 'tags': { name: 'tags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulTag'; ofType: null; }; }; } }; }; };
'ContentfulMetadataFilter': { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; isOneOf: false; inputFields: [{ name: 'tags_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'tags'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataTagsFilter'; ofType: null; }; defaultValue: null }]; };
'ContentfulMetadataTagsFilter': { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataTagsFilter'; isOneOf: false; inputFields: [{ name: 'id_contains_all'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'id_contains_some'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'id_contains_none'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; };
'ContentfulTag': { kind: 'OBJECT'; name: 'ContentfulTag'; fields: { 'id': { name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; };
'DateTime': unknown;
'Dimension': unknown;
'Entry': { kind: 'INTERFACE'; name: 'Entry'; fields: { 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; }; possibleTypes: 'HomePage' | 'Media' | 'Page' | 'Project' | 'Text'; };
'EntryCollection': { kind: 'OBJECT'; name: 'EntryCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; };
'EntryFilter': { kind: 'INPUT_OBJECT'; name: 'EntryFilter'; isOneOf: false; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'EntryFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'EntryFilter'; ofType: null; }; }; defaultValue: null }]; };
'EntryOrder': { name: 'EntryOrder'; enumValues: 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; };
'Float': unknown;
'HexColor': unknown;
'HomePage': { kind: 'OBJECT'; name: 'HomePage'; fields: { 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'intro': { name: 'intro'; type: { kind: 'OBJECT'; name: 'HomePageIntro'; ofType: null; } }; 'jobTitle': { name: 'jobTitle'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'HomePageLinkingCollections'; ofType: null; } }; 'profilePicture': { name: 'profilePicture'; type: { kind: 'OBJECT'; name: 'Asset'; ofType: null; } }; 'projectsCollection': { name: 'projectsCollection'; type: { kind: 'OBJECT'; name: 'HomePageProjectsCollection'; ofType: null; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'title': { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'video': { name: 'video'; type: { kind: 'OBJECT'; name: 'Asset'; ofType: null; } }; }; };
'HomePageCollection': { kind: 'OBJECT'; name: 'HomePageCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'HomePage'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; };
'HomePageFilter': { kind: 'INPUT_OBJECT'; name: 'HomePageFilter'; isOneOf: false; inputFields: [{ name: 'projects'; type: { kind: 'INPUT_OBJECT'; name: 'cfProjectNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'title_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'title_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'title_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'jobTitle_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'jobTitle'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'jobTitle_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'jobTitle_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'jobTitle_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'jobTitle_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'jobTitle_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'profilePicture_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'video_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'intro_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'intro_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'intro_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'projectsCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'HomePageFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'HomePageFilter'; ofType: null; }; }; defaultValue: null }]; };
'HomePageIntro': { kind: 'OBJECT'; name: 'HomePageIntro'; fields: { 'json': { name: 'json'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'JSON'; ofType: null; }; } }; 'links': { name: 'links'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'HomePageIntroLinks'; ofType: null; }; } }; }; };
'HomePageIntroAssets': { kind: 'OBJECT'; name: 'HomePageIntroAssets'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; };
'HomePageIntroEntries': { kind: 'OBJECT'; name: 'HomePageIntroEntries'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; };
'HomePageIntroLinks': { kind: 'OBJECT'; name: 'HomePageIntroLinks'; fields: { 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'HomePageIntroAssets'; ofType: null; }; } }; 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'HomePageIntroEntries'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'HomePageIntroResources'; ofType: null; }; } }; }; };
'HomePageIntroResources': { kind: 'OBJECT'; name: 'HomePageIntroResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceLink'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceLink'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceLink'; ofType: null; }; }; }; } }; }; };
'HomePageLinkingCollections': { kind: 'OBJECT'; name: 'HomePageLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; }; };
'HomePageOrder': { name: 'HomePageOrder'; enumValues: 'title_ASC' | 'title_DESC' | 'jobTitle_ASC' | 'jobTitle_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; };
'HomePageProjectsCollection': { kind: 'OBJECT'; name: 'HomePageProjectsCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Project'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; };
'HomePageProjectsCollectionOrder': { name: 'HomePageProjectsCollectionOrder'; enumValues: 'title_ASC' | 'title_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; };
'ID': unknown;
'ImageFormat': { name: 'ImageFormat'; enumValues: 'JPG' | 'JPG_PROGRESSIVE' | 'PNG' | 'PNG8' | 'WEBP' | 'AVIF'; };
'ImageResizeFocus': { name: 'ImageResizeFocus'; enumValues: 'CENTER' | 'TOP' | 'TOP_RIGHT' | 'RIGHT' | 'BOTTOM_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'LEFT' | 'TOP_LEFT' | 'FACE' | 'FACES'; };
'ImageResizeStrategy': { name: 'ImageResizeStrategy'; enumValues: 'FIT' | 'PAD' | 'FILL' | 'SCALE' | 'CROP' | 'THUMB'; };
'ImageTransformOptions': { kind: 'INPUT_OBJECT'; name: 'ImageTransformOptions'; isOneOf: false; inputFields: [{ name: 'width'; type: { kind: 'SCALAR'; name: 'Dimension'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'Dimension'; ofType: null; }; defaultValue: null }, { name: 'quality'; type: { kind: 'SCALAR'; name: 'Quality'; ofType: null; }; defaultValue: null }, { name: 'cornerRadius'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'resizeStrategy'; type: { kind: 'ENUM'; name: 'ImageResizeStrategy'; ofType: null; }; defaultValue: null }, { name: 'resizeFocus'; type: { kind: 'ENUM'; name: 'ImageResizeFocus'; ofType: null; }; defaultValue: null }, { name: 'backgroundColor'; type: { kind: 'SCALAR'; name: 'HexColor'; ofType: null; }; defaultValue: null }, { name: 'format'; type: { kind: 'ENUM'; name: 'ImageFormat'; ofType: null; }; defaultValue: null }]; };
'Int': unknown;
'JSON': unknown;
'Media': { kind: 'OBJECT'; name: 'Media'; fields: { 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'imagesCollection': { name: 'imagesCollection'; type: { kind: 'OBJECT'; name: 'AssetCollection'; ofType: null; } }; 'layout': { name: 'layout'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'MediaLinkingCollections'; ofType: null; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'title': { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; };
'MediaCollection': { kind: 'OBJECT'; name: 'MediaCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Media'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; };
'MediaFilter': { kind: 'INPUT_OBJECT'; name: 'MediaFilter'; isOneOf: false; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'title_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'title_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'title_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'imagesCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'layout_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'layout'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'layout_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'layout_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'layout_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'layout_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'layout_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MediaFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MediaFilter'; ofType: null; }; }; defaultValue: null }]; };
'MediaLinkingCollections': { kind: 'OBJECT'; name: 'MediaLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'projectCollection': { name: 'projectCollection'; type: { kind: 'OBJECT'; name: 'ProjectCollection'; ofType: null; } }; }; };
'MediaLinkingCollectionsProjectCollectionOrder': { name: 'MediaLinkingCollectionsProjectCollectionOrder'; enumValues: 'title_ASC' | 'title_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; };
'MediaOrder': { name: 'MediaOrder'; enumValues: 'title_ASC' | 'title_DESC' | 'layout_ASC' | 'layout_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; };
'Page': { kind: 'OBJECT'; name: 'Page'; fields: { 'body': { name: 'body'; type: { kind: 'OBJECT'; name: 'PageBody'; ofType: null; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'PageLinkingCollections'; ofType: null; } }; 'slug': { name: 'slug'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'title': { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; };
'PageBody': { kind: 'OBJECT'; name: 'PageBody'; fields: { 'json': { name: 'json'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'JSON'; ofType: null; }; } }; 'links': { name: 'links'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageBodyLinks'; ofType: null; }; } }; }; };
'PageBodyAssets': { kind: 'OBJECT'; name: 'PageBodyAssets'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; };
'PageBodyEntries': { kind: 'OBJECT'; name: 'PageBodyEntries'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; };
'PageBodyLinks': { kind: 'OBJECT'; name: 'PageBodyLinks'; fields: { 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageBodyAssets'; ofType: null; }; } }; 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageBodyEntries'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageBodyResources'; ofType: null; }; } }; }; };
'PageBodyResources': { kind: 'OBJECT'; name: 'PageBodyResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceLink'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceLink'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceLink'; ofType: null; }; }; }; } }; }; };
'PageCollection': { kind: 'OBJECT'; name: 'PageCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Page'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; };
'PageFilter': { kind: 'INPUT_OBJECT'; name: 'PageFilter'; isOneOf: false; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'title_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'title_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'title_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'slug'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'slug_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'slug_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'description_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'description_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'body_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'body_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'body_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PageFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PageFilter'; ofType: null; }; }; defaultValue: null }]; };
'PageLinkingCollections': { kind: 'OBJECT'; name: 'PageLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; }; };
'PageOrder': { name: 'PageOrder'; enumValues: 'title_ASC' | 'title_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; };
'Project': { kind: 'OBJECT'; name: 'Project'; fields: { 'blocksCollection': { name: 'blocksCollection'; type: { kind: 'OBJECT'; name: 'ProjectBlocksCollection'; ofType: null; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'ProjectLinkingCollections'; ofType: null; } }; 'slug': { name: 'slug'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'thumbnail': { name: 'thumbnail'; type: { kind: 'OBJECT'; name: 'Asset'; ofType: null; } }; 'title': { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; };
'ProjectBlocksCollection': { kind: 'OBJECT'; name: 'ProjectBlocksCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'UNION'; name: 'ProjectBlocksItem'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; };
'ProjectBlocksFilter': { kind: 'INPUT_OBJECT'; name: 'ProjectBlocksFilter'; isOneOf: false; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'title_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'title_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'title_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ProjectBlocksFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ProjectBlocksFilter'; ofType: null; }; }; defaultValue: null }]; };
'ProjectBlocksItem': { kind: 'UNION'; name: 'ProjectBlocksItem'; fields: {}; possibleTypes: 'Media' | 'Text'; };
'ProjectCollection': { kind: 'OBJECT'; name: 'ProjectCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Project'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; };
'ProjectFilter': { kind: 'INPUT_OBJECT'; name: 'ProjectFilter'; isOneOf: false; inputFields: [{ name: 'blocks'; type: { kind: 'INPUT_OBJECT'; name: 'cfblocksMultiTypeNestedFilter'; ofType: null; }; defaultValue: null }, { name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'title_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'title_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'title_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'slug'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'slug_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'slug_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'description_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'description_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'thumbnail_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'blocksCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ProjectFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ProjectFilter'; ofType: null; }; }; defaultValue: null }]; };
'ProjectLinkingCollections': { kind: 'OBJECT'; name: 'ProjectLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'homePageCollection': { name: 'homePageCollection'; type: { kind: 'OBJECT'; name: 'HomePageCollection'; ofType: null; } }; }; };
'ProjectLinkingCollectionsHomePageCollectionOrder': { name: 'ProjectLinkingCollectionsHomePageCollectionOrder'; enumValues: 'title_ASC' | 'title_DESC' | 'jobTitle_ASC' | 'jobTitle_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; };
'ProjectOrder': { name: 'ProjectOrder'; enumValues: 'title_ASC' | 'title_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; };
'Quality': unknown;
'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_node': { name: '_node'; type: { kind: 'INTERFACE'; name: '_Node'; ofType: null; } }; 'asset': { name: 'asset'; type: { kind: 'OBJECT'; name: 'Asset'; ofType: null; } }; 'assetCollection': { name: 'assetCollection'; type: { kind: 'OBJECT'; name: 'AssetCollection'; ofType: null; } }; 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'homePage': { name: 'homePage'; type: { kind: 'OBJECT'; name: 'HomePage'; ofType: null; } }; 'homePageCollection': { name: 'homePageCollection'; type: { kind: 'OBJECT'; name: 'HomePageCollection'; ofType: null; } }; 'media': { name: 'media'; type: { kind: 'OBJECT'; name: 'Media'; ofType: null; } }; 'mediaCollection': { name: 'mediaCollection'; type: { kind: 'OBJECT'; name: 'MediaCollection'; ofType: null; } }; 'page': { name: 'page'; type: { kind: 'OBJECT'; name: 'Page'; ofType: null; } }; 'pageCollection': { name: 'pageCollection'; type: { kind: 'OBJECT'; name: 'PageCollection'; ofType: null; } }; 'project': { name: 'project'; type: { kind: 'OBJECT'; name: 'Project'; ofType: null; } }; 'projectCollection': { name: 'projectCollection'; type: { kind: 'OBJECT'; name: 'ProjectCollection'; ofType: null; } }; 'text': { name: 'text'; type: { kind: 'OBJECT'; name: 'Text'; ofType: null; } }; 'textCollection': { name: 'textCollection'; type: { kind: 'OBJECT'; name: 'TextCollection'; ofType: null; } }; }; };
'ResourceLink': { kind: 'OBJECT'; name: 'ResourceLink'; fields: { 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceSys'; ofType: null; }; } }; }; };
'ResourceSys': { kind: 'OBJECT'; name: 'ResourceSys'; fields: { 'linkType': { name: 'linkType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'urn': { name: 'urn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
'String': unknown;
'Sys': { kind: 'OBJECT'; name: 'Sys'; fields: { 'environmentId': { name: 'environmentId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'firstPublishedAt': { name: 'firstPublishedAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'publishedAt': { name: 'publishedAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'publishedVersion': { name: 'publishedVersion'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'spaceId': { name: 'spaceId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
'SysFilter': { kind: 'INPUT_OBJECT'; name: 'SysFilter'; isOneOf: false; inputFields: [{ name: 'id_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'publishedAt_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'publishedAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'publishedAt_not'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'publishedAt_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; }; defaultValue: null }, { name: 'publishedAt_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; }; defaultValue: null }, { name: 'publishedAt_gt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'publishedAt_gte'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'publishedAt_lt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'publishedAt_lte'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'firstPublishedAt_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'firstPublishedAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'firstPublishedAt_not'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'firstPublishedAt_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; }; defaultValue: null }, { name: 'firstPublishedAt_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; }; defaultValue: null }, { name: 'firstPublishedAt_gt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'firstPublishedAt_gte'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'firstPublishedAt_lt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'firstPublishedAt_lte'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'publishedVersion_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'publishedVersion'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'publishedVersion_not'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'publishedVersion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }, { name: 'publishedVersion_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }, { name: 'publishedVersion_gt'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'publishedVersion_gte'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'publishedVersion_lt'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'publishedVersion_lte'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }]; };
'Text': { kind: 'OBJECT'; name: 'Text'; fields: { 'body': { name: 'body'; type: { kind: 'OBJECT'; name: 'TextBody'; ofType: null; } }; 'contentfulMetadata': { name: 'contentfulMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ContentfulMetadata'; ofType: null; }; } }; 'link': { name: 'link'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'linkedFrom': { name: 'linkedFrom'; type: { kind: 'OBJECT'; name: 'TextLinkingCollections'; ofType: null; } }; 'subtitle': { name: 'subtitle'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'sys': { name: 'sys'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Sys'; ofType: null; }; } }; 'title': { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; };
'TextBody': { kind: 'OBJECT'; name: 'TextBody'; fields: { 'json': { name: 'json'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'JSON'; ofType: null; }; } }; 'links': { name: 'links'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TextBodyLinks'; ofType: null; }; } }; }; };
'TextBodyAssets': { kind: 'OBJECT'; name: 'TextBodyAssets'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Asset'; ofType: null; }; }; } }; }; };
'TextBodyEntries': { kind: 'OBJECT'; name: 'TextBodyEntries'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'INTERFACE'; name: 'Entry'; ofType: null; }; }; } }; }; };
'TextBodyLinks': { kind: 'OBJECT'; name: 'TextBodyLinks'; fields: { 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TextBodyAssets'; ofType: null; }; } }; 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TextBodyEntries'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TextBodyResources'; ofType: null; }; } }; }; };
'TextBodyResources': { kind: 'OBJECT'; name: 'TextBodyResources'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceLink'; ofType: null; }; }; }; } }; 'hyperlink': { name: 'hyperlink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceLink'; ofType: null; }; }; }; } }; 'inline': { name: 'inline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResourceLink'; ofType: null; }; }; }; } }; }; };
'TextCollection': { kind: 'OBJECT'; name: 'TextCollection'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'OBJECT'; name: 'Text'; ofType: null; }; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'skip': { name: 'skip'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; };
'TextFilter': { kind: 'INPUT_OBJECT'; name: 'TextFilter'; isOneOf: false; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'title_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'title_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'title_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subtitle_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'subtitle'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subtitle_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subtitle_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'subtitle_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'subtitle_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'subtitle_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'body_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'body_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'body_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'link_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'link'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'link_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'link_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'link_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'link_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'link_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TextFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TextFilter'; ofType: null; }; }; defaultValue: null }]; };
'TextLinkingCollections': { kind: 'OBJECT'; name: 'TextLinkingCollections'; fields: { 'entryCollection': { name: 'entryCollection'; type: { kind: 'OBJECT'; name: 'EntryCollection'; ofType: null; } }; 'projectCollection': { name: 'projectCollection'; type: { kind: 'OBJECT'; name: 'ProjectCollection'; ofType: null; } }; }; };
'TextLinkingCollectionsProjectCollectionOrder': { name: 'TextLinkingCollectionsProjectCollectionOrder'; enumValues: 'title_ASC' | 'title_DESC' | 'slug_ASC' | 'slug_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; };
'TextOrder': { name: 'TextOrder'; enumValues: 'title_ASC' | 'title_DESC' | 'subtitle_ASC' | 'subtitle_DESC' | 'link_ASC' | 'link_DESC' | 'sys_id_ASC' | 'sys_id_DESC' | 'sys_publishedAt_ASC' | 'sys_publishedAt_DESC' | 'sys_firstPublishedAt_ASC' | 'sys_firstPublishedAt_DESC' | 'sys_publishedVersion_ASC' | 'sys_publishedVersion_DESC'; };
'_Node': { kind: 'INTERFACE'; name: '_Node'; fields: { '_id': { name: '_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; }; possibleTypes: never; };
'cfProjectNestedFilter': { kind: 'INPUT_OBJECT'; name: 'cfProjectNestedFilter'; isOneOf: false; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'title_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'title_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'title_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'slug'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'slug_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'slug_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'slug_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'description_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'description_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'thumbnail_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'blocksCollection_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfProjectNestedFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfProjectNestedFilter'; ofType: null; }; }; defaultValue: null }]; };
'cfblocksMultiTypeNestedFilter': { kind: 'INPUT_OBJECT'; name: 'cfblocksMultiTypeNestedFilter'; isOneOf: false; inputFields: [{ name: 'sys'; type: { kind: 'INPUT_OBJECT'; name: 'SysFilter'; ofType: null; }; defaultValue: null }, { name: 'contentfulMetadata'; type: { kind: 'INPUT_OBJECT'; name: 'ContentfulMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'title_exists'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'title_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'title_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'title_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfblocksMultiTypeNestedFilter'; ofType: null; }; }; defaultValue: null }, { name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'cfblocksMultiTypeNestedFilter'; ofType: null; }; }; defaultValue: null }]; };
};
};
import * as gqlTada from 'gql.tada';
declare module 'gql.tada' {
interface setupSchema {
introspection: introspection
}
}