@platecms/delta-client 0.4.1 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -470,8 +470,10 @@ export type ContentValue = {
|
|
|
470
470
|
hasContentItem: Scalars['Boolean']['output'];
|
|
471
471
|
interpolatedSmartText?: Maybe<Scalars['CAST']['output']>;
|
|
472
472
|
isReusable: Scalars['Boolean']['output'];
|
|
473
|
+
linkedContentType?: Maybe<ContentType>;
|
|
473
474
|
linkedGridPlacement?: Maybe<GridPlacement>;
|
|
474
475
|
linkedPathPart?: Maybe<PathPart>;
|
|
476
|
+
linkedTag?: Maybe<Tag>;
|
|
475
477
|
next?: Maybe<ContentValue>;
|
|
476
478
|
organization?: Maybe<Organization>;
|
|
477
479
|
plainText?: Maybe<Scalars['String']['output']>;
|
|
@@ -500,12 +502,14 @@ export declare enum ContentValueTypeNames {
|
|
|
500
502
|
Asset = "ASSET",
|
|
501
503
|
Boolean = "BOOLEAN",
|
|
502
504
|
ContentItem = "CONTENT_ITEM",
|
|
505
|
+
ContentType = "CONTENT_TYPE",
|
|
503
506
|
Date = "DATE",
|
|
504
507
|
GridPlacement = "GRID_PLACEMENT",
|
|
505
508
|
Number = "NUMBER",
|
|
506
509
|
PathPart = "PATH_PART",
|
|
507
510
|
SmartText = "SMART_TEXT",
|
|
508
|
-
String = "STRING"
|
|
511
|
+
String = "STRING",
|
|
512
|
+
Tag = "TAG"
|
|
509
513
|
}
|
|
510
514
|
export type ContentValuesConnection = {
|
|
511
515
|
__typename?: 'ContentValuesConnection';
|
|
@@ -657,8 +661,10 @@ export type CreateContentTypeInput = {
|
|
|
657
661
|
export type CreateContentValueForContentItemInput = {
|
|
658
662
|
contentField: Scalars['PRN']['input'];
|
|
659
663
|
isReusable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
664
|
+
linkedContentType?: InputMaybe<Scalars['PRN']['input']>;
|
|
660
665
|
linkedGridPlacement?: InputMaybe<Scalars['PRN']['input']>;
|
|
661
666
|
linkedPathPart?: InputMaybe<Scalars['PRN']['input']>;
|
|
667
|
+
linkedTag?: InputMaybe<Scalars['PRN']['input']>;
|
|
662
668
|
primitiveValue?: InputMaybe<Scalars['PrimitiveValue']['input']>;
|
|
663
669
|
relatedAsset?: InputMaybe<Scalars['PRN']['input']>;
|
|
664
670
|
relatedContentItem?: InputMaybe<Scalars['PRN']['input']>;
|
|
@@ -668,8 +674,10 @@ export type CreateContentValueInput = {
|
|
|
668
674
|
contentField?: InputMaybe<Scalars['PRN']['input']>;
|
|
669
675
|
contentItem?: InputMaybe<Scalars['PRN']['input']>;
|
|
670
676
|
isReusable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
677
|
+
linkedContentType?: InputMaybe<Scalars['PRN']['input']>;
|
|
671
678
|
linkedGridPlacement?: InputMaybe<Scalars['PRN']['input']>;
|
|
672
679
|
linkedPathPart?: InputMaybe<Scalars['PRN']['input']>;
|
|
680
|
+
linkedTag?: InputMaybe<Scalars['PRN']['input']>;
|
|
673
681
|
next?: InputMaybe<Scalars['PRN']['input']>;
|
|
674
682
|
primitiveValue?: InputMaybe<Scalars['PrimitiveValue']['input']>;
|
|
675
683
|
relatedAsset?: InputMaybe<Scalars['PRN']['input']>;
|
|
@@ -1716,8 +1724,10 @@ export type RemoveContentValueResponse = {
|
|
|
1716
1724
|
hasContentItem: Scalars['Boolean']['output'];
|
|
1717
1725
|
interpolatedSmartText?: Maybe<Scalars['CAST']['output']>;
|
|
1718
1726
|
isReusable: Scalars['Boolean']['output'];
|
|
1727
|
+
linkedContentType?: Maybe<ContentType>;
|
|
1719
1728
|
linkedGridPlacement?: Maybe<GridPlacement>;
|
|
1720
1729
|
linkedPathPart?: Maybe<PathPart>;
|
|
1730
|
+
linkedTag?: Maybe<Tag>;
|
|
1721
1731
|
next?: Maybe<ContentValue>;
|
|
1722
1732
|
organization?: Maybe<Organization>;
|
|
1723
1733
|
plainText?: Maybe<Scalars['String']['output']>;
|
|
@@ -2016,8 +2026,10 @@ export type UpdateContentValueInput = {
|
|
|
2016
2026
|
contentField?: InputMaybe<Scalars['PRN']['input']>;
|
|
2017
2027
|
contentItem?: InputMaybe<Scalars['PRN']['input']>;
|
|
2018
2028
|
isReusable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2029
|
+
linkedContentType?: InputMaybe<Scalars['PRN']['input']>;
|
|
2019
2030
|
linkedGridPlacement?: InputMaybe<Scalars['PRN']['input']>;
|
|
2020
2031
|
linkedPathPart?: InputMaybe<Scalars['PRN']['input']>;
|
|
2032
|
+
linkedTag?: InputMaybe<Scalars['PRN']['input']>;
|
|
2021
2033
|
next?: InputMaybe<Scalars['PRN']['input']>;
|
|
2022
2034
|
primitiveValue?: InputMaybe<Scalars['PrimitiveValue']['input']>;
|
|
2023
2035
|
prn: Scalars['PRN']['input'];
|
|
@@ -2108,3886 +2120,6 @@ export type ValueTypeContentValidationRuleSettings = {
|
|
|
2108
2120
|
export type ValueTypeContentValidationRuleSettingsInput = {
|
|
2109
2121
|
allowedTypes: Array<ContentValueTypeNames>;
|
|
2110
2122
|
};
|
|
2111
|
-
export type ApiTokenQueryVariables = Exact<{
|
|
2112
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
2113
|
-
}>;
|
|
2114
|
-
export type ApiTokenQuery = {
|
|
2115
|
-
__typename?: 'Query';
|
|
2116
|
-
apiToken: Array<({
|
|
2117
|
-
__typename?: 'ApiToken';
|
|
2118
|
-
channel: ({
|
|
2119
|
-
__typename?: 'Channel';
|
|
2120
|
-
} & {
|
|
2121
|
-
' $fragmentRefs'?: {
|
|
2122
|
-
'ChannelFragmentFragment': ChannelFragmentFragment;
|
|
2123
|
-
};
|
|
2124
|
-
});
|
|
2125
|
-
} & {
|
|
2126
|
-
' $fragmentRefs'?: {
|
|
2127
|
-
'ApiTokenFragmentFragment': ApiTokenFragmentFragment;
|
|
2128
|
-
};
|
|
2129
|
-
})>;
|
|
2130
|
-
};
|
|
2131
|
-
export type ApiTokenFragmentFragment = {
|
|
2132
|
-
__typename?: 'ApiToken';
|
|
2133
|
-
prn: any;
|
|
2134
|
-
name: string;
|
|
2135
|
-
stage: Stage;
|
|
2136
|
-
createdAt: any;
|
|
2137
|
-
updatedAt: any;
|
|
2138
|
-
_id: any;
|
|
2139
|
-
} & {
|
|
2140
|
-
' $fragmentName'?: 'ApiTokenFragmentFragment';
|
|
2141
|
-
};
|
|
2142
|
-
export type ApiTokensQueryVariables = Exact<{
|
|
2143
|
-
orderBy?: InputMaybe<OrderOptionsInput>;
|
|
2144
|
-
}>;
|
|
2145
|
-
export type ApiTokensQuery = {
|
|
2146
|
-
__typename?: 'Query';
|
|
2147
|
-
apiTokens: Array<({
|
|
2148
|
-
__typename?: 'ApiToken';
|
|
2149
|
-
channel: ({
|
|
2150
|
-
__typename?: 'Channel';
|
|
2151
|
-
} & {
|
|
2152
|
-
' $fragmentRefs'?: {
|
|
2153
|
-
'ChannelFragmentFragment': ChannelFragmentFragment;
|
|
2154
|
-
};
|
|
2155
|
-
});
|
|
2156
|
-
} & {
|
|
2157
|
-
' $fragmentRefs'?: {
|
|
2158
|
-
'ApiTokenFragmentFragment': ApiTokenFragmentFragment;
|
|
2159
|
-
};
|
|
2160
|
-
})>;
|
|
2161
|
-
};
|
|
2162
|
-
export type CreateApiTokenMutationVariables = Exact<{
|
|
2163
|
-
input: Array<CreateApiTokenInput> | CreateApiTokenInput;
|
|
2164
|
-
}>;
|
|
2165
|
-
export type CreateApiTokenMutation = {
|
|
2166
|
-
__typename?: 'Mutation';
|
|
2167
|
-
createApiToken: Array<{
|
|
2168
|
-
__typename?: 'CreateApiTokenResponse';
|
|
2169
|
-
prn: any;
|
|
2170
|
-
name: string;
|
|
2171
|
-
stage: Stage;
|
|
2172
|
-
createdAt: any;
|
|
2173
|
-
updatedAt: any;
|
|
2174
|
-
token: string;
|
|
2175
|
-
_id: any;
|
|
2176
|
-
channel: ({
|
|
2177
|
-
__typename?: 'Channel';
|
|
2178
|
-
} & {
|
|
2179
|
-
' $fragmentRefs'?: {
|
|
2180
|
-
'ChannelFragmentFragment': ChannelFragmentFragment;
|
|
2181
|
-
};
|
|
2182
|
-
});
|
|
2183
|
-
}>;
|
|
2184
|
-
};
|
|
2185
|
-
export type RemoveApiTokenMutationVariables = Exact<{
|
|
2186
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
2187
|
-
}>;
|
|
2188
|
-
export type RemoveApiTokenMutation = {
|
|
2189
|
-
__typename?: 'Mutation';
|
|
2190
|
-
removeApiToken: Array<{
|
|
2191
|
-
__typename?: 'ApiToken';
|
|
2192
|
-
prn: any;
|
|
2193
|
-
}>;
|
|
2194
|
-
};
|
|
2195
|
-
export type UpdateApiTokenMutationVariables = Exact<{
|
|
2196
|
-
input: Array<UpdateApiTokenInput> | UpdateApiTokenInput;
|
|
2197
|
-
}>;
|
|
2198
|
-
export type UpdateApiTokenMutation = {
|
|
2199
|
-
__typename?: 'Mutation';
|
|
2200
|
-
updateApiToken: Array<({
|
|
2201
|
-
__typename?: 'ApiToken';
|
|
2202
|
-
} & {
|
|
2203
|
-
' $fragmentRefs'?: {
|
|
2204
|
-
'ApiTokenFragmentFragment': ApiTokenFragmentFragment;
|
|
2205
|
-
};
|
|
2206
|
-
})>;
|
|
2207
|
-
};
|
|
2208
|
-
export type AssetFragmentFragment = {
|
|
2209
|
-
__typename?: 'Asset';
|
|
2210
|
-
prn: any;
|
|
2211
|
-
fileName: string;
|
|
2212
|
-
fileSize: number;
|
|
2213
|
-
mimeType: string;
|
|
2214
|
-
url?: string | null;
|
|
2215
|
-
createdAt: any;
|
|
2216
|
-
updatedAt: any;
|
|
2217
|
-
_id: any;
|
|
2218
|
-
} & {
|
|
2219
|
-
' $fragmentName'?: 'AssetFragmentFragment';
|
|
2220
|
-
};
|
|
2221
|
-
export type ConfirmAssetUploadMutationVariables = Exact<{
|
|
2222
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
2223
|
-
}>;
|
|
2224
|
-
export type ConfirmAssetUploadMutation = {
|
|
2225
|
-
__typename?: 'Mutation';
|
|
2226
|
-
confirmAssetUpload: Array<{
|
|
2227
|
-
__typename?: 'Asset';
|
|
2228
|
-
createdAt: any;
|
|
2229
|
-
fileName: string;
|
|
2230
|
-
fileSize: number;
|
|
2231
|
-
mimeType: string;
|
|
2232
|
-
prn: any;
|
|
2233
|
-
updatedAt: any;
|
|
2234
|
-
url?: string | null;
|
|
2235
|
-
}>;
|
|
2236
|
-
};
|
|
2237
|
-
export type GenerateAssetUploadUrlMutationVariables = Exact<{
|
|
2238
|
-
input: Array<GenerateAssetUploadUrlInput> | GenerateAssetUploadUrlInput;
|
|
2239
|
-
}>;
|
|
2240
|
-
export type GenerateAssetUploadUrlMutation = {
|
|
2241
|
-
__typename?: 'Mutation';
|
|
2242
|
-
generateAssetUploadUrl: Array<{
|
|
2243
|
-
__typename?: 'GeneratedUploadUrl';
|
|
2244
|
-
prn: any;
|
|
2245
|
-
url: string;
|
|
2246
|
-
}>;
|
|
2247
|
-
};
|
|
2248
|
-
export type BlueprintFragmentFragment = {
|
|
2249
|
-
__typename?: 'Blueprint';
|
|
2250
|
-
prn: any;
|
|
2251
|
-
name: string;
|
|
2252
|
-
isFixed: boolean;
|
|
2253
|
-
createdAt: any;
|
|
2254
|
-
updatedAt: any;
|
|
2255
|
-
_id: any;
|
|
2256
|
-
definedBy: {
|
|
2257
|
-
__typename?: 'ExperienceComponent';
|
|
2258
|
-
prn: any;
|
|
2259
|
-
createdAt: any;
|
|
2260
|
-
updatedAt: any;
|
|
2261
|
-
grid?: ({
|
|
2262
|
-
__typename?: 'Grid';
|
|
2263
|
-
gridPlacements: Array<({
|
|
2264
|
-
__typename?: 'GridPlacement';
|
|
2265
|
-
experienceComponent: ({
|
|
2266
|
-
__typename?: 'ExperienceComponent';
|
|
2267
|
-
buildingBlock: ({
|
|
2268
|
-
__typename?: 'BuildingBlock';
|
|
2269
|
-
buildingBlockFields: Array<({
|
|
2270
|
-
__typename?: 'BuildingBlockField';
|
|
2271
|
-
} & {
|
|
2272
|
-
' $fragmentRefs'?: {
|
|
2273
|
-
'BuildingBlockFieldFragmentFragment': BuildingBlockFieldFragmentFragment;
|
|
2274
|
-
};
|
|
2275
|
-
})>;
|
|
2276
|
-
} & {
|
|
2277
|
-
' $fragmentRefs'?: {
|
|
2278
|
-
'BuildingBlockFragmentFragment': BuildingBlockFragmentFragment;
|
|
2279
|
-
};
|
|
2280
|
-
});
|
|
2281
|
-
buildingBlockFieldFulfillments: Array<({
|
|
2282
|
-
__typename?: 'BuildingBlockFieldFulfillment';
|
|
2283
|
-
buildingBlockField: ({
|
|
2284
|
-
__typename?: 'BuildingBlockField';
|
|
2285
|
-
} & {
|
|
2286
|
-
' $fragmentRefs'?: {
|
|
2287
|
-
'BuildingBlockFieldFragmentFragment': BuildingBlockFieldFragmentFragment;
|
|
2288
|
-
};
|
|
2289
|
-
});
|
|
2290
|
-
contentValue: ({
|
|
2291
|
-
__typename?: 'ContentValue';
|
|
2292
|
-
relatedAsset?: ({
|
|
2293
|
-
__typename?: 'Asset';
|
|
2294
|
-
} & {
|
|
2295
|
-
' $fragmentRefs'?: {
|
|
2296
|
-
'AssetFragmentFragment': AssetFragmentFragment;
|
|
2297
|
-
};
|
|
2298
|
-
}) | null;
|
|
2299
|
-
relatedContentItem?: ({
|
|
2300
|
-
__typename?: 'ContentItem';
|
|
2301
|
-
contentValues: Array<({
|
|
2302
|
-
__typename?: 'ContentValue';
|
|
2303
|
-
contentField?: ({
|
|
2304
|
-
__typename?: 'ContentField';
|
|
2305
|
-
} & {
|
|
2306
|
-
' $fragmentRefs'?: {
|
|
2307
|
-
'ContentFieldFragmentFragment': ContentFieldFragmentFragment;
|
|
2308
|
-
};
|
|
2309
|
-
}) | null;
|
|
2310
|
-
} & {
|
|
2311
|
-
' $fragmentRefs'?: {
|
|
2312
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
2313
|
-
};
|
|
2314
|
-
})>;
|
|
2315
|
-
} & {
|
|
2316
|
-
' $fragmentRefs'?: {
|
|
2317
|
-
'ContentItemFragmentFragment': ContentItemFragmentFragment;
|
|
2318
|
-
};
|
|
2319
|
-
}) | null;
|
|
2320
|
-
contentItem?: {
|
|
2321
|
-
__typename?: 'ContentItem';
|
|
2322
|
-
prn: any;
|
|
2323
|
-
} | null;
|
|
2324
|
-
} & {
|
|
2325
|
-
' $fragmentRefs'?: {
|
|
2326
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
2327
|
-
};
|
|
2328
|
-
});
|
|
2329
|
-
} & {
|
|
2330
|
-
' $fragmentRefs'?: {
|
|
2331
|
-
'BuildingBlockFieldFulfillmentFragmentFragment': BuildingBlockFieldFulfillmentFragmentFragment;
|
|
2332
|
-
};
|
|
2333
|
-
})>;
|
|
2334
|
-
} & {
|
|
2335
|
-
' $fragmentRefs'?: {
|
|
2336
|
-
'ExperienceComponentFragmentFragment': ExperienceComponentFragmentFragment;
|
|
2337
|
-
};
|
|
2338
|
-
});
|
|
2339
|
-
} & {
|
|
2340
|
-
' $fragmentRefs'?: {
|
|
2341
|
-
'GridPlacementFragmentFragment': GridPlacementFragmentFragment;
|
|
2342
|
-
};
|
|
2343
|
-
})>;
|
|
2344
|
-
} & {
|
|
2345
|
-
' $fragmentRefs'?: {
|
|
2346
|
-
'GridFragmentFragment': GridFragmentFragment;
|
|
2347
|
-
};
|
|
2348
|
-
}) | null;
|
|
2349
|
-
};
|
|
2350
|
-
} & {
|
|
2351
|
-
' $fragmentName'?: 'BlueprintFragmentFragment';
|
|
2352
|
-
};
|
|
2353
|
-
export type BlueprintsQueryVariables = Exact<{
|
|
2354
|
-
paginate: PaginationOptionsInput;
|
|
2355
|
-
orderBy?: InputMaybe<OrderOptionsInput>;
|
|
2356
|
-
where?: InputMaybe<Array<BlueprintsFilterInput> | BlueprintsFilterInput>;
|
|
2357
|
-
}>;
|
|
2358
|
-
export type BlueprintsQuery = {
|
|
2359
|
-
__typename?: 'Query';
|
|
2360
|
-
blueprints: {
|
|
2361
|
-
__typename?: 'BlueprintsConnection';
|
|
2362
|
-
totalCount: number;
|
|
2363
|
-
pageInfo: {
|
|
2364
|
-
__typename?: 'PageInfo';
|
|
2365
|
-
endCursor?: string | null;
|
|
2366
|
-
hasNextPage: boolean;
|
|
2367
|
-
hasPreviousPage: boolean;
|
|
2368
|
-
startCursor?: string | null;
|
|
2369
|
-
};
|
|
2370
|
-
edges: Array<{
|
|
2371
|
-
__typename?: 'BlueprintEdge';
|
|
2372
|
-
cursor: string;
|
|
2373
|
-
node: ({
|
|
2374
|
-
__typename?: 'Blueprint';
|
|
2375
|
-
channel: ({
|
|
2376
|
-
__typename?: 'Channel';
|
|
2377
|
-
defaultBlueprint?: {
|
|
2378
|
-
__typename?: 'Blueprint';
|
|
2379
|
-
prn: any;
|
|
2380
|
-
} | null;
|
|
2381
|
-
} & {
|
|
2382
|
-
' $fragmentRefs'?: {
|
|
2383
|
-
'ChannelFragmentFragment': ChannelFragmentFragment;
|
|
2384
|
-
};
|
|
2385
|
-
});
|
|
2386
|
-
} & {
|
|
2387
|
-
' $fragmentRefs'?: {
|
|
2388
|
-
'BlueprintFragmentFragment': BlueprintFragmentFragment;
|
|
2389
|
-
};
|
|
2390
|
-
});
|
|
2391
|
-
}>;
|
|
2392
|
-
};
|
|
2393
|
-
};
|
|
2394
|
-
export type CopyBlueprintMutationVariables = Exact<{
|
|
2395
|
-
input: Array<CopyBlueprintInput> | CopyBlueprintInput;
|
|
2396
|
-
}>;
|
|
2397
|
-
export type CopyBlueprintMutation = {
|
|
2398
|
-
__typename?: 'Mutation';
|
|
2399
|
-
copyBlueprint: Array<{
|
|
2400
|
-
__typename?: 'Blueprint';
|
|
2401
|
-
prn: any;
|
|
2402
|
-
}>;
|
|
2403
|
-
};
|
|
2404
|
-
export type CreateBlueprintMutationVariables = Exact<{
|
|
2405
|
-
input: Array<CreateBlueprintInput> | CreateBlueprintInput;
|
|
2406
|
-
}>;
|
|
2407
|
-
export type CreateBlueprintMutation = {
|
|
2408
|
-
__typename?: 'Mutation';
|
|
2409
|
-
createBlueprint: Array<({
|
|
2410
|
-
__typename?: 'Blueprint';
|
|
2411
|
-
channel: ({
|
|
2412
|
-
__typename?: 'Channel';
|
|
2413
|
-
defaultBlueprint?: {
|
|
2414
|
-
__typename?: 'Blueprint';
|
|
2415
|
-
prn: any;
|
|
2416
|
-
} | null;
|
|
2417
|
-
} & {
|
|
2418
|
-
' $fragmentRefs'?: {
|
|
2419
|
-
'ChannelFragmentFragment': ChannelFragmentFragment;
|
|
2420
|
-
};
|
|
2421
|
-
});
|
|
2422
|
-
} & {
|
|
2423
|
-
' $fragmentRefs'?: {
|
|
2424
|
-
'BlueprintFragmentFragment': BlueprintFragmentFragment;
|
|
2425
|
-
};
|
|
2426
|
-
})>;
|
|
2427
|
-
};
|
|
2428
|
-
export type CreateBlueprintFromContentExperienceMutationVariables = Exact<{
|
|
2429
|
-
input: Array<CreateBlueprintFromContentExperienceInput> | CreateBlueprintFromContentExperienceInput;
|
|
2430
|
-
}>;
|
|
2431
|
-
export type CreateBlueprintFromContentExperienceMutation = {
|
|
2432
|
-
__typename?: 'Mutation';
|
|
2433
|
-
createBlueprintFromContentExperience: Array<({
|
|
2434
|
-
__typename?: 'Blueprint';
|
|
2435
|
-
} & {
|
|
2436
|
-
' $fragmentRefs'?: {
|
|
2437
|
-
'BlueprintFragmentFragment': BlueprintFragmentFragment;
|
|
2438
|
-
};
|
|
2439
|
-
})>;
|
|
2440
|
-
};
|
|
2441
|
-
export type RemoveBlueprintMutationVariables = Exact<{
|
|
2442
|
-
input: Array<RemoveBlueprintInput> | RemoveBlueprintInput;
|
|
2443
|
-
}>;
|
|
2444
|
-
export type RemoveBlueprintMutation = {
|
|
2445
|
-
__typename?: 'Mutation';
|
|
2446
|
-
removeBlueprint: Array<{
|
|
2447
|
-
__typename?: 'RemoveBlueprintResponse';
|
|
2448
|
-
prn: any;
|
|
2449
|
-
name: string;
|
|
2450
|
-
isFixed: boolean;
|
|
2451
|
-
createdAt: any;
|
|
2452
|
-
updatedAt: any;
|
|
2453
|
-
_id: any;
|
|
2454
|
-
}>;
|
|
2455
|
-
};
|
|
2456
|
-
export type SingleBlueprintQueryVariables = Exact<{
|
|
2457
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
2458
|
-
}>;
|
|
2459
|
-
export type SingleBlueprintQuery = {
|
|
2460
|
-
__typename?: 'Query';
|
|
2461
|
-
blueprint: Array<{
|
|
2462
|
-
__typename?: 'Blueprint';
|
|
2463
|
-
prn: any;
|
|
2464
|
-
isFixed: boolean;
|
|
2465
|
-
name: string;
|
|
2466
|
-
createdAt: any;
|
|
2467
|
-
updatedAt: any;
|
|
2468
|
-
_id: any;
|
|
2469
|
-
channel: ({
|
|
2470
|
-
__typename?: 'Channel';
|
|
2471
|
-
theme: ({
|
|
2472
|
-
__typename?: 'Theme';
|
|
2473
|
-
} & {
|
|
2474
|
-
' $fragmentRefs'?: {
|
|
2475
|
-
'ThemeFragmentFragment': ThemeFragmentFragment;
|
|
2476
|
-
};
|
|
2477
|
-
});
|
|
2478
|
-
rootPathPart: ({
|
|
2479
|
-
__typename?: 'PathPart';
|
|
2480
|
-
} & {
|
|
2481
|
-
' $fragmentRefs'?: {
|
|
2482
|
-
'PathPartFragmentFragment': PathPartFragmentFragment;
|
|
2483
|
-
};
|
|
2484
|
-
});
|
|
2485
|
-
} & {
|
|
2486
|
-
' $fragmentRefs'?: {
|
|
2487
|
-
'ChannelFragmentFragment': ChannelFragmentFragment;
|
|
2488
|
-
};
|
|
2489
|
-
});
|
|
2490
|
-
definedBy: {
|
|
2491
|
-
__typename?: 'ExperienceComponent';
|
|
2492
|
-
prn: any;
|
|
2493
|
-
createdAt: any;
|
|
2494
|
-
updatedAt: any;
|
|
2495
|
-
blueprintedInstances?: Array<{
|
|
2496
|
-
__typename?: 'ExperienceComponent';
|
|
2497
|
-
contentExperience?: {
|
|
2498
|
-
__typename?: 'ContentExperience';
|
|
2499
|
-
prn: any;
|
|
2500
|
-
title: string;
|
|
2501
|
-
slug: string;
|
|
2502
|
-
} | null;
|
|
2503
|
-
}> | null;
|
|
2504
|
-
grid?: ({
|
|
2505
|
-
__typename?: 'Grid';
|
|
2506
|
-
gridPlacements: Array<({
|
|
2507
|
-
__typename?: 'GridPlacement';
|
|
2508
|
-
experienceComponent: ({
|
|
2509
|
-
__typename?: 'ExperienceComponent';
|
|
2510
|
-
buildingBlock: ({
|
|
2511
|
-
__typename?: 'BuildingBlock';
|
|
2512
|
-
buildingBlockFields: Array<({
|
|
2513
|
-
__typename?: 'BuildingBlockField';
|
|
2514
|
-
} & {
|
|
2515
|
-
' $fragmentRefs'?: {
|
|
2516
|
-
'BuildingBlockFieldFragmentFragment': BuildingBlockFieldFragmentFragment;
|
|
2517
|
-
};
|
|
2518
|
-
})>;
|
|
2519
|
-
} & {
|
|
2520
|
-
' $fragmentRefs'?: {
|
|
2521
|
-
'BuildingBlockFragmentFragment': BuildingBlockFragmentFragment;
|
|
2522
|
-
};
|
|
2523
|
-
});
|
|
2524
|
-
buildingBlockFieldFulfillments: Array<({
|
|
2525
|
-
__typename?: 'BuildingBlockFieldFulfillment';
|
|
2526
|
-
buildingBlockField: ({
|
|
2527
|
-
__typename?: 'BuildingBlockField';
|
|
2528
|
-
} & {
|
|
2529
|
-
' $fragmentRefs'?: {
|
|
2530
|
-
'BuildingBlockFieldFragmentFragment': BuildingBlockFieldFragmentFragment;
|
|
2531
|
-
};
|
|
2532
|
-
});
|
|
2533
|
-
contentValue: ({
|
|
2534
|
-
__typename?: 'ContentValue';
|
|
2535
|
-
relatedAsset?: ({
|
|
2536
|
-
__typename?: 'Asset';
|
|
2537
|
-
} & {
|
|
2538
|
-
' $fragmentRefs'?: {
|
|
2539
|
-
'AssetFragmentFragment': AssetFragmentFragment;
|
|
2540
|
-
};
|
|
2541
|
-
}) | null;
|
|
2542
|
-
relatedContentItem?: ({
|
|
2543
|
-
__typename?: 'ContentItem';
|
|
2544
|
-
contentValues: Array<({
|
|
2545
|
-
__typename?: 'ContentValue';
|
|
2546
|
-
contentField?: ({
|
|
2547
|
-
__typename?: 'ContentField';
|
|
2548
|
-
} & {
|
|
2549
|
-
' $fragmentRefs'?: {
|
|
2550
|
-
'ContentFieldFragmentFragment': ContentFieldFragmentFragment;
|
|
2551
|
-
};
|
|
2552
|
-
}) | null;
|
|
2553
|
-
} & {
|
|
2554
|
-
' $fragmentRefs'?: {
|
|
2555
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
2556
|
-
};
|
|
2557
|
-
})>;
|
|
2558
|
-
} & {
|
|
2559
|
-
' $fragmentRefs'?: {
|
|
2560
|
-
'ContentItemFragmentFragment': ContentItemFragmentFragment;
|
|
2561
|
-
};
|
|
2562
|
-
}) | null;
|
|
2563
|
-
contentItem?: {
|
|
2564
|
-
__typename?: 'ContentItem';
|
|
2565
|
-
prn: any;
|
|
2566
|
-
} | null;
|
|
2567
|
-
} & {
|
|
2568
|
-
' $fragmentRefs'?: {
|
|
2569
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
2570
|
-
};
|
|
2571
|
-
});
|
|
2572
|
-
} & {
|
|
2573
|
-
' $fragmentRefs'?: {
|
|
2574
|
-
'BuildingBlockFieldFulfillmentFragmentFragment': BuildingBlockFieldFulfillmentFragmentFragment;
|
|
2575
|
-
};
|
|
2576
|
-
})>;
|
|
2577
|
-
} & {
|
|
2578
|
-
' $fragmentRefs'?: {
|
|
2579
|
-
'ExperienceComponentFragmentFragment': ExperienceComponentFragmentFragment;
|
|
2580
|
-
};
|
|
2581
|
-
});
|
|
2582
|
-
} & {
|
|
2583
|
-
' $fragmentRefs'?: {
|
|
2584
|
-
'GridPlacementFragmentFragment': GridPlacementFragmentFragment;
|
|
2585
|
-
};
|
|
2586
|
-
})>;
|
|
2587
|
-
} & {
|
|
2588
|
-
' $fragmentRefs'?: {
|
|
2589
|
-
'GridFragmentFragment': GridFragmentFragment;
|
|
2590
|
-
};
|
|
2591
|
-
}) | null;
|
|
2592
|
-
};
|
|
2593
|
-
}>;
|
|
2594
|
-
};
|
|
2595
|
-
export type SyncBlueprintMutationVariables = Exact<{
|
|
2596
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
2597
|
-
}>;
|
|
2598
|
-
export type SyncBlueprintMutation = {
|
|
2599
|
-
__typename?: 'Mutation';
|
|
2600
|
-
syncBlueprint: boolean;
|
|
2601
|
-
};
|
|
2602
|
-
export type UpdateBlueprintMutationVariables = Exact<{
|
|
2603
|
-
input: Array<UpdateBlueprintInput> | UpdateBlueprintInput;
|
|
2604
|
-
}>;
|
|
2605
|
-
export type UpdateBlueprintMutation = {
|
|
2606
|
-
__typename?: 'Mutation';
|
|
2607
|
-
updateBlueprint: Array<({
|
|
2608
|
-
__typename?: 'Blueprint';
|
|
2609
|
-
} & {
|
|
2610
|
-
' $fragmentRefs'?: {
|
|
2611
|
-
'BlueprintFragmentFragment': BlueprintFragmentFragment;
|
|
2612
|
-
};
|
|
2613
|
-
})>;
|
|
2614
|
-
};
|
|
2615
|
-
export type BuildingBlockFieldFulfillmentFragmentFragment = {
|
|
2616
|
-
__typename?: 'BuildingBlockFieldFulfillment';
|
|
2617
|
-
prn: any;
|
|
2618
|
-
createdAt: any;
|
|
2619
|
-
updatedAt: any;
|
|
2620
|
-
_id: any;
|
|
2621
|
-
} & {
|
|
2622
|
-
' $fragmentName'?: 'BuildingBlockFieldFulfillmentFragmentFragment';
|
|
2623
|
-
};
|
|
2624
|
-
export type CreateBuildingBlockFieldFulfillmentsMutationVariables = Exact<{
|
|
2625
|
-
input: Array<CreateBuildingBlockFieldFulfillmentInput> | CreateBuildingBlockFieldFulfillmentInput;
|
|
2626
|
-
}>;
|
|
2627
|
-
export type CreateBuildingBlockFieldFulfillmentsMutation = {
|
|
2628
|
-
__typename?: 'Mutation';
|
|
2629
|
-
createBuildingBlockFieldFulfillment: Array<({
|
|
2630
|
-
__typename?: 'BuildingBlockFieldFulfillment';
|
|
2631
|
-
contentValue: ({
|
|
2632
|
-
__typename?: 'ContentValue';
|
|
2633
|
-
relatedContentItem?: ({
|
|
2634
|
-
__typename?: 'ContentItem';
|
|
2635
|
-
contentValues: Array<({
|
|
2636
|
-
__typename?: 'ContentValue';
|
|
2637
|
-
contentField?: ({
|
|
2638
|
-
__typename?: 'ContentField';
|
|
2639
|
-
} & {
|
|
2640
|
-
' $fragmentRefs'?: {
|
|
2641
|
-
'ContentFieldFragmentFragment': ContentFieldFragmentFragment;
|
|
2642
|
-
};
|
|
2643
|
-
}) | null;
|
|
2644
|
-
relatedAsset?: ({
|
|
2645
|
-
__typename?: 'Asset';
|
|
2646
|
-
} & {
|
|
2647
|
-
' $fragmentRefs'?: {
|
|
2648
|
-
'AssetFragmentFragment': AssetFragmentFragment;
|
|
2649
|
-
};
|
|
2650
|
-
}) | null;
|
|
2651
|
-
} & {
|
|
2652
|
-
' $fragmentRefs'?: {
|
|
2653
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
2654
|
-
};
|
|
2655
|
-
})>;
|
|
2656
|
-
} & {
|
|
2657
|
-
' $fragmentRefs'?: {
|
|
2658
|
-
'ContentItemFragmentFragment': ContentItemFragmentFragment;
|
|
2659
|
-
};
|
|
2660
|
-
}) | null;
|
|
2661
|
-
contentItem?: {
|
|
2662
|
-
__typename?: 'ContentItem';
|
|
2663
|
-
prn: any;
|
|
2664
|
-
} | null;
|
|
2665
|
-
} & {
|
|
2666
|
-
' $fragmentRefs'?: {
|
|
2667
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
2668
|
-
};
|
|
2669
|
-
});
|
|
2670
|
-
buildingBlockField: ({
|
|
2671
|
-
__typename?: 'BuildingBlockField';
|
|
2672
|
-
} & {
|
|
2673
|
-
' $fragmentRefs'?: {
|
|
2674
|
-
'BuildingBlockFieldFragmentFragment': BuildingBlockFieldFragmentFragment;
|
|
2675
|
-
};
|
|
2676
|
-
});
|
|
2677
|
-
} & {
|
|
2678
|
-
' $fragmentRefs'?: {
|
|
2679
|
-
'BuildingBlockFieldFulfillmentFragmentFragment': BuildingBlockFieldFulfillmentFragmentFragment;
|
|
2680
|
-
};
|
|
2681
|
-
})>;
|
|
2682
|
-
};
|
|
2683
|
-
export type RemoveBuildingBlockFieldFulfillmentMutationVariables = Exact<{
|
|
2684
|
-
input: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
2685
|
-
}>;
|
|
2686
|
-
export type RemoveBuildingBlockFieldFulfillmentMutation = {
|
|
2687
|
-
__typename?: 'Mutation';
|
|
2688
|
-
removeBuildingBlockFieldFulfillment: Array<({
|
|
2689
|
-
__typename?: 'BuildingBlockFieldFulfillment';
|
|
2690
|
-
contentValue: ({
|
|
2691
|
-
__typename?: 'ContentValue';
|
|
2692
|
-
relatedContentItem?: ({
|
|
2693
|
-
__typename?: 'ContentItem';
|
|
2694
|
-
contentValues: Array<({
|
|
2695
|
-
__typename?: 'ContentValue';
|
|
2696
|
-
contentField?: ({
|
|
2697
|
-
__typename?: 'ContentField';
|
|
2698
|
-
} & {
|
|
2699
|
-
' $fragmentRefs'?: {
|
|
2700
|
-
'ContentFieldFragmentFragment': ContentFieldFragmentFragment;
|
|
2701
|
-
};
|
|
2702
|
-
}) | null;
|
|
2703
|
-
relatedAsset?: ({
|
|
2704
|
-
__typename?: 'Asset';
|
|
2705
|
-
} & {
|
|
2706
|
-
' $fragmentRefs'?: {
|
|
2707
|
-
'AssetFragmentFragment': AssetFragmentFragment;
|
|
2708
|
-
};
|
|
2709
|
-
}) | null;
|
|
2710
|
-
} & {
|
|
2711
|
-
' $fragmentRefs'?: {
|
|
2712
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
2713
|
-
};
|
|
2714
|
-
})>;
|
|
2715
|
-
} & {
|
|
2716
|
-
' $fragmentRefs'?: {
|
|
2717
|
-
'ContentItemFragmentFragment': ContentItemFragmentFragment;
|
|
2718
|
-
};
|
|
2719
|
-
}) | null;
|
|
2720
|
-
contentItem?: {
|
|
2721
|
-
__typename?: 'ContentItem';
|
|
2722
|
-
prn: any;
|
|
2723
|
-
} | null;
|
|
2724
|
-
} & {
|
|
2725
|
-
' $fragmentRefs'?: {
|
|
2726
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
2727
|
-
};
|
|
2728
|
-
});
|
|
2729
|
-
buildingBlockField: ({
|
|
2730
|
-
__typename?: 'BuildingBlockField';
|
|
2731
|
-
} & {
|
|
2732
|
-
' $fragmentRefs'?: {
|
|
2733
|
-
'BuildingBlockFieldFragmentFragment': BuildingBlockFieldFragmentFragment;
|
|
2734
|
-
};
|
|
2735
|
-
});
|
|
2736
|
-
} & {
|
|
2737
|
-
' $fragmentRefs'?: {
|
|
2738
|
-
'BuildingBlockFieldFulfillmentFragmentFragment': BuildingBlockFieldFulfillmentFragmentFragment;
|
|
2739
|
-
};
|
|
2740
|
-
})>;
|
|
2741
|
-
};
|
|
2742
|
-
export type UpdateBuildingBlockFieldFulfillmentMutationVariables = Exact<{
|
|
2743
|
-
input: Array<UpdateBuildingBlockFieldFulfillmentInput> | UpdateBuildingBlockFieldFulfillmentInput;
|
|
2744
|
-
}>;
|
|
2745
|
-
export type UpdateBuildingBlockFieldFulfillmentMutation = {
|
|
2746
|
-
__typename?: 'Mutation';
|
|
2747
|
-
updateBuildingBlockFieldFulfillment: Array<({
|
|
2748
|
-
__typename?: 'BuildingBlockFieldFulfillment';
|
|
2749
|
-
contentValue: ({
|
|
2750
|
-
__typename?: 'ContentValue';
|
|
2751
|
-
relatedContentItem?: ({
|
|
2752
|
-
__typename?: 'ContentItem';
|
|
2753
|
-
contentValues: Array<({
|
|
2754
|
-
__typename?: 'ContentValue';
|
|
2755
|
-
contentField?: ({
|
|
2756
|
-
__typename?: 'ContentField';
|
|
2757
|
-
} & {
|
|
2758
|
-
' $fragmentRefs'?: {
|
|
2759
|
-
'ContentFieldFragmentFragment': ContentFieldFragmentFragment;
|
|
2760
|
-
};
|
|
2761
|
-
}) | null;
|
|
2762
|
-
relatedAsset?: ({
|
|
2763
|
-
__typename?: 'Asset';
|
|
2764
|
-
} & {
|
|
2765
|
-
' $fragmentRefs'?: {
|
|
2766
|
-
'AssetFragmentFragment': AssetFragmentFragment;
|
|
2767
|
-
};
|
|
2768
|
-
}) | null;
|
|
2769
|
-
} & {
|
|
2770
|
-
' $fragmentRefs'?: {
|
|
2771
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
2772
|
-
};
|
|
2773
|
-
})>;
|
|
2774
|
-
} & {
|
|
2775
|
-
' $fragmentRefs'?: {
|
|
2776
|
-
'ContentItemFragmentFragment': ContentItemFragmentFragment;
|
|
2777
|
-
};
|
|
2778
|
-
}) | null;
|
|
2779
|
-
contentItem?: {
|
|
2780
|
-
__typename?: 'ContentItem';
|
|
2781
|
-
prn: any;
|
|
2782
|
-
} | null;
|
|
2783
|
-
} & {
|
|
2784
|
-
' $fragmentRefs'?: {
|
|
2785
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
2786
|
-
};
|
|
2787
|
-
});
|
|
2788
|
-
buildingBlockField: ({
|
|
2789
|
-
__typename?: 'BuildingBlockField';
|
|
2790
|
-
} & {
|
|
2791
|
-
' $fragmentRefs'?: {
|
|
2792
|
-
'BuildingBlockFieldFragmentFragment': BuildingBlockFieldFragmentFragment;
|
|
2793
|
-
};
|
|
2794
|
-
});
|
|
2795
|
-
} & {
|
|
2796
|
-
' $fragmentRefs'?: {
|
|
2797
|
-
'BuildingBlockFieldFulfillmentFragmentFragment': BuildingBlockFieldFulfillmentFragmentFragment;
|
|
2798
|
-
};
|
|
2799
|
-
})>;
|
|
2800
|
-
};
|
|
2801
|
-
export type BuildingBlockFieldFragmentFragment = {
|
|
2802
|
-
__typename?: 'BuildingBlockField';
|
|
2803
|
-
prn: any;
|
|
2804
|
-
slug: string;
|
|
2805
|
-
title: string;
|
|
2806
|
-
createdAt: any;
|
|
2807
|
-
updatedAt: any;
|
|
2808
|
-
_id: any;
|
|
2809
|
-
contentValidationRules: Array<({
|
|
2810
|
-
__typename?: 'ContentValidationRule';
|
|
2811
|
-
} & {
|
|
2812
|
-
' $fragmentRefs'?: {
|
|
2813
|
-
'ContentValidationRuleFragmentFragment': ContentValidationRuleFragmentFragment;
|
|
2814
|
-
};
|
|
2815
|
-
})>;
|
|
2816
|
-
} & {
|
|
2817
|
-
' $fragmentName'?: 'BuildingBlockFieldFragmentFragment';
|
|
2818
|
-
};
|
|
2819
|
-
export type CreateBuildingBlockFieldMutationVariables = Exact<{
|
|
2820
|
-
input: Array<CreateBuildingBlockFieldInput> | CreateBuildingBlockFieldInput;
|
|
2821
|
-
}>;
|
|
2822
|
-
export type CreateBuildingBlockFieldMutation = {
|
|
2823
|
-
__typename?: 'Mutation';
|
|
2824
|
-
createBuildingBlockField: Array<({
|
|
2825
|
-
__typename?: 'BuildingBlockField';
|
|
2826
|
-
} & {
|
|
2827
|
-
' $fragmentRefs'?: {
|
|
2828
|
-
'BuildingBlockFieldFragmentFragment': BuildingBlockFieldFragmentFragment;
|
|
2829
|
-
};
|
|
2830
|
-
})>;
|
|
2831
|
-
};
|
|
2832
|
-
export type RemoveBuildingBlockFieldMutationVariables = Exact<{
|
|
2833
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
2834
|
-
}>;
|
|
2835
|
-
export type RemoveBuildingBlockFieldMutation = {
|
|
2836
|
-
__typename?: 'Mutation';
|
|
2837
|
-
removeBuildingBlockField: Array<({
|
|
2838
|
-
__typename?: 'BuildingBlockField';
|
|
2839
|
-
} & {
|
|
2840
|
-
' $fragmentRefs'?: {
|
|
2841
|
-
'BuildingBlockFieldFragmentFragment': BuildingBlockFieldFragmentFragment;
|
|
2842
|
-
};
|
|
2843
|
-
})>;
|
|
2844
|
-
};
|
|
2845
|
-
export type UpdateBuildingBlockFieldMutationVariables = Exact<{
|
|
2846
|
-
input: Array<UpdateBuildingBlockFieldInput> | UpdateBuildingBlockFieldInput;
|
|
2847
|
-
}>;
|
|
2848
|
-
export type UpdateBuildingBlockFieldMutation = {
|
|
2849
|
-
__typename?: 'Mutation';
|
|
2850
|
-
updateBuildingBlockField: Array<({
|
|
2851
|
-
__typename?: 'BuildingBlockField';
|
|
2852
|
-
} & {
|
|
2853
|
-
' $fragmentRefs'?: {
|
|
2854
|
-
'BuildingBlockFieldFragmentFragment': BuildingBlockFieldFragmentFragment;
|
|
2855
|
-
};
|
|
2856
|
-
})>;
|
|
2857
|
-
};
|
|
2858
|
-
export type BuildingBlockQueryVariables = Exact<{
|
|
2859
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
2860
|
-
}>;
|
|
2861
|
-
export type BuildingBlockQuery = {
|
|
2862
|
-
__typename?: 'Query';
|
|
2863
|
-
buildingBlock: Array<({
|
|
2864
|
-
__typename?: 'BuildingBlock';
|
|
2865
|
-
buildingBlockFields: Array<({
|
|
2866
|
-
__typename?: 'BuildingBlockField';
|
|
2867
|
-
} & {
|
|
2868
|
-
' $fragmentRefs'?: {
|
|
2869
|
-
'BuildingBlockFieldFragmentFragment': BuildingBlockFieldFragmentFragment;
|
|
2870
|
-
};
|
|
2871
|
-
})>;
|
|
2872
|
-
} & {
|
|
2873
|
-
' $fragmentRefs'?: {
|
|
2874
|
-
'BuildingBlockFragmentFragment': BuildingBlockFragmentFragment;
|
|
2875
|
-
};
|
|
2876
|
-
})>;
|
|
2877
|
-
};
|
|
2878
|
-
export type BuildingBlockFragmentFragment = {
|
|
2879
|
-
__typename?: 'BuildingBlock';
|
|
2880
|
-
prn: any;
|
|
2881
|
-
slug: string;
|
|
2882
|
-
title: string;
|
|
2883
|
-
createdAt: any;
|
|
2884
|
-
updatedAt: any;
|
|
2885
|
-
_id: any;
|
|
2886
|
-
preview?: ({
|
|
2887
|
-
__typename?: 'Asset';
|
|
2888
|
-
} & {
|
|
2889
|
-
' $fragmentRefs'?: {
|
|
2890
|
-
'AssetFragmentFragment': AssetFragmentFragment;
|
|
2891
|
-
};
|
|
2892
|
-
}) | null;
|
|
2893
|
-
} & {
|
|
2894
|
-
' $fragmentName'?: 'BuildingBlockFragmentFragment';
|
|
2895
|
-
};
|
|
2896
|
-
export type CreateBuildingBlockMutationVariables = Exact<{
|
|
2897
|
-
input: Array<CreateBuildingBlockInput> | CreateBuildingBlockInput;
|
|
2898
|
-
}>;
|
|
2899
|
-
export type CreateBuildingBlockMutation = {
|
|
2900
|
-
__typename?: 'Mutation';
|
|
2901
|
-
createBuildingBlock: Array<({
|
|
2902
|
-
__typename?: 'BuildingBlock';
|
|
2903
|
-
} & {
|
|
2904
|
-
' $fragmentRefs'?: {
|
|
2905
|
-
'BuildingBlockFragmentFragment': BuildingBlockFragmentFragment;
|
|
2906
|
-
};
|
|
2907
|
-
})>;
|
|
2908
|
-
};
|
|
2909
|
-
export type RemoveBuildingBlockMutationVariables = Exact<{
|
|
2910
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
2911
|
-
}>;
|
|
2912
|
-
export type RemoveBuildingBlockMutation = {
|
|
2913
|
-
__typename?: 'Mutation';
|
|
2914
|
-
removeBuildingBlock: Array<{
|
|
2915
|
-
__typename?: 'RemoveBuildingBlockResponse';
|
|
2916
|
-
prn: any;
|
|
2917
|
-
}>;
|
|
2918
|
-
};
|
|
2919
|
-
export type UpdateBuildingBlockMutationVariables = Exact<{
|
|
2920
|
-
input: Array<UpdateBuildingBlockInput> | UpdateBuildingBlockInput;
|
|
2921
|
-
}>;
|
|
2922
|
-
export type UpdateBuildingBlockMutation = {
|
|
2923
|
-
__typename?: 'Mutation';
|
|
2924
|
-
updateBuildingBlock: Array<({
|
|
2925
|
-
__typename?: 'BuildingBlock';
|
|
2926
|
-
} & {
|
|
2927
|
-
' $fragmentRefs'?: {
|
|
2928
|
-
'BuildingBlockFragmentFragment': BuildingBlockFragmentFragment;
|
|
2929
|
-
};
|
|
2930
|
-
})>;
|
|
2931
|
-
};
|
|
2932
|
-
export type CasStringMatchesQueryVariables = Exact<{
|
|
2933
|
-
inputText: Scalars['String']['input'];
|
|
2934
|
-
limit: Scalars['Int']['input'];
|
|
2935
|
-
matchConfig?: InputMaybe<DatabaseMatchConfig>;
|
|
2936
|
-
}>;
|
|
2937
|
-
export type CasStringMatchesQuery = {
|
|
2938
|
-
__typename?: 'Query';
|
|
2939
|
-
casStringMatches: Array<{
|
|
2940
|
-
__typename?: 'CasDatabaseMatch';
|
|
2941
|
-
confidence: number;
|
|
2942
|
-
endIndex: number;
|
|
2943
|
-
extractionMethod: string;
|
|
2944
|
-
startIndex: number;
|
|
2945
|
-
contentValue: {
|
|
2946
|
-
__typename?: 'ContentValue';
|
|
2947
|
-
prn: any;
|
|
2948
|
-
interpolatedSmartText?: any | null;
|
|
2949
|
-
primitiveValue?: any | null;
|
|
2950
|
-
isReusable: boolean;
|
|
2951
|
-
contentItem?: {
|
|
2952
|
-
__typename?: 'ContentItem';
|
|
2953
|
-
displayName: string;
|
|
2954
|
-
} | null;
|
|
2955
|
-
};
|
|
2956
|
-
}>;
|
|
2957
|
-
};
|
|
2958
|
-
export type AllChannelsQueryVariables = Exact<{
|
|
2959
|
-
paginate: PaginationOptionsInput;
|
|
2960
|
-
where?: InputMaybe<Array<ChannelsFilterInput> | ChannelsFilterInput>;
|
|
2961
|
-
orderBy?: InputMaybe<OrderOptionsInput>;
|
|
2962
|
-
}>;
|
|
2963
|
-
export type AllChannelsQuery = {
|
|
2964
|
-
__typename?: 'Query';
|
|
2965
|
-
channels: {
|
|
2966
|
-
__typename?: 'ChannelsConnection';
|
|
2967
|
-
totalCount: number;
|
|
2968
|
-
pageInfo: ({
|
|
2969
|
-
__typename?: 'PageInfo';
|
|
2970
|
-
} & {
|
|
2971
|
-
' $fragmentRefs'?: {
|
|
2972
|
-
'PaginationFragment': PaginationFragment;
|
|
2973
|
-
};
|
|
2974
|
-
});
|
|
2975
|
-
edges: Array<{
|
|
2976
|
-
__typename?: 'ChannelEdge';
|
|
2977
|
-
cursor: string;
|
|
2978
|
-
node: ({
|
|
2979
|
-
__typename?: 'Channel';
|
|
2980
|
-
rootPathPart: ({
|
|
2981
|
-
__typename?: 'PathPart';
|
|
2982
|
-
} & {
|
|
2983
|
-
' $fragmentRefs'?: {
|
|
2984
|
-
'PathPartFragmentFragment': PathPartFragmentFragment;
|
|
2985
|
-
};
|
|
2986
|
-
});
|
|
2987
|
-
defaultBlueprint?: {
|
|
2988
|
-
__typename?: 'Blueprint';
|
|
2989
|
-
prn: any;
|
|
2990
|
-
name: string;
|
|
2991
|
-
} | null;
|
|
2992
|
-
theme: ({
|
|
2993
|
-
__typename?: 'Theme';
|
|
2994
|
-
} & {
|
|
2995
|
-
' $fragmentRefs'?: {
|
|
2996
|
-
'ThemeFragmentFragment': ThemeFragmentFragment;
|
|
2997
|
-
};
|
|
2998
|
-
});
|
|
2999
|
-
apiTokens: Array<({
|
|
3000
|
-
__typename?: 'ApiToken';
|
|
3001
|
-
} & {
|
|
3002
|
-
' $fragmentRefs'?: {
|
|
3003
|
-
'ApiTokenFragmentFragment': ApiTokenFragmentFragment;
|
|
3004
|
-
};
|
|
3005
|
-
})>;
|
|
3006
|
-
} & {
|
|
3007
|
-
' $fragmentRefs'?: {
|
|
3008
|
-
'ChannelFragmentFragment': ChannelFragmentFragment;
|
|
3009
|
-
};
|
|
3010
|
-
});
|
|
3011
|
-
}>;
|
|
3012
|
-
};
|
|
3013
|
-
};
|
|
3014
|
-
export type ChannelFragmentFragment = {
|
|
3015
|
-
__typename?: 'Channel';
|
|
3016
|
-
name: string;
|
|
3017
|
-
domain: string;
|
|
3018
|
-
slug: string;
|
|
3019
|
-
prn: any;
|
|
3020
|
-
updatedAt: any;
|
|
3021
|
-
createdAt: any;
|
|
3022
|
-
_id: any;
|
|
3023
|
-
} & {
|
|
3024
|
-
' $fragmentName'?: 'ChannelFragmentFragment';
|
|
3025
|
-
};
|
|
3026
|
-
export type CreateChannelMutationVariables = Exact<{
|
|
3027
|
-
createChannelInput: Array<CreateChannelInput> | CreateChannelInput;
|
|
3028
|
-
}>;
|
|
3029
|
-
export type CreateChannelMutation = {
|
|
3030
|
-
__typename?: 'Mutation';
|
|
3031
|
-
createChannel: Array<({
|
|
3032
|
-
__typename?: 'Channel';
|
|
3033
|
-
} & {
|
|
3034
|
-
' $fragmentRefs'?: {
|
|
3035
|
-
'ChannelFragmentFragment': ChannelFragmentFragment;
|
|
3036
|
-
};
|
|
3037
|
-
})>;
|
|
3038
|
-
};
|
|
3039
|
-
export type RemoveChannelMutationVariables = Exact<{
|
|
3040
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
3041
|
-
}>;
|
|
3042
|
-
export type RemoveChannelMutation = {
|
|
3043
|
-
__typename?: 'Mutation';
|
|
3044
|
-
removeChannel: Array<({
|
|
3045
|
-
__typename?: 'Channel';
|
|
3046
|
-
} & {
|
|
3047
|
-
' $fragmentRefs'?: {
|
|
3048
|
-
'ChannelFragmentFragment': ChannelFragmentFragment;
|
|
3049
|
-
};
|
|
3050
|
-
})>;
|
|
3051
|
-
};
|
|
3052
|
-
export type SingleChannelQueryVariables = Exact<{
|
|
3053
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
3054
|
-
}>;
|
|
3055
|
-
export type SingleChannelQuery = {
|
|
3056
|
-
__typename?: 'Query';
|
|
3057
|
-
channel: Array<({
|
|
3058
|
-
__typename?: 'Channel';
|
|
3059
|
-
rootPathPart: ({
|
|
3060
|
-
__typename?: 'PathPart';
|
|
3061
|
-
} & {
|
|
3062
|
-
' $fragmentRefs'?: {
|
|
3063
|
-
'PathPartFragmentFragment': PathPartFragmentFragment;
|
|
3064
|
-
};
|
|
3065
|
-
});
|
|
3066
|
-
} & {
|
|
3067
|
-
' $fragmentRefs'?: {
|
|
3068
|
-
'ChannelFragmentFragment': ChannelFragmentFragment;
|
|
3069
|
-
};
|
|
3070
|
-
})>;
|
|
3071
|
-
};
|
|
3072
|
-
export type SingleChannelWithBlueprintsQueryVariables = Exact<{
|
|
3073
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
3074
|
-
}>;
|
|
3075
|
-
export type SingleChannelWithBlueprintsQuery = {
|
|
3076
|
-
__typename?: 'Query';
|
|
3077
|
-
channel: Array<({
|
|
3078
|
-
__typename?: 'Channel';
|
|
3079
|
-
defaultBlueprint?: {
|
|
3080
|
-
__typename?: 'Blueprint';
|
|
3081
|
-
prn: any;
|
|
3082
|
-
name: string;
|
|
3083
|
-
} | null;
|
|
3084
|
-
blueprints: Array<({
|
|
3085
|
-
__typename?: 'Blueprint';
|
|
3086
|
-
channel: ({
|
|
3087
|
-
__typename?: 'Channel';
|
|
3088
|
-
} & {
|
|
3089
|
-
' $fragmentRefs'?: {
|
|
3090
|
-
'ChannelFragmentFragment': ChannelFragmentFragment;
|
|
3091
|
-
};
|
|
3092
|
-
});
|
|
3093
|
-
} & {
|
|
3094
|
-
' $fragmentRefs'?: {
|
|
3095
|
-
'BlueprintFragmentFragment': BlueprintFragmentFragment;
|
|
3096
|
-
};
|
|
3097
|
-
})>;
|
|
3098
|
-
} & {
|
|
3099
|
-
' $fragmentRefs'?: {
|
|
3100
|
-
'ChannelFragmentFragment': ChannelFragmentFragment;
|
|
3101
|
-
};
|
|
3102
|
-
})>;
|
|
3103
|
-
};
|
|
3104
|
-
export type UpdateChannelMutationVariables = Exact<{
|
|
3105
|
-
updateChannelInput: Array<UpdateChannelInput> | UpdateChannelInput;
|
|
3106
|
-
}>;
|
|
3107
|
-
export type UpdateChannelMutation = {
|
|
3108
|
-
__typename?: 'Mutation';
|
|
3109
|
-
updateChannel: Array<({
|
|
3110
|
-
__typename?: 'Channel';
|
|
3111
|
-
defaultBlueprint?: {
|
|
3112
|
-
__typename?: 'Blueprint';
|
|
3113
|
-
prn: any;
|
|
3114
|
-
name: string;
|
|
3115
|
-
} | null;
|
|
3116
|
-
} & {
|
|
3117
|
-
' $fragmentRefs'?: {
|
|
3118
|
-
'ChannelFragmentFragment': ChannelFragmentFragment;
|
|
3119
|
-
};
|
|
3120
|
-
})>;
|
|
3121
|
-
};
|
|
3122
|
-
export type AllContentExperiencesQueryVariables = Exact<{
|
|
3123
|
-
paginate: PaginationOptionsInput;
|
|
3124
|
-
where?: InputMaybe<Array<ContentExperiencesFilterInput> | ContentExperiencesFilterInput>;
|
|
3125
|
-
orderBy?: InputMaybe<OrderOptionsInput>;
|
|
3126
|
-
optionsList: Array<ProcessedAssetOptionsInput> | ProcessedAssetOptionsInput;
|
|
3127
|
-
}>;
|
|
3128
|
-
export type AllContentExperiencesQuery = {
|
|
3129
|
-
__typename?: 'Query';
|
|
3130
|
-
contentExperiences: {
|
|
3131
|
-
__typename?: 'ContentExperiencesConnection';
|
|
3132
|
-
totalCount: number;
|
|
3133
|
-
pageInfo: ({
|
|
3134
|
-
__typename?: 'PageInfo';
|
|
3135
|
-
} & {
|
|
3136
|
-
' $fragmentRefs'?: {
|
|
3137
|
-
'PaginationFragment': PaginationFragment;
|
|
3138
|
-
};
|
|
3139
|
-
});
|
|
3140
|
-
edges: Array<{
|
|
3141
|
-
__typename?: 'ContentExperienceEdge';
|
|
3142
|
-
cursor: string;
|
|
3143
|
-
node: ({
|
|
3144
|
-
__typename?: 'ContentExperience';
|
|
3145
|
-
tags: Array<({
|
|
3146
|
-
__typename?: 'Tag';
|
|
3147
|
-
} & {
|
|
3148
|
-
' $fragmentRefs'?: {
|
|
3149
|
-
'TagFragmentFragment': TagFragmentFragment;
|
|
3150
|
-
};
|
|
3151
|
-
})>;
|
|
3152
|
-
experienceComponent: {
|
|
3153
|
-
__typename?: 'ExperienceComponent';
|
|
3154
|
-
grid?: {
|
|
3155
|
-
__typename?: 'Grid';
|
|
3156
|
-
gridPlacements: Array<{
|
|
3157
|
-
__typename?: 'GridPlacement';
|
|
3158
|
-
experienceComponent: {
|
|
3159
|
-
__typename?: 'ExperienceComponent';
|
|
3160
|
-
buildingBlockFieldFulfillments: Array<{
|
|
3161
|
-
__typename?: 'BuildingBlockFieldFulfillment';
|
|
3162
|
-
contentValue: {
|
|
3163
|
-
__typename?: 'ContentValue';
|
|
3164
|
-
relatedAsset?: {
|
|
3165
|
-
__typename?: 'Asset';
|
|
3166
|
-
prn: any;
|
|
3167
|
-
url?: string | null;
|
|
3168
|
-
processedUrls?: Array<string> | null;
|
|
3169
|
-
} | null;
|
|
3170
|
-
};
|
|
3171
|
-
}>;
|
|
3172
|
-
};
|
|
3173
|
-
}>;
|
|
3174
|
-
} | null;
|
|
3175
|
-
};
|
|
3176
|
-
pathPart: ({
|
|
3177
|
-
__typename?: 'PathPart';
|
|
3178
|
-
} & {
|
|
3179
|
-
' $fragmentRefs'?: {
|
|
3180
|
-
'PathPartFragmentFragment': PathPartFragmentFragment;
|
|
3181
|
-
};
|
|
3182
|
-
});
|
|
3183
|
-
} & {
|
|
3184
|
-
' $fragmentRefs'?: {
|
|
3185
|
-
'ContentExperienceFragmentFragment': ContentExperienceFragmentFragment;
|
|
3186
|
-
};
|
|
3187
|
-
});
|
|
3188
|
-
}>;
|
|
3189
|
-
};
|
|
3190
|
-
};
|
|
3191
|
-
export type ContentExperienceFragmentFragment = {
|
|
3192
|
-
__typename?: 'ContentExperience';
|
|
3193
|
-
slug: string;
|
|
3194
|
-
prn: any;
|
|
3195
|
-
title: string;
|
|
3196
|
-
createdAt: any;
|
|
3197
|
-
updatedAt: any;
|
|
3198
|
-
_id: any;
|
|
3199
|
-
tags: Array<({
|
|
3200
|
-
__typename?: 'Tag';
|
|
3201
|
-
} & {
|
|
3202
|
-
' $fragmentRefs'?: {
|
|
3203
|
-
'TagFragmentFragment': TagFragmentFragment;
|
|
3204
|
-
};
|
|
3205
|
-
})>;
|
|
3206
|
-
preview?: ({
|
|
3207
|
-
__typename?: 'Asset';
|
|
3208
|
-
} & {
|
|
3209
|
-
' $fragmentRefs'?: {
|
|
3210
|
-
'AssetFragmentFragment': AssetFragmentFragment;
|
|
3211
|
-
};
|
|
3212
|
-
}) | null;
|
|
3213
|
-
} & {
|
|
3214
|
-
' $fragmentName'?: 'ContentExperienceFragmentFragment';
|
|
3215
|
-
};
|
|
3216
|
-
export type CreateContentExperienceWithExistingPathPartMutationVariables = Exact<{
|
|
3217
|
-
input: Array<CreateContentExperienceWithExistingPathPartInput> | CreateContentExperienceWithExistingPathPartInput;
|
|
3218
|
-
}>;
|
|
3219
|
-
export type CreateContentExperienceWithExistingPathPartMutation = {
|
|
3220
|
-
__typename?: 'Mutation';
|
|
3221
|
-
createContentExperienceWithExistingPathPart: Array<({
|
|
3222
|
-
__typename?: 'ContentExperience';
|
|
3223
|
-
pathPart: ({
|
|
3224
|
-
__typename?: 'PathPart';
|
|
3225
|
-
} & {
|
|
3226
|
-
' $fragmentRefs'?: {
|
|
3227
|
-
'PathPartFragmentFragment': PathPartFragmentFragment;
|
|
3228
|
-
};
|
|
3229
|
-
});
|
|
3230
|
-
} & {
|
|
3231
|
-
' $fragmentRefs'?: {
|
|
3232
|
-
'ContentExperienceFragmentFragment': ContentExperienceFragmentFragment;
|
|
3233
|
-
};
|
|
3234
|
-
})>;
|
|
3235
|
-
};
|
|
3236
|
-
export type CreateContentExperienceWithNewPathPartMutationVariables = Exact<{
|
|
3237
|
-
input: Array<CreateContentExperienceWithNewPathPartInput> | CreateContentExperienceWithNewPathPartInput;
|
|
3238
|
-
}>;
|
|
3239
|
-
export type CreateContentExperienceWithNewPathPartMutation = {
|
|
3240
|
-
__typename?: 'Mutation';
|
|
3241
|
-
createContentExperienceWithNewPathPart: Array<({
|
|
3242
|
-
__typename?: 'ContentExperience';
|
|
3243
|
-
pathPart: ({
|
|
3244
|
-
__typename?: 'PathPart';
|
|
3245
|
-
} & {
|
|
3246
|
-
' $fragmentRefs'?: {
|
|
3247
|
-
'PathPartFragmentFragment': PathPartFragmentFragment;
|
|
3248
|
-
};
|
|
3249
|
-
});
|
|
3250
|
-
} & {
|
|
3251
|
-
' $fragmentRefs'?: {
|
|
3252
|
-
'ContentExperienceFragmentFragment': ContentExperienceFragmentFragment;
|
|
3253
|
-
};
|
|
3254
|
-
})>;
|
|
3255
|
-
};
|
|
3256
|
-
export type RemoveContentExperienceMutationVariables = Exact<{
|
|
3257
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
3258
|
-
}>;
|
|
3259
|
-
export type RemoveContentExperienceMutation = {
|
|
3260
|
-
__typename?: 'Mutation';
|
|
3261
|
-
removeContentExperience: Array<{
|
|
3262
|
-
__typename?: 'RemoveContentExperienceResponse';
|
|
3263
|
-
slug: string;
|
|
3264
|
-
prn: any;
|
|
3265
|
-
title: string;
|
|
3266
|
-
createdAt: any;
|
|
3267
|
-
updatedAt: any;
|
|
3268
|
-
_id: any;
|
|
3269
|
-
}>;
|
|
3270
|
-
};
|
|
3271
|
-
export type SingleContentExperienceQueryVariables = Exact<{
|
|
3272
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
3273
|
-
}>;
|
|
3274
|
-
export type SingleContentExperienceQuery = {
|
|
3275
|
-
__typename?: 'Query';
|
|
3276
|
-
contentExperience: Array<({
|
|
3277
|
-
__typename?: 'ContentExperience';
|
|
3278
|
-
pathPart: ({
|
|
3279
|
-
__typename?: 'PathPart';
|
|
3280
|
-
channel: ({
|
|
3281
|
-
__typename?: 'Channel';
|
|
3282
|
-
theme: ({
|
|
3283
|
-
__typename?: 'Theme';
|
|
3284
|
-
} & {
|
|
3285
|
-
' $fragmentRefs'?: {
|
|
3286
|
-
'ThemeFragmentFragment': ThemeFragmentFragment;
|
|
3287
|
-
};
|
|
3288
|
-
});
|
|
3289
|
-
} & {
|
|
3290
|
-
' $fragmentRefs'?: {
|
|
3291
|
-
'ChannelFragmentFragment': ChannelFragmentFragment;
|
|
3292
|
-
};
|
|
3293
|
-
});
|
|
3294
|
-
} & {
|
|
3295
|
-
' $fragmentRefs'?: {
|
|
3296
|
-
'PathPartFragmentFragment': PathPartFragmentFragment;
|
|
3297
|
-
};
|
|
3298
|
-
});
|
|
3299
|
-
tags: Array<({
|
|
3300
|
-
__typename?: 'Tag';
|
|
3301
|
-
} & {
|
|
3302
|
-
' $fragmentRefs'?: {
|
|
3303
|
-
'TagFragmentFragment': TagFragmentFragment;
|
|
3304
|
-
};
|
|
3305
|
-
})>;
|
|
3306
|
-
experienceComponent: ({
|
|
3307
|
-
__typename?: 'ExperienceComponent';
|
|
3308
|
-
blueprintedBy?: {
|
|
3309
|
-
__typename?: 'ExperienceComponent';
|
|
3310
|
-
prn: any;
|
|
3311
|
-
blueprint?: ({
|
|
3312
|
-
__typename?: 'Blueprint';
|
|
3313
|
-
} & {
|
|
3314
|
-
' $fragmentRefs'?: {
|
|
3315
|
-
'BlueprintFragmentFragment': BlueprintFragmentFragment;
|
|
3316
|
-
};
|
|
3317
|
-
}) | null;
|
|
3318
|
-
} | null;
|
|
3319
|
-
buildingBlock: ({
|
|
3320
|
-
__typename?: 'BuildingBlock';
|
|
3321
|
-
buildingBlockFields: Array<({
|
|
3322
|
-
__typename?: 'BuildingBlockField';
|
|
3323
|
-
} & {
|
|
3324
|
-
' $fragmentRefs'?: {
|
|
3325
|
-
'BuildingBlockFieldFragmentFragment': BuildingBlockFieldFragmentFragment;
|
|
3326
|
-
};
|
|
3327
|
-
})>;
|
|
3328
|
-
} & {
|
|
3329
|
-
' $fragmentRefs'?: {
|
|
3330
|
-
'BuildingBlockFragmentFragment': BuildingBlockFragmentFragment;
|
|
3331
|
-
};
|
|
3332
|
-
});
|
|
3333
|
-
buildingBlockFieldFulfillments: Array<{
|
|
3334
|
-
__typename?: 'BuildingBlockFieldFulfillment';
|
|
3335
|
-
buildingBlockField: ({
|
|
3336
|
-
__typename?: 'BuildingBlockField';
|
|
3337
|
-
} & {
|
|
3338
|
-
' $fragmentRefs'?: {
|
|
3339
|
-
'BuildingBlockFieldFragmentFragment': BuildingBlockFieldFragmentFragment;
|
|
3340
|
-
};
|
|
3341
|
-
});
|
|
3342
|
-
contentValue: ({
|
|
3343
|
-
__typename?: 'ContentValue';
|
|
3344
|
-
contentItem?: {
|
|
3345
|
-
__typename?: 'ContentItem';
|
|
3346
|
-
prn: any;
|
|
3347
|
-
} | null;
|
|
3348
|
-
relatedAsset?: ({
|
|
3349
|
-
__typename?: 'Asset';
|
|
3350
|
-
} & {
|
|
3351
|
-
' $fragmentRefs'?: {
|
|
3352
|
-
'AssetFragmentFragment': AssetFragmentFragment;
|
|
3353
|
-
};
|
|
3354
|
-
}) | null;
|
|
3355
|
-
linkedPathPart?: ({
|
|
3356
|
-
__typename?: 'PathPart';
|
|
3357
|
-
} & {
|
|
3358
|
-
' $fragmentRefs'?: {
|
|
3359
|
-
'PathPartFragmentFragment': PathPartFragmentFragment;
|
|
3360
|
-
};
|
|
3361
|
-
}) | null;
|
|
3362
|
-
linkedGridPlacement?: ({
|
|
3363
|
-
__typename?: 'GridPlacement';
|
|
3364
|
-
experienceComponent: ({
|
|
3365
|
-
__typename?: 'ExperienceComponent';
|
|
3366
|
-
buildingBlock: ({
|
|
3367
|
-
__typename?: 'BuildingBlock';
|
|
3368
|
-
} & {
|
|
3369
|
-
' $fragmentRefs'?: {
|
|
3370
|
-
'BuildingBlockFragmentFragment': BuildingBlockFragmentFragment;
|
|
3371
|
-
};
|
|
3372
|
-
});
|
|
3373
|
-
} & {
|
|
3374
|
-
' $fragmentRefs'?: {
|
|
3375
|
-
'ExperienceComponentFragmentFragment': ExperienceComponentFragmentFragment;
|
|
3376
|
-
};
|
|
3377
|
-
});
|
|
3378
|
-
} & {
|
|
3379
|
-
' $fragmentRefs'?: {
|
|
3380
|
-
'GridPlacementFragmentFragment': GridPlacementFragmentFragment;
|
|
3381
|
-
};
|
|
3382
|
-
}) | null;
|
|
3383
|
-
relatedContentItem?: ({
|
|
3384
|
-
__typename?: 'ContentItem';
|
|
3385
|
-
contentType: ({
|
|
3386
|
-
__typename?: 'ContentType';
|
|
3387
|
-
contentFields: Array<({
|
|
3388
|
-
__typename?: 'ContentField';
|
|
3389
|
-
} & {
|
|
3390
|
-
' $fragmentRefs'?: {
|
|
3391
|
-
'ContentFieldFragmentFragment': ContentFieldFragmentFragment;
|
|
3392
|
-
};
|
|
3393
|
-
})>;
|
|
3394
|
-
} & {
|
|
3395
|
-
' $fragmentRefs'?: {
|
|
3396
|
-
'ContentTypeFragmentFragment': ContentTypeFragmentFragment;
|
|
3397
|
-
};
|
|
3398
|
-
});
|
|
3399
|
-
contentValues: Array<({
|
|
3400
|
-
__typename?: 'ContentValue';
|
|
3401
|
-
contentField?: ({
|
|
3402
|
-
__typename?: 'ContentField';
|
|
3403
|
-
} & {
|
|
3404
|
-
' $fragmentRefs'?: {
|
|
3405
|
-
'ContentFieldFragmentFragment': ContentFieldFragmentFragment;
|
|
3406
|
-
};
|
|
3407
|
-
}) | null;
|
|
3408
|
-
relatedAsset?: ({
|
|
3409
|
-
__typename?: 'Asset';
|
|
3410
|
-
} & {
|
|
3411
|
-
' $fragmentRefs'?: {
|
|
3412
|
-
'AssetFragmentFragment': AssetFragmentFragment;
|
|
3413
|
-
};
|
|
3414
|
-
}) | null;
|
|
3415
|
-
} & {
|
|
3416
|
-
' $fragmentRefs'?: {
|
|
3417
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
3418
|
-
};
|
|
3419
|
-
})>;
|
|
3420
|
-
} & {
|
|
3421
|
-
' $fragmentRefs'?: {
|
|
3422
|
-
'ContentItemFragmentFragment': ContentItemFragmentFragment;
|
|
3423
|
-
};
|
|
3424
|
-
}) | null;
|
|
3425
|
-
} & {
|
|
3426
|
-
' $fragmentRefs'?: {
|
|
3427
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
3428
|
-
};
|
|
3429
|
-
});
|
|
3430
|
-
}>;
|
|
3431
|
-
grid?: ({
|
|
3432
|
-
__typename?: 'Grid';
|
|
3433
|
-
gridPlacements: Array<({
|
|
3434
|
-
__typename?: 'GridPlacement';
|
|
3435
|
-
experienceComponent: ({
|
|
3436
|
-
__typename?: 'ExperienceComponent';
|
|
3437
|
-
buildingBlock: ({
|
|
3438
|
-
__typename?: 'BuildingBlock';
|
|
3439
|
-
buildingBlockFields: Array<({
|
|
3440
|
-
__typename?: 'BuildingBlockField';
|
|
3441
|
-
} & {
|
|
3442
|
-
' $fragmentRefs'?: {
|
|
3443
|
-
'BuildingBlockFieldFragmentFragment': BuildingBlockFieldFragmentFragment;
|
|
3444
|
-
};
|
|
3445
|
-
})>;
|
|
3446
|
-
} & {
|
|
3447
|
-
' $fragmentRefs'?: {
|
|
3448
|
-
'BuildingBlockFragmentFragment': BuildingBlockFragmentFragment;
|
|
3449
|
-
};
|
|
3450
|
-
});
|
|
3451
|
-
buildingBlockFieldFulfillments: Array<({
|
|
3452
|
-
__typename?: 'BuildingBlockFieldFulfillment';
|
|
3453
|
-
buildingBlockField: ({
|
|
3454
|
-
__typename?: 'BuildingBlockField';
|
|
3455
|
-
} & {
|
|
3456
|
-
' $fragmentRefs'?: {
|
|
3457
|
-
'BuildingBlockFieldFragmentFragment': BuildingBlockFieldFragmentFragment;
|
|
3458
|
-
};
|
|
3459
|
-
});
|
|
3460
|
-
contentValue: ({
|
|
3461
|
-
__typename?: 'ContentValue';
|
|
3462
|
-
contentItem?: {
|
|
3463
|
-
__typename?: 'ContentItem';
|
|
3464
|
-
prn: any;
|
|
3465
|
-
} | null;
|
|
3466
|
-
relatedAsset?: ({
|
|
3467
|
-
__typename?: 'Asset';
|
|
3468
|
-
} & {
|
|
3469
|
-
' $fragmentRefs'?: {
|
|
3470
|
-
'AssetFragmentFragment': AssetFragmentFragment;
|
|
3471
|
-
};
|
|
3472
|
-
}) | null;
|
|
3473
|
-
linkedPathPart?: ({
|
|
3474
|
-
__typename?: 'PathPart';
|
|
3475
|
-
} & {
|
|
3476
|
-
' $fragmentRefs'?: {
|
|
3477
|
-
'PathPartFragmentFragment': PathPartFragmentFragment;
|
|
3478
|
-
};
|
|
3479
|
-
}) | null;
|
|
3480
|
-
linkedGridPlacement?: ({
|
|
3481
|
-
__typename?: 'GridPlacement';
|
|
3482
|
-
experienceComponent: ({
|
|
3483
|
-
__typename?: 'ExperienceComponent';
|
|
3484
|
-
buildingBlock: ({
|
|
3485
|
-
__typename?: 'BuildingBlock';
|
|
3486
|
-
} & {
|
|
3487
|
-
' $fragmentRefs'?: {
|
|
3488
|
-
'BuildingBlockFragmentFragment': BuildingBlockFragmentFragment;
|
|
3489
|
-
};
|
|
3490
|
-
});
|
|
3491
|
-
} & {
|
|
3492
|
-
' $fragmentRefs'?: {
|
|
3493
|
-
'ExperienceComponentFragmentFragment': ExperienceComponentFragmentFragment;
|
|
3494
|
-
};
|
|
3495
|
-
});
|
|
3496
|
-
} & {
|
|
3497
|
-
' $fragmentRefs'?: {
|
|
3498
|
-
'GridPlacementFragmentFragment': GridPlacementFragmentFragment;
|
|
3499
|
-
};
|
|
3500
|
-
}) | null;
|
|
3501
|
-
relatedContentItem?: ({
|
|
3502
|
-
__typename?: 'ContentItem';
|
|
3503
|
-
contentType: ({
|
|
3504
|
-
__typename?: 'ContentType';
|
|
3505
|
-
contentFields: Array<({
|
|
3506
|
-
__typename?: 'ContentField';
|
|
3507
|
-
} & {
|
|
3508
|
-
' $fragmentRefs'?: {
|
|
3509
|
-
'ContentFieldFragmentFragment': ContentFieldFragmentFragment;
|
|
3510
|
-
};
|
|
3511
|
-
})>;
|
|
3512
|
-
} & {
|
|
3513
|
-
' $fragmentRefs'?: {
|
|
3514
|
-
'ContentTypeFragmentFragment': ContentTypeFragmentFragment;
|
|
3515
|
-
};
|
|
3516
|
-
});
|
|
3517
|
-
contentValues: Array<({
|
|
3518
|
-
__typename?: 'ContentValue';
|
|
3519
|
-
contentField?: ({
|
|
3520
|
-
__typename?: 'ContentField';
|
|
3521
|
-
} & {
|
|
3522
|
-
' $fragmentRefs'?: {
|
|
3523
|
-
'ContentFieldFragmentFragment': ContentFieldFragmentFragment;
|
|
3524
|
-
};
|
|
3525
|
-
}) | null;
|
|
3526
|
-
relatedAsset?: ({
|
|
3527
|
-
__typename?: 'Asset';
|
|
3528
|
-
} & {
|
|
3529
|
-
' $fragmentRefs'?: {
|
|
3530
|
-
'AssetFragmentFragment': AssetFragmentFragment;
|
|
3531
|
-
};
|
|
3532
|
-
}) | null;
|
|
3533
|
-
} & {
|
|
3534
|
-
' $fragmentRefs'?: {
|
|
3535
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
3536
|
-
};
|
|
3537
|
-
})>;
|
|
3538
|
-
} & {
|
|
3539
|
-
' $fragmentRefs'?: {
|
|
3540
|
-
'ContentItemFragmentFragment': ContentItemFragmentFragment;
|
|
3541
|
-
};
|
|
3542
|
-
}) | null;
|
|
3543
|
-
} & {
|
|
3544
|
-
' $fragmentRefs'?: {
|
|
3545
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
3546
|
-
};
|
|
3547
|
-
});
|
|
3548
|
-
} & {
|
|
3549
|
-
' $fragmentRefs'?: {
|
|
3550
|
-
'BuildingBlockFieldFulfillmentFragmentFragment': BuildingBlockFieldFulfillmentFragmentFragment;
|
|
3551
|
-
};
|
|
3552
|
-
})>;
|
|
3553
|
-
} & {
|
|
3554
|
-
' $fragmentRefs'?: {
|
|
3555
|
-
'ExperienceComponentFragmentFragment': ExperienceComponentFragmentFragment;
|
|
3556
|
-
};
|
|
3557
|
-
});
|
|
3558
|
-
} & {
|
|
3559
|
-
' $fragmentRefs'?: {
|
|
3560
|
-
'GridPlacementFragmentFragment': GridPlacementFragmentFragment;
|
|
3561
|
-
};
|
|
3562
|
-
})>;
|
|
3563
|
-
} & {
|
|
3564
|
-
' $fragmentRefs'?: {
|
|
3565
|
-
'GridFragmentFragment': GridFragmentFragment;
|
|
3566
|
-
};
|
|
3567
|
-
}) | null;
|
|
3568
|
-
} & {
|
|
3569
|
-
' $fragmentRefs'?: {
|
|
3570
|
-
'ExperienceComponentFragmentFragment': ExperienceComponentFragmentFragment;
|
|
3571
|
-
};
|
|
3572
|
-
});
|
|
3573
|
-
} & {
|
|
3574
|
-
' $fragmentRefs'?: {
|
|
3575
|
-
'ContentExperienceFragmentFragment': ContentExperienceFragmentFragment;
|
|
3576
|
-
};
|
|
3577
|
-
})>;
|
|
3578
|
-
};
|
|
3579
|
-
export type SingleContentExperienceWithPathPartQueryVariables = Exact<{
|
|
3580
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
3581
|
-
}>;
|
|
3582
|
-
export type SingleContentExperienceWithPathPartQuery = {
|
|
3583
|
-
__typename?: 'Query';
|
|
3584
|
-
contentExperience: Array<({
|
|
3585
|
-
__typename?: 'ContentExperience';
|
|
3586
|
-
pathPart: ({
|
|
3587
|
-
__typename?: 'PathPart';
|
|
3588
|
-
channel: ({
|
|
3589
|
-
__typename?: 'Channel';
|
|
3590
|
-
theme: ({
|
|
3591
|
-
__typename?: 'Theme';
|
|
3592
|
-
} & {
|
|
3593
|
-
' $fragmentRefs'?: {
|
|
3594
|
-
'ThemeFragmentFragment': ThemeFragmentFragment;
|
|
3595
|
-
};
|
|
3596
|
-
});
|
|
3597
|
-
} & {
|
|
3598
|
-
' $fragmentRefs'?: {
|
|
3599
|
-
'ChannelFragmentFragment': ChannelFragmentFragment;
|
|
3600
|
-
};
|
|
3601
|
-
});
|
|
3602
|
-
} & {
|
|
3603
|
-
' $fragmentRefs'?: {
|
|
3604
|
-
'PathPartFragmentFragment': PathPartFragmentFragment;
|
|
3605
|
-
};
|
|
3606
|
-
});
|
|
3607
|
-
} & {
|
|
3608
|
-
' $fragmentRefs'?: {
|
|
3609
|
-
'ContentExperienceFragmentFragment': ContentExperienceFragmentFragment;
|
|
3610
|
-
};
|
|
3611
|
-
})>;
|
|
3612
|
-
};
|
|
3613
|
-
export type UpdateContentExperienceMutationVariables = Exact<{
|
|
3614
|
-
input: Array<UpdateContentExperienceInput> | UpdateContentExperienceInput;
|
|
3615
|
-
}>;
|
|
3616
|
-
export type UpdateContentExperienceMutation = {
|
|
3617
|
-
__typename?: 'Mutation';
|
|
3618
|
-
updateContentExperience: Array<({
|
|
3619
|
-
__typename?: 'ContentExperience';
|
|
3620
|
-
tags: Array<({
|
|
3621
|
-
__typename?: 'Tag';
|
|
3622
|
-
} & {
|
|
3623
|
-
' $fragmentRefs'?: {
|
|
3624
|
-
'TagFragmentFragment': TagFragmentFragment;
|
|
3625
|
-
};
|
|
3626
|
-
})>;
|
|
3627
|
-
pathPart: ({
|
|
3628
|
-
__typename?: 'PathPart';
|
|
3629
|
-
} & {
|
|
3630
|
-
' $fragmentRefs'?: {
|
|
3631
|
-
'PathPartFragmentFragment': PathPartFragmentFragment;
|
|
3632
|
-
};
|
|
3633
|
-
});
|
|
3634
|
-
} & {
|
|
3635
|
-
' $fragmentRefs'?: {
|
|
3636
|
-
'ContentExperienceFragmentFragment': ContentExperienceFragmentFragment;
|
|
3637
|
-
};
|
|
3638
|
-
})>;
|
|
3639
|
-
};
|
|
3640
|
-
export type ContentFieldFragmentFragment = {
|
|
3641
|
-
__typename?: 'ContentField';
|
|
3642
|
-
prn: any;
|
|
3643
|
-
name: string;
|
|
3644
|
-
createdAt: any;
|
|
3645
|
-
updatedAt: any;
|
|
3646
|
-
_id: any;
|
|
3647
|
-
} & {
|
|
3648
|
-
' $fragmentName'?: 'ContentFieldFragmentFragment';
|
|
3649
|
-
};
|
|
3650
|
-
export type ContentFieldsQueryVariables = Exact<{
|
|
3651
|
-
paginate: PaginationOptionsInput;
|
|
3652
|
-
where?: InputMaybe<Array<ContentFieldsFilterInput> | ContentFieldsFilterInput>;
|
|
3653
|
-
orderBy: OrderOptionsInput;
|
|
3654
|
-
}>;
|
|
3655
|
-
export type ContentFieldsQuery = {
|
|
3656
|
-
__typename?: 'Query';
|
|
3657
|
-
contentFields: {
|
|
3658
|
-
__typename?: 'ContentFieldsConnection';
|
|
3659
|
-
totalCount: number;
|
|
3660
|
-
pageInfo: ({
|
|
3661
|
-
__typename?: 'PageInfo';
|
|
3662
|
-
} & {
|
|
3663
|
-
' $fragmentRefs'?: {
|
|
3664
|
-
'PaginationFragment': PaginationFragment;
|
|
3665
|
-
};
|
|
3666
|
-
});
|
|
3667
|
-
edges: Array<{
|
|
3668
|
-
__typename?: 'ContentFieldEdge';
|
|
3669
|
-
cursor: string;
|
|
3670
|
-
node: ({
|
|
3671
|
-
__typename?: 'ContentField';
|
|
3672
|
-
} & {
|
|
3673
|
-
' $fragmentRefs'?: {
|
|
3674
|
-
'ContentFieldFragmentFragment': ContentFieldFragmentFragment;
|
|
3675
|
-
};
|
|
3676
|
-
});
|
|
3677
|
-
}>;
|
|
3678
|
-
};
|
|
3679
|
-
};
|
|
3680
|
-
export type CreateContentFieldMutationVariables = Exact<{
|
|
3681
|
-
input: Array<CreateContentFieldInput> | CreateContentFieldInput;
|
|
3682
|
-
}>;
|
|
3683
|
-
export type CreateContentFieldMutation = {
|
|
3684
|
-
__typename?: 'Mutation';
|
|
3685
|
-
createContentField: Array<({
|
|
3686
|
-
__typename?: 'ContentField';
|
|
3687
|
-
} & {
|
|
3688
|
-
' $fragmentRefs'?: {
|
|
3689
|
-
'ContentFieldFragmentFragment': ContentFieldFragmentFragment;
|
|
3690
|
-
};
|
|
3691
|
-
})>;
|
|
3692
|
-
};
|
|
3693
|
-
export type RemoveContentFieldMutationVariables = Exact<{
|
|
3694
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
3695
|
-
}>;
|
|
3696
|
-
export type RemoveContentFieldMutation = {
|
|
3697
|
-
__typename?: 'Mutation';
|
|
3698
|
-
removeContentField: Array<{
|
|
3699
|
-
__typename?: 'ContentField';
|
|
3700
|
-
prn: any;
|
|
3701
|
-
}>;
|
|
3702
|
-
};
|
|
3703
|
-
export type UpdateContentFieldMutationVariables = Exact<{
|
|
3704
|
-
input: Array<UpdateContentFieldInput> | UpdateContentFieldInput;
|
|
3705
|
-
}>;
|
|
3706
|
-
export type UpdateContentFieldMutation = {
|
|
3707
|
-
__typename?: 'Mutation';
|
|
3708
|
-
updateContentField: Array<({
|
|
3709
|
-
__typename?: 'ContentField';
|
|
3710
|
-
} & {
|
|
3711
|
-
' $fragmentRefs'?: {
|
|
3712
|
-
'ContentFieldFragmentFragment': ContentFieldFragmentFragment;
|
|
3713
|
-
};
|
|
3714
|
-
})>;
|
|
3715
|
-
};
|
|
3716
|
-
export type AllContentItemsQueryVariables = Exact<{
|
|
3717
|
-
paginate: PaginationOptionsInput;
|
|
3718
|
-
where?: InputMaybe<Array<ContentItemsFilterInput> | ContentItemsFilterInput>;
|
|
3719
|
-
orderBy?: InputMaybe<OrderOptionsInput>;
|
|
3720
|
-
optionsList: Array<ProcessedAssetOptionsInput> | ProcessedAssetOptionsInput;
|
|
3721
|
-
}>;
|
|
3722
|
-
export type AllContentItemsQuery = {
|
|
3723
|
-
__typename?: 'Query';
|
|
3724
|
-
contentItems: {
|
|
3725
|
-
__typename?: 'ContentItemsConnection';
|
|
3726
|
-
totalCount: number;
|
|
3727
|
-
pageInfo: ({
|
|
3728
|
-
__typename?: 'PageInfo';
|
|
3729
|
-
} & {
|
|
3730
|
-
' $fragmentRefs'?: {
|
|
3731
|
-
'PaginationFragment': PaginationFragment;
|
|
3732
|
-
};
|
|
3733
|
-
});
|
|
3734
|
-
edges: Array<{
|
|
3735
|
-
__typename?: 'ContentItemEdge';
|
|
3736
|
-
cursor: string;
|
|
3737
|
-
node: ({
|
|
3738
|
-
__typename?: 'ContentItem';
|
|
3739
|
-
displayImage?: ({
|
|
3740
|
-
__typename?: 'Asset';
|
|
3741
|
-
processedUrls?: Array<string> | null;
|
|
3742
|
-
} & {
|
|
3743
|
-
' $fragmentRefs'?: {
|
|
3744
|
-
'AssetFragmentFragment': AssetFragmentFragment;
|
|
3745
|
-
};
|
|
3746
|
-
}) | null;
|
|
3747
|
-
contentValues: Array<({
|
|
3748
|
-
__typename?: 'ContentValue';
|
|
3749
|
-
contentField?: ({
|
|
3750
|
-
__typename?: 'ContentField';
|
|
3751
|
-
contentValidationRules: Array<({
|
|
3752
|
-
__typename?: 'ContentValidationRule';
|
|
3753
|
-
} & {
|
|
3754
|
-
' $fragmentRefs'?: {
|
|
3755
|
-
'ContentValidationRuleFragmentFragment': ContentValidationRuleFragmentFragment;
|
|
3756
|
-
};
|
|
3757
|
-
})>;
|
|
3758
|
-
} & {
|
|
3759
|
-
' $fragmentRefs'?: {
|
|
3760
|
-
'ContentFieldFragmentFragment': ContentFieldFragmentFragment;
|
|
3761
|
-
};
|
|
3762
|
-
}) | null;
|
|
3763
|
-
relatedAsset?: ({
|
|
3764
|
-
__typename?: 'Asset';
|
|
3765
|
-
} & {
|
|
3766
|
-
' $fragmentRefs'?: {
|
|
3767
|
-
'AssetFragmentFragment': AssetFragmentFragment;
|
|
3768
|
-
};
|
|
3769
|
-
}) | null;
|
|
3770
|
-
relatedContentItem?: ({
|
|
3771
|
-
__typename?: 'ContentItem';
|
|
3772
|
-
contentValues: Array<({
|
|
3773
|
-
__typename?: 'ContentValue';
|
|
3774
|
-
} & {
|
|
3775
|
-
' $fragmentRefs'?: {
|
|
3776
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
3777
|
-
};
|
|
3778
|
-
})>;
|
|
3779
|
-
} & {
|
|
3780
|
-
' $fragmentRefs'?: {
|
|
3781
|
-
'ContentItemFragmentFragment': ContentItemFragmentFragment;
|
|
3782
|
-
};
|
|
3783
|
-
}) | null;
|
|
3784
|
-
} & {
|
|
3785
|
-
' $fragmentRefs'?: {
|
|
3786
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
3787
|
-
};
|
|
3788
|
-
})>;
|
|
3789
|
-
contentType: ({
|
|
3790
|
-
__typename?: 'ContentType';
|
|
3791
|
-
contentFields: Array<({
|
|
3792
|
-
__typename?: 'ContentField';
|
|
3793
|
-
} & {
|
|
3794
|
-
' $fragmentRefs'?: {
|
|
3795
|
-
'ContentFieldFragmentFragment': ContentFieldFragmentFragment;
|
|
3796
|
-
};
|
|
3797
|
-
})>;
|
|
3798
|
-
} & {
|
|
3799
|
-
' $fragmentRefs'?: {
|
|
3800
|
-
'ContentTypeFragmentFragment': ContentTypeFragmentFragment;
|
|
3801
|
-
};
|
|
3802
|
-
});
|
|
3803
|
-
tags: Array<({
|
|
3804
|
-
__typename?: 'Tag';
|
|
3805
|
-
} & {
|
|
3806
|
-
' $fragmentRefs'?: {
|
|
3807
|
-
'TagFragmentFragment': TagFragmentFragment;
|
|
3808
|
-
};
|
|
3809
|
-
})>;
|
|
3810
|
-
} & {
|
|
3811
|
-
' $fragmentRefs'?: {
|
|
3812
|
-
'ContentItemFragmentFragment': ContentItemFragmentFragment;
|
|
3813
|
-
};
|
|
3814
|
-
});
|
|
3815
|
-
}>;
|
|
3816
|
-
};
|
|
3817
|
-
};
|
|
3818
|
-
export type ContentItemFragmentFragment = {
|
|
3819
|
-
__typename?: 'ContentItem';
|
|
3820
|
-
prn: any;
|
|
3821
|
-
isDraft: boolean;
|
|
3822
|
-
displayName: string;
|
|
3823
|
-
updatedAt: any;
|
|
3824
|
-
createdAt: any;
|
|
3825
|
-
_id: any;
|
|
3826
|
-
displayImage?: ({
|
|
3827
|
-
__typename?: 'Asset';
|
|
3828
|
-
} & {
|
|
3829
|
-
' $fragmentRefs'?: {
|
|
3830
|
-
'AssetFragmentFragment': AssetFragmentFragment;
|
|
3831
|
-
};
|
|
3832
|
-
}) | null;
|
|
3833
|
-
} & {
|
|
3834
|
-
' $fragmentName'?: 'ContentItemFragmentFragment';
|
|
3835
|
-
};
|
|
3836
|
-
export type CreateContentItemMutationVariables = Exact<{
|
|
3837
|
-
createContentItemInput: Array<CreateContentItemInput> | CreateContentItemInput;
|
|
3838
|
-
}>;
|
|
3839
|
-
export type CreateContentItemMutation = {
|
|
3840
|
-
__typename?: 'Mutation';
|
|
3841
|
-
createContentItem: Array<({
|
|
3842
|
-
__typename?: 'ContentItem';
|
|
3843
|
-
contentValues: Array<({
|
|
3844
|
-
__typename?: 'ContentValue';
|
|
3845
|
-
contentField?: ({
|
|
3846
|
-
__typename?: 'ContentField';
|
|
3847
|
-
} & {
|
|
3848
|
-
' $fragmentRefs'?: {
|
|
3849
|
-
'ContentFieldFragmentFragment': ContentFieldFragmentFragment;
|
|
3850
|
-
};
|
|
3851
|
-
}) | null;
|
|
3852
|
-
relatedContentItem?: ({
|
|
3853
|
-
__typename?: 'ContentItem';
|
|
3854
|
-
contentValues: Array<({
|
|
3855
|
-
__typename?: 'ContentValue';
|
|
3856
|
-
} & {
|
|
3857
|
-
' $fragmentRefs'?: {
|
|
3858
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
3859
|
-
};
|
|
3860
|
-
})>;
|
|
3861
|
-
} & {
|
|
3862
|
-
' $fragmentRefs'?: {
|
|
3863
|
-
'ContentItemFragmentFragment': ContentItemFragmentFragment;
|
|
3864
|
-
};
|
|
3865
|
-
}) | null;
|
|
3866
|
-
} & {
|
|
3867
|
-
' $fragmentRefs'?: {
|
|
3868
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
3869
|
-
};
|
|
3870
|
-
})>;
|
|
3871
|
-
contentType: ({
|
|
3872
|
-
__typename?: 'ContentType';
|
|
3873
|
-
contentFields: Array<({
|
|
3874
|
-
__typename?: 'ContentField';
|
|
3875
|
-
contentValidationRules: Array<{
|
|
3876
|
-
__typename?: 'ContentValidationRule';
|
|
3877
|
-
prn: any;
|
|
3878
|
-
ruleType: RuleType;
|
|
3879
|
-
settings: {
|
|
3880
|
-
__typename?: 'AllowedValuesContentValidationRuleSettings';
|
|
3881
|
-
allowedValues: Array<any>;
|
|
3882
|
-
} | {
|
|
3883
|
-
__typename?: 'CountContentValidationRuleSettings';
|
|
3884
|
-
min: number;
|
|
3885
|
-
max: number;
|
|
3886
|
-
} | {
|
|
3887
|
-
__typename?: 'DateBetweenContentValidationRuleSettings';
|
|
3888
|
-
start: string;
|
|
3889
|
-
end: string;
|
|
3890
|
-
} | {
|
|
3891
|
-
__typename?: 'DecimalCountContentValidationRuleSettings';
|
|
3892
|
-
max: number;
|
|
3893
|
-
} | {
|
|
3894
|
-
__typename?: 'NumberBetweenContentValidationRuleSettings';
|
|
3895
|
-
min: number;
|
|
3896
|
-
max: number;
|
|
3897
|
-
} | {
|
|
3898
|
-
__typename?: 'RelatableContentTypesContentValidationRuleSettings';
|
|
3899
|
-
allowedContentTypes: Array<any>;
|
|
3900
|
-
} | {
|
|
3901
|
-
__typename?: 'StringFormatContentValidationRuleSettings';
|
|
3902
|
-
allowedFormat: string;
|
|
3903
|
-
} | {
|
|
3904
|
-
__typename?: 'ValueTypeContentValidationRuleSettings';
|
|
3905
|
-
allowedTypes: Array<ContentValueTypeNames>;
|
|
3906
|
-
};
|
|
3907
|
-
}>;
|
|
3908
|
-
} & {
|
|
3909
|
-
' $fragmentRefs'?: {
|
|
3910
|
-
'ContentFieldFragmentFragment': ContentFieldFragmentFragment;
|
|
3911
|
-
};
|
|
3912
|
-
})>;
|
|
3913
|
-
} & {
|
|
3914
|
-
' $fragmentRefs'?: {
|
|
3915
|
-
'ContentTypeFragmentFragment': ContentTypeFragmentFragment;
|
|
3916
|
-
};
|
|
3917
|
-
});
|
|
3918
|
-
} & {
|
|
3919
|
-
' $fragmentRefs'?: {
|
|
3920
|
-
'ContentItemFragmentFragment': ContentItemFragmentFragment;
|
|
3921
|
-
};
|
|
3922
|
-
})>;
|
|
3923
|
-
};
|
|
3924
|
-
export type RemoveContentItemMutationVariables = Exact<{
|
|
3925
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
3926
|
-
}>;
|
|
3927
|
-
export type RemoveContentItemMutation = {
|
|
3928
|
-
__typename?: 'Mutation';
|
|
3929
|
-
removeContentItem: Array<({
|
|
3930
|
-
__typename?: 'ContentItem';
|
|
3931
|
-
} & {
|
|
3932
|
-
' $fragmentRefs'?: {
|
|
3933
|
-
'ContentItemFragmentFragment': ContentItemFragmentFragment;
|
|
3934
|
-
};
|
|
3935
|
-
})>;
|
|
3936
|
-
};
|
|
3937
|
-
export type SingleContentItemQueryVariables = Exact<{
|
|
3938
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
3939
|
-
}>;
|
|
3940
|
-
export type SingleContentItemQuery = {
|
|
3941
|
-
__typename?: 'Query';
|
|
3942
|
-
contentItem: Array<({
|
|
3943
|
-
__typename?: 'ContentItem';
|
|
3944
|
-
tags: Array<({
|
|
3945
|
-
__typename?: 'Tag';
|
|
3946
|
-
} & {
|
|
3947
|
-
' $fragmentRefs'?: {
|
|
3948
|
-
'TagFragmentFragment': TagFragmentFragment;
|
|
3949
|
-
};
|
|
3950
|
-
})>;
|
|
3951
|
-
contentValues: Array<({
|
|
3952
|
-
__typename?: 'ContentValue';
|
|
3953
|
-
relatedContentItem?: ({
|
|
3954
|
-
__typename?: 'ContentItem';
|
|
3955
|
-
contentValues: Array<({
|
|
3956
|
-
__typename?: 'ContentValue';
|
|
3957
|
-
} & {
|
|
3958
|
-
' $fragmentRefs'?: {
|
|
3959
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
3960
|
-
};
|
|
3961
|
-
})>;
|
|
3962
|
-
} & {
|
|
3963
|
-
' $fragmentRefs'?: {
|
|
3964
|
-
'ContentItemFragmentFragment': ContentItemFragmentFragment;
|
|
3965
|
-
};
|
|
3966
|
-
}) | null;
|
|
3967
|
-
relatedAsset?: ({
|
|
3968
|
-
__typename?: 'Asset';
|
|
3969
|
-
} & {
|
|
3970
|
-
' $fragmentRefs'?: {
|
|
3971
|
-
'AssetFragmentFragment': AssetFragmentFragment;
|
|
3972
|
-
};
|
|
3973
|
-
}) | null;
|
|
3974
|
-
contentField?: ({
|
|
3975
|
-
__typename?: 'ContentField';
|
|
3976
|
-
} & {
|
|
3977
|
-
' $fragmentRefs'?: {
|
|
3978
|
-
'ContentFieldFragmentFragment': ContentFieldFragmentFragment;
|
|
3979
|
-
};
|
|
3980
|
-
}) | null;
|
|
3981
|
-
linkedPathPart?: ({
|
|
3982
|
-
__typename?: 'PathPart';
|
|
3983
|
-
} & {
|
|
3984
|
-
' $fragmentRefs'?: {
|
|
3985
|
-
'PathPartFragmentFragment': PathPartFragmentFragment;
|
|
3986
|
-
};
|
|
3987
|
-
}) | null;
|
|
3988
|
-
linkedGridPlacement?: ({
|
|
3989
|
-
__typename?: 'GridPlacement';
|
|
3990
|
-
experienceComponent: ({
|
|
3991
|
-
__typename?: 'ExperienceComponent';
|
|
3992
|
-
buildingBlock: ({
|
|
3993
|
-
__typename?: 'BuildingBlock';
|
|
3994
|
-
} & {
|
|
3995
|
-
' $fragmentRefs'?: {
|
|
3996
|
-
'BuildingBlockFragmentFragment': BuildingBlockFragmentFragment;
|
|
3997
|
-
};
|
|
3998
|
-
});
|
|
3999
|
-
} & {
|
|
4000
|
-
' $fragmentRefs'?: {
|
|
4001
|
-
'ExperienceComponentFragmentFragment': ExperienceComponentFragmentFragment;
|
|
4002
|
-
};
|
|
4003
|
-
});
|
|
4004
|
-
} & {
|
|
4005
|
-
' $fragmentRefs'?: {
|
|
4006
|
-
'GridPlacementFragmentFragment': GridPlacementFragmentFragment;
|
|
4007
|
-
};
|
|
4008
|
-
}) | null;
|
|
4009
|
-
} & {
|
|
4010
|
-
' $fragmentRefs'?: {
|
|
4011
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
4012
|
-
};
|
|
4013
|
-
})>;
|
|
4014
|
-
contentType: ({
|
|
4015
|
-
__typename?: 'ContentType';
|
|
4016
|
-
contentFields: Array<({
|
|
4017
|
-
__typename?: 'ContentField';
|
|
4018
|
-
contentValidationRules: Array<{
|
|
4019
|
-
__typename?: 'ContentValidationRule';
|
|
4020
|
-
prn: any;
|
|
4021
|
-
ruleType: RuleType;
|
|
4022
|
-
settings: {
|
|
4023
|
-
__typename?: 'AllowedValuesContentValidationRuleSettings';
|
|
4024
|
-
allowedValues: Array<any>;
|
|
4025
|
-
} | {
|
|
4026
|
-
__typename?: 'CountContentValidationRuleSettings';
|
|
4027
|
-
min: number;
|
|
4028
|
-
max: number;
|
|
4029
|
-
} | {
|
|
4030
|
-
__typename?: 'DateBetweenContentValidationRuleSettings';
|
|
4031
|
-
start: string;
|
|
4032
|
-
end: string;
|
|
4033
|
-
} | {
|
|
4034
|
-
__typename?: 'DecimalCountContentValidationRuleSettings';
|
|
4035
|
-
max: number;
|
|
4036
|
-
} | {
|
|
4037
|
-
__typename?: 'NumberBetweenContentValidationRuleSettings';
|
|
4038
|
-
min: number;
|
|
4039
|
-
max: number;
|
|
4040
|
-
} | {
|
|
4041
|
-
__typename?: 'RelatableContentTypesContentValidationRuleSettings';
|
|
4042
|
-
allowedContentTypes: Array<any>;
|
|
4043
|
-
} | {
|
|
4044
|
-
__typename?: 'StringFormatContentValidationRuleSettings';
|
|
4045
|
-
allowedFormat: string;
|
|
4046
|
-
} | {
|
|
4047
|
-
__typename?: 'ValueTypeContentValidationRuleSettings';
|
|
4048
|
-
allowedTypes: Array<ContentValueTypeNames>;
|
|
4049
|
-
};
|
|
4050
|
-
}>;
|
|
4051
|
-
} & {
|
|
4052
|
-
' $fragmentRefs'?: {
|
|
4053
|
-
'ContentFieldFragmentFragment': ContentFieldFragmentFragment;
|
|
4054
|
-
};
|
|
4055
|
-
})>;
|
|
4056
|
-
} & {
|
|
4057
|
-
' $fragmentRefs'?: {
|
|
4058
|
-
'ContentTypeFragmentFragment': ContentTypeFragmentFragment;
|
|
4059
|
-
};
|
|
4060
|
-
});
|
|
4061
|
-
} & {
|
|
4062
|
-
' $fragmentRefs'?: {
|
|
4063
|
-
'ContentItemFragmentFragment': ContentItemFragmentFragment;
|
|
4064
|
-
};
|
|
4065
|
-
})>;
|
|
4066
|
-
};
|
|
4067
|
-
export type UpdateContentItemMutationVariables = Exact<{
|
|
4068
|
-
updateContentItemInput: Array<UpdateContentItemInput> | UpdateContentItemInput;
|
|
4069
|
-
}>;
|
|
4070
|
-
export type UpdateContentItemMutation = {
|
|
4071
|
-
__typename?: 'Mutation';
|
|
4072
|
-
updateContentItem: Array<({
|
|
4073
|
-
__typename?: 'ContentItem';
|
|
4074
|
-
contentValues: Array<({
|
|
4075
|
-
__typename?: 'ContentValue';
|
|
4076
|
-
relatedContentItem?: ({
|
|
4077
|
-
__typename?: 'ContentItem';
|
|
4078
|
-
contentValues: Array<({
|
|
4079
|
-
__typename?: 'ContentValue';
|
|
4080
|
-
} & {
|
|
4081
|
-
' $fragmentRefs'?: {
|
|
4082
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
4083
|
-
};
|
|
4084
|
-
})>;
|
|
4085
|
-
} & {
|
|
4086
|
-
' $fragmentRefs'?: {
|
|
4087
|
-
'ContentItemFragmentFragment': ContentItemFragmentFragment;
|
|
4088
|
-
};
|
|
4089
|
-
}) | null;
|
|
4090
|
-
} & {
|
|
4091
|
-
' $fragmentRefs'?: {
|
|
4092
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
4093
|
-
};
|
|
4094
|
-
})>;
|
|
4095
|
-
tags: Array<({
|
|
4096
|
-
__typename?: 'Tag';
|
|
4097
|
-
} & {
|
|
4098
|
-
' $fragmentRefs'?: {
|
|
4099
|
-
'TagFragmentFragment': TagFragmentFragment;
|
|
4100
|
-
};
|
|
4101
|
-
})>;
|
|
4102
|
-
contentType: ({
|
|
4103
|
-
__typename?: 'ContentType';
|
|
4104
|
-
contentFields: Array<({
|
|
4105
|
-
__typename?: 'ContentField';
|
|
4106
|
-
contentValidationRules: Array<{
|
|
4107
|
-
__typename?: 'ContentValidationRule';
|
|
4108
|
-
prn: any;
|
|
4109
|
-
ruleType: RuleType;
|
|
4110
|
-
settings: {
|
|
4111
|
-
__typename?: 'AllowedValuesContentValidationRuleSettings';
|
|
4112
|
-
allowedValues: Array<any>;
|
|
4113
|
-
} | {
|
|
4114
|
-
__typename?: 'CountContentValidationRuleSettings';
|
|
4115
|
-
min: number;
|
|
4116
|
-
max: number;
|
|
4117
|
-
} | {
|
|
4118
|
-
__typename?: 'DateBetweenContentValidationRuleSettings';
|
|
4119
|
-
start: string;
|
|
4120
|
-
end: string;
|
|
4121
|
-
} | {
|
|
4122
|
-
__typename?: 'DecimalCountContentValidationRuleSettings';
|
|
4123
|
-
max: number;
|
|
4124
|
-
} | {
|
|
4125
|
-
__typename?: 'NumberBetweenContentValidationRuleSettings';
|
|
4126
|
-
min: number;
|
|
4127
|
-
max: number;
|
|
4128
|
-
} | {
|
|
4129
|
-
__typename?: 'RelatableContentTypesContentValidationRuleSettings';
|
|
4130
|
-
allowedContentTypes: Array<any>;
|
|
4131
|
-
} | {
|
|
4132
|
-
__typename?: 'StringFormatContentValidationRuleSettings';
|
|
4133
|
-
allowedFormat: string;
|
|
4134
|
-
} | {
|
|
4135
|
-
__typename?: 'ValueTypeContentValidationRuleSettings';
|
|
4136
|
-
allowedTypes: Array<ContentValueTypeNames>;
|
|
4137
|
-
};
|
|
4138
|
-
}>;
|
|
4139
|
-
} & {
|
|
4140
|
-
' $fragmentRefs'?: {
|
|
4141
|
-
'ContentFieldFragmentFragment': ContentFieldFragmentFragment;
|
|
4142
|
-
};
|
|
4143
|
-
})>;
|
|
4144
|
-
} & {
|
|
4145
|
-
' $fragmentRefs'?: {
|
|
4146
|
-
'ContentTypeFragmentFragment': ContentTypeFragmentFragment;
|
|
4147
|
-
};
|
|
4148
|
-
});
|
|
4149
|
-
} & {
|
|
4150
|
-
' $fragmentRefs'?: {
|
|
4151
|
-
'ContentItemFragmentFragment': ContentItemFragmentFragment;
|
|
4152
|
-
};
|
|
4153
|
-
})>;
|
|
4154
|
-
};
|
|
4155
|
-
export type AllContentTypesQueryVariables = Exact<{
|
|
4156
|
-
paginate: PaginationOptionsInput;
|
|
4157
|
-
where?: InputMaybe<Array<ContentTypesFilterInput> | ContentTypesFilterInput>;
|
|
4158
|
-
orderBy: OrderOptionsInput;
|
|
4159
|
-
}>;
|
|
4160
|
-
export type AllContentTypesQuery = {
|
|
4161
|
-
__typename?: 'Query';
|
|
4162
|
-
contentTypes: {
|
|
4163
|
-
__typename?: 'ContentTypesConnection';
|
|
4164
|
-
totalCount: number;
|
|
4165
|
-
pageInfo: ({
|
|
4166
|
-
__typename?: 'PageInfo';
|
|
4167
|
-
} & {
|
|
4168
|
-
' $fragmentRefs'?: {
|
|
4169
|
-
'PaginationFragment': PaginationFragment;
|
|
4170
|
-
};
|
|
4171
|
-
});
|
|
4172
|
-
edges: Array<{
|
|
4173
|
-
__typename?: 'ContentTypeEdge';
|
|
4174
|
-
cursor: string;
|
|
4175
|
-
node: ({
|
|
4176
|
-
__typename?: 'ContentType';
|
|
4177
|
-
contentFields: Array<({
|
|
4178
|
-
__typename?: 'ContentField';
|
|
4179
|
-
contentValidationRules: Array<({
|
|
4180
|
-
__typename?: 'ContentValidationRule';
|
|
4181
|
-
} & {
|
|
4182
|
-
' $fragmentRefs'?: {
|
|
4183
|
-
'ContentValidationRuleFragmentFragment': ContentValidationRuleFragmentFragment;
|
|
4184
|
-
};
|
|
4185
|
-
})>;
|
|
4186
|
-
} & {
|
|
4187
|
-
' $fragmentRefs'?: {
|
|
4188
|
-
'ContentFieldFragmentFragment': ContentFieldFragmentFragment;
|
|
4189
|
-
};
|
|
4190
|
-
})>;
|
|
4191
|
-
} & {
|
|
4192
|
-
' $fragmentRefs'?: {
|
|
4193
|
-
'ContentTypeFragmentFragment': ContentTypeFragmentFragment;
|
|
4194
|
-
};
|
|
4195
|
-
});
|
|
4196
|
-
}>;
|
|
4197
|
-
};
|
|
4198
|
-
};
|
|
4199
|
-
export type ContentTypeQueryVariables = Exact<{
|
|
4200
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
4201
|
-
}>;
|
|
4202
|
-
export type ContentTypeQuery = {
|
|
4203
|
-
__typename?: 'Query';
|
|
4204
|
-
contentType: Array<({
|
|
4205
|
-
__typename?: 'ContentType';
|
|
4206
|
-
contentFields: Array<({
|
|
4207
|
-
__typename?: 'ContentField';
|
|
4208
|
-
contentValidationRules: Array<({
|
|
4209
|
-
__typename?: 'ContentValidationRule';
|
|
4210
|
-
} & {
|
|
4211
|
-
' $fragmentRefs'?: {
|
|
4212
|
-
'ContentValidationRuleFragmentFragment': ContentValidationRuleFragmentFragment;
|
|
4213
|
-
};
|
|
4214
|
-
})>;
|
|
4215
|
-
} & {
|
|
4216
|
-
' $fragmentRefs'?: {
|
|
4217
|
-
'ContentFieldFragmentFragment': ContentFieldFragmentFragment;
|
|
4218
|
-
};
|
|
4219
|
-
})>;
|
|
4220
|
-
} & {
|
|
4221
|
-
' $fragmentRefs'?: {
|
|
4222
|
-
'ContentTypeFragmentFragment': ContentTypeFragmentFragment;
|
|
4223
|
-
};
|
|
4224
|
-
})>;
|
|
4225
|
-
};
|
|
4226
|
-
export type ContentTypeWithContentItemsQueryVariables = Exact<{
|
|
4227
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
4228
|
-
}>;
|
|
4229
|
-
export type ContentTypeWithContentItemsQuery = {
|
|
4230
|
-
__typename?: 'Query';
|
|
4231
|
-
contentType: Array<({
|
|
4232
|
-
__typename?: 'ContentType';
|
|
4233
|
-
contentItems: Array<({
|
|
4234
|
-
__typename?: 'ContentItem';
|
|
4235
|
-
contentValues: Array<({
|
|
4236
|
-
__typename?: 'ContentValue';
|
|
4237
|
-
smartText?: any | null;
|
|
4238
|
-
contentField?: {
|
|
4239
|
-
__typename?: 'ContentField';
|
|
4240
|
-
prn: any;
|
|
4241
|
-
name: string;
|
|
4242
|
-
createdAt: any;
|
|
4243
|
-
updatedAt: any;
|
|
4244
|
-
contentValidationRules: Array<{
|
|
4245
|
-
__typename?: 'ContentValidationRule';
|
|
4246
|
-
ruleType: RuleType;
|
|
4247
|
-
settings: {
|
|
4248
|
-
__typename?: 'AllowedValuesContentValidationRuleSettings';
|
|
4249
|
-
} | {
|
|
4250
|
-
__typename?: 'CountContentValidationRuleSettings';
|
|
4251
|
-
} | {
|
|
4252
|
-
__typename?: 'DateBetweenContentValidationRuleSettings';
|
|
4253
|
-
} | {
|
|
4254
|
-
__typename?: 'DecimalCountContentValidationRuleSettings';
|
|
4255
|
-
} | {
|
|
4256
|
-
__typename?: 'NumberBetweenContentValidationRuleSettings';
|
|
4257
|
-
} | {
|
|
4258
|
-
__typename?: 'RelatableContentTypesContentValidationRuleSettings';
|
|
4259
|
-
} | {
|
|
4260
|
-
__typename?: 'StringFormatContentValidationRuleSettings';
|
|
4261
|
-
} | {
|
|
4262
|
-
__typename?: 'ValueTypeContentValidationRuleSettings';
|
|
4263
|
-
allowedTypes: Array<ContentValueTypeNames>;
|
|
4264
|
-
};
|
|
4265
|
-
}>;
|
|
4266
|
-
} | null;
|
|
4267
|
-
relatedContentItem?: ({
|
|
4268
|
-
__typename?: 'ContentItem';
|
|
4269
|
-
} & {
|
|
4270
|
-
' $fragmentRefs'?: {
|
|
4271
|
-
'ContentItemFragmentFragment': ContentItemFragmentFragment;
|
|
4272
|
-
};
|
|
4273
|
-
}) | null;
|
|
4274
|
-
relatedAsset?: ({
|
|
4275
|
-
__typename?: 'Asset';
|
|
4276
|
-
} & {
|
|
4277
|
-
' $fragmentRefs'?: {
|
|
4278
|
-
'AssetFragmentFragment': AssetFragmentFragment;
|
|
4279
|
-
};
|
|
4280
|
-
}) | null;
|
|
4281
|
-
linkedPathPart?: ({
|
|
4282
|
-
__typename?: 'PathPart';
|
|
4283
|
-
} & {
|
|
4284
|
-
' $fragmentRefs'?: {
|
|
4285
|
-
'PathPartFragmentFragment': PathPartFragmentFragment;
|
|
4286
|
-
};
|
|
4287
|
-
}) | null;
|
|
4288
|
-
linkedGridPlacement?: ({
|
|
4289
|
-
__typename?: 'GridPlacement';
|
|
4290
|
-
experienceComponent: {
|
|
4291
|
-
__typename?: 'ExperienceComponent';
|
|
4292
|
-
name?: string | null;
|
|
4293
|
-
};
|
|
4294
|
-
} & {
|
|
4295
|
-
' $fragmentRefs'?: {
|
|
4296
|
-
'GridPlacementFragmentFragment': GridPlacementFragmentFragment;
|
|
4297
|
-
};
|
|
4298
|
-
}) | null;
|
|
4299
|
-
} & {
|
|
4300
|
-
' $fragmentRefs'?: {
|
|
4301
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
4302
|
-
};
|
|
4303
|
-
})>;
|
|
4304
|
-
} & {
|
|
4305
|
-
' $fragmentRefs'?: {
|
|
4306
|
-
'ContentItemFragmentFragment': ContentItemFragmentFragment;
|
|
4307
|
-
};
|
|
4308
|
-
})>;
|
|
4309
|
-
} & {
|
|
4310
|
-
' $fragmentRefs'?: {
|
|
4311
|
-
'ContentTypeFragmentFragment': ContentTypeFragmentFragment;
|
|
4312
|
-
};
|
|
4313
|
-
})>;
|
|
4314
|
-
};
|
|
4315
|
-
export type ContentTypeFragmentFragment = {
|
|
4316
|
-
__typename?: 'ContentType';
|
|
4317
|
-
prn: any;
|
|
4318
|
-
name: string;
|
|
4319
|
-
displayNameTemplate: string;
|
|
4320
|
-
createdAt: any;
|
|
4321
|
-
updatedAt: any;
|
|
4322
|
-
_id: any;
|
|
4323
|
-
displayImageField?: ({
|
|
4324
|
-
__typename?: 'ContentField';
|
|
4325
|
-
} & {
|
|
4326
|
-
' $fragmentRefs'?: {
|
|
4327
|
-
'ContentFieldFragmentFragment': ContentFieldFragmentFragment;
|
|
4328
|
-
};
|
|
4329
|
-
}) | null;
|
|
4330
|
-
} & {
|
|
4331
|
-
' $fragmentName'?: 'ContentTypeFragmentFragment';
|
|
4332
|
-
};
|
|
4333
|
-
export type CreateContentTypeMutationVariables = Exact<{
|
|
4334
|
-
input: Array<CreateContentTypeInput> | CreateContentTypeInput;
|
|
4335
|
-
}>;
|
|
4336
|
-
export type CreateContentTypeMutation = {
|
|
4337
|
-
__typename?: 'Mutation';
|
|
4338
|
-
createContentType: Array<({
|
|
4339
|
-
__typename?: 'ContentType';
|
|
4340
|
-
} & {
|
|
4341
|
-
' $fragmentRefs'?: {
|
|
4342
|
-
'ContentTypeFragmentFragment': ContentTypeFragmentFragment;
|
|
4343
|
-
};
|
|
4344
|
-
})>;
|
|
4345
|
-
};
|
|
4346
|
-
export type RemoveContentTypeMutationVariables = Exact<{
|
|
4347
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
4348
|
-
}>;
|
|
4349
|
-
export type RemoveContentTypeMutation = {
|
|
4350
|
-
__typename?: 'Mutation';
|
|
4351
|
-
removeContentType: Array<{
|
|
4352
|
-
__typename?: 'ContentType';
|
|
4353
|
-
prn: any;
|
|
4354
|
-
}>;
|
|
4355
|
-
};
|
|
4356
|
-
export type UpdateContentTypeMutationVariables = Exact<{
|
|
4357
|
-
input: Array<UpdateContentTypeInput> | UpdateContentTypeInput;
|
|
4358
|
-
}>;
|
|
4359
|
-
export type UpdateContentTypeMutation = {
|
|
4360
|
-
__typename?: 'Mutation';
|
|
4361
|
-
updateContentType: Array<({
|
|
4362
|
-
__typename?: 'ContentType';
|
|
4363
|
-
} & {
|
|
4364
|
-
' $fragmentRefs'?: {
|
|
4365
|
-
'ContentTypeFragmentFragment': ContentTypeFragmentFragment;
|
|
4366
|
-
};
|
|
4367
|
-
})>;
|
|
4368
|
-
};
|
|
4369
|
-
export type ContentValidationRuleFragmentFragment = {
|
|
4370
|
-
__typename?: 'ContentValidationRule';
|
|
4371
|
-
prn: any;
|
|
4372
|
-
ruleType: RuleType;
|
|
4373
|
-
_id: any;
|
|
4374
|
-
settings: {
|
|
4375
|
-
__typename: 'AllowedValuesContentValidationRuleSettings';
|
|
4376
|
-
allowedValues: Array<any>;
|
|
4377
|
-
} | {
|
|
4378
|
-
__typename: 'CountContentValidationRuleSettings';
|
|
4379
|
-
min: number;
|
|
4380
|
-
max: number;
|
|
4381
|
-
} | {
|
|
4382
|
-
__typename: 'DateBetweenContentValidationRuleSettings';
|
|
4383
|
-
start: string;
|
|
4384
|
-
end: string;
|
|
4385
|
-
} | {
|
|
4386
|
-
__typename: 'DecimalCountContentValidationRuleSettings';
|
|
4387
|
-
max: number;
|
|
4388
|
-
} | {
|
|
4389
|
-
__typename: 'NumberBetweenContentValidationRuleSettings';
|
|
4390
|
-
min: number;
|
|
4391
|
-
max: number;
|
|
4392
|
-
} | {
|
|
4393
|
-
__typename: 'RelatableContentTypesContentValidationRuleSettings';
|
|
4394
|
-
allowedContentTypes: Array<any>;
|
|
4395
|
-
} | {
|
|
4396
|
-
__typename: 'StringFormatContentValidationRuleSettings';
|
|
4397
|
-
allowedFormat: string;
|
|
4398
|
-
} | {
|
|
4399
|
-
__typename: 'ValueTypeContentValidationRuleSettings';
|
|
4400
|
-
allowedTypes: Array<ContentValueTypeNames>;
|
|
4401
|
-
};
|
|
4402
|
-
} & {
|
|
4403
|
-
' $fragmentName'?: 'ContentValidationRuleFragmentFragment';
|
|
4404
|
-
};
|
|
4405
|
-
export type CreateAllowedValuesContentValidationRuleMutationVariables = Exact<{
|
|
4406
|
-
createAllowedValuesContentValidationRuleInput: CreateAllowedValuesContentValidationRuleInput;
|
|
4407
|
-
}>;
|
|
4408
|
-
export type CreateAllowedValuesContentValidationRuleMutation = {
|
|
4409
|
-
__typename?: 'Mutation';
|
|
4410
|
-
createAllowedValuesContentValidationRule: ({
|
|
4411
|
-
__typename?: 'ContentValidationRule';
|
|
4412
|
-
} & {
|
|
4413
|
-
' $fragmentRefs'?: {
|
|
4414
|
-
'ContentValidationRuleFragmentFragment': ContentValidationRuleFragmentFragment;
|
|
4415
|
-
};
|
|
4416
|
-
});
|
|
4417
|
-
};
|
|
4418
|
-
export type CreateCountContentValidationRuleMutationVariables = Exact<{
|
|
4419
|
-
createCountContentValidationRuleInput: CreateCountContentValidationRuleInput;
|
|
4420
|
-
}>;
|
|
4421
|
-
export type CreateCountContentValidationRuleMutation = {
|
|
4422
|
-
__typename?: 'Mutation';
|
|
4423
|
-
createCountContentValidationRule: ({
|
|
4424
|
-
__typename?: 'ContentValidationRule';
|
|
4425
|
-
} & {
|
|
4426
|
-
' $fragmentRefs'?: {
|
|
4427
|
-
'ContentValidationRuleFragmentFragment': ContentValidationRuleFragmentFragment;
|
|
4428
|
-
};
|
|
4429
|
-
});
|
|
4430
|
-
};
|
|
4431
|
-
export type CreateDateBetweenContentValidationRuleMutationVariables = Exact<{
|
|
4432
|
-
createDateBetweenContentValidationRuleInput: CreateDateBetweenContentValidationRuleInput;
|
|
4433
|
-
}>;
|
|
4434
|
-
export type CreateDateBetweenContentValidationRuleMutation = {
|
|
4435
|
-
__typename?: 'Mutation';
|
|
4436
|
-
createDateBetweenContentValidationRule: ({
|
|
4437
|
-
__typename?: 'ContentValidationRule';
|
|
4438
|
-
} & {
|
|
4439
|
-
' $fragmentRefs'?: {
|
|
4440
|
-
'ContentValidationRuleFragmentFragment': ContentValidationRuleFragmentFragment;
|
|
4441
|
-
};
|
|
4442
|
-
});
|
|
4443
|
-
};
|
|
4444
|
-
export type CreateDecimalCountContentValidationRuleMutationVariables = Exact<{
|
|
4445
|
-
createDecimalCountContentValidationRuleInput: CreateDecimalCountContentValidationRuleInput;
|
|
4446
|
-
}>;
|
|
4447
|
-
export type CreateDecimalCountContentValidationRuleMutation = {
|
|
4448
|
-
__typename?: 'Mutation';
|
|
4449
|
-
createDecimalCountContentValidationRule: ({
|
|
4450
|
-
__typename?: 'ContentValidationRule';
|
|
4451
|
-
} & {
|
|
4452
|
-
' $fragmentRefs'?: {
|
|
4453
|
-
'ContentValidationRuleFragmentFragment': ContentValidationRuleFragmentFragment;
|
|
4454
|
-
};
|
|
4455
|
-
});
|
|
4456
|
-
};
|
|
4457
|
-
export type CreateNumberBetweenContentValidationRuleMutationVariables = Exact<{
|
|
4458
|
-
createNumberBetweenContentValidationRuleInput: CreateNumberBetweenContentValidationRuleInput;
|
|
4459
|
-
}>;
|
|
4460
|
-
export type CreateNumberBetweenContentValidationRuleMutation = {
|
|
4461
|
-
__typename?: 'Mutation';
|
|
4462
|
-
createNumberBetweenContentValidationRule: ({
|
|
4463
|
-
__typename?: 'ContentValidationRule';
|
|
4464
|
-
} & {
|
|
4465
|
-
' $fragmentRefs'?: {
|
|
4466
|
-
'ContentValidationRuleFragmentFragment': ContentValidationRuleFragmentFragment;
|
|
4467
|
-
};
|
|
4468
|
-
});
|
|
4469
|
-
};
|
|
4470
|
-
export type CreateRelatableContentTypesContentValidationRuleMutationVariables = Exact<{
|
|
4471
|
-
createRelatableContentTypesContentValidationRuleInput: CreateRelatableContentTypesContentValidationRuleInput;
|
|
4472
|
-
}>;
|
|
4473
|
-
export type CreateRelatableContentTypesContentValidationRuleMutation = {
|
|
4474
|
-
__typename?: 'Mutation';
|
|
4475
|
-
createRelatableContentTypesContentValidationRule: ({
|
|
4476
|
-
__typename?: 'ContentValidationRule';
|
|
4477
|
-
} & {
|
|
4478
|
-
' $fragmentRefs'?: {
|
|
4479
|
-
'ContentValidationRuleFragmentFragment': ContentValidationRuleFragmentFragment;
|
|
4480
|
-
};
|
|
4481
|
-
});
|
|
4482
|
-
};
|
|
4483
|
-
export type CreateStringFormatContentValidationRuleMutationVariables = Exact<{
|
|
4484
|
-
createStringFormatContentValidationRuleInput: CreateStringFormatContentValidationRuleInput;
|
|
4485
|
-
}>;
|
|
4486
|
-
export type CreateStringFormatContentValidationRuleMutation = {
|
|
4487
|
-
__typename?: 'Mutation';
|
|
4488
|
-
createStringFormatContentValidationRule: ({
|
|
4489
|
-
__typename?: 'ContentValidationRule';
|
|
4490
|
-
} & {
|
|
4491
|
-
' $fragmentRefs'?: {
|
|
4492
|
-
'ContentValidationRuleFragmentFragment': ContentValidationRuleFragmentFragment;
|
|
4493
|
-
};
|
|
4494
|
-
});
|
|
4495
|
-
};
|
|
4496
|
-
export type CreateValueTypeContentValidationRuleMutationVariables = Exact<{
|
|
4497
|
-
createValueTypeContentValidationRuleInput: CreateValueTypeContentValidationRuleInput;
|
|
4498
|
-
}>;
|
|
4499
|
-
export type CreateValueTypeContentValidationRuleMutation = {
|
|
4500
|
-
__typename?: 'Mutation';
|
|
4501
|
-
createValueTypeContentValidationRule: ({
|
|
4502
|
-
__typename?: 'ContentValidationRule';
|
|
4503
|
-
} & {
|
|
4504
|
-
' $fragmentRefs'?: {
|
|
4505
|
-
'ContentValidationRuleFragmentFragment': ContentValidationRuleFragmentFragment;
|
|
4506
|
-
};
|
|
4507
|
-
});
|
|
4508
|
-
};
|
|
4509
|
-
export type RemoveContentValidationRuleMutationVariables = Exact<{
|
|
4510
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
4511
|
-
}>;
|
|
4512
|
-
export type RemoveContentValidationRuleMutation = {
|
|
4513
|
-
__typename?: 'Mutation';
|
|
4514
|
-
removeContentValidationRule: Array<{
|
|
4515
|
-
__typename?: 'ContentValidationRule';
|
|
4516
|
-
prn: any;
|
|
4517
|
-
}>;
|
|
4518
|
-
};
|
|
4519
|
-
export type UpdateAllowedValuesContentValidationRuleMutationVariables = Exact<{
|
|
4520
|
-
input: UpdateAllowedValuesContentValidationRuleInput;
|
|
4521
|
-
}>;
|
|
4522
|
-
export type UpdateAllowedValuesContentValidationRuleMutation = {
|
|
4523
|
-
__typename?: 'Mutation';
|
|
4524
|
-
updateAllowedValuesContentValidationRule: ({
|
|
4525
|
-
__typename?: 'ContentValidationRule';
|
|
4526
|
-
} & {
|
|
4527
|
-
' $fragmentRefs'?: {
|
|
4528
|
-
'ContentValidationRuleFragmentFragment': ContentValidationRuleFragmentFragment;
|
|
4529
|
-
};
|
|
4530
|
-
});
|
|
4531
|
-
};
|
|
4532
|
-
export type UpdateCountValidationRuleMutationVariables = Exact<{
|
|
4533
|
-
input: UpdateCountContentValidationRuleInput;
|
|
4534
|
-
}>;
|
|
4535
|
-
export type UpdateCountValidationRuleMutation = {
|
|
4536
|
-
__typename?: 'Mutation';
|
|
4537
|
-
updateCountContentValidationRule: ({
|
|
4538
|
-
__typename?: 'ContentValidationRule';
|
|
4539
|
-
} & {
|
|
4540
|
-
' $fragmentRefs'?: {
|
|
4541
|
-
'ContentValidationRuleFragmentFragment': ContentValidationRuleFragmentFragment;
|
|
4542
|
-
};
|
|
4543
|
-
});
|
|
4544
|
-
};
|
|
4545
|
-
export type UpdateDateBetweenContentValidationRuleMutationVariables = Exact<{
|
|
4546
|
-
input: UpdateDateBetweenContentValidationRuleInput;
|
|
4547
|
-
}>;
|
|
4548
|
-
export type UpdateDateBetweenContentValidationRuleMutation = {
|
|
4549
|
-
__typename?: 'Mutation';
|
|
4550
|
-
updateDateBetweenContentValidationRule: ({
|
|
4551
|
-
__typename?: 'ContentValidationRule';
|
|
4552
|
-
} & {
|
|
4553
|
-
' $fragmentRefs'?: {
|
|
4554
|
-
'ContentValidationRuleFragmentFragment': ContentValidationRuleFragmentFragment;
|
|
4555
|
-
};
|
|
4556
|
-
});
|
|
4557
|
-
};
|
|
4558
|
-
export type UpdateDecimalCountContentValidationRuleMutationVariables = Exact<{
|
|
4559
|
-
input: UpdateDecimalCountContentValidationRuleInput;
|
|
4560
|
-
}>;
|
|
4561
|
-
export type UpdateDecimalCountContentValidationRuleMutation = {
|
|
4562
|
-
__typename?: 'Mutation';
|
|
4563
|
-
updateDecimalCountContentValidationRule: ({
|
|
4564
|
-
__typename?: 'ContentValidationRule';
|
|
4565
|
-
} & {
|
|
4566
|
-
' $fragmentRefs'?: {
|
|
4567
|
-
'ContentValidationRuleFragmentFragment': ContentValidationRuleFragmentFragment;
|
|
4568
|
-
};
|
|
4569
|
-
});
|
|
4570
|
-
};
|
|
4571
|
-
export type UpdateNumberBetweenContentValidationRuleMutationVariables = Exact<{
|
|
4572
|
-
input: UpdateNumberBetweenContentValidationRuleInput;
|
|
4573
|
-
}>;
|
|
4574
|
-
export type UpdateNumberBetweenContentValidationRuleMutation = {
|
|
4575
|
-
__typename?: 'Mutation';
|
|
4576
|
-
updateNumberBetweenContentValidationRule: ({
|
|
4577
|
-
__typename?: 'ContentValidationRule';
|
|
4578
|
-
} & {
|
|
4579
|
-
' $fragmentRefs'?: {
|
|
4580
|
-
'ContentValidationRuleFragmentFragment': ContentValidationRuleFragmentFragment;
|
|
4581
|
-
};
|
|
4582
|
-
});
|
|
4583
|
-
};
|
|
4584
|
-
export type UpdateRelatableContentTypesContentValidationRuleMutationVariables = Exact<{
|
|
4585
|
-
input: UpdateRelatableContentTypesContentValidationRuleInput;
|
|
4586
|
-
}>;
|
|
4587
|
-
export type UpdateRelatableContentTypesContentValidationRuleMutation = {
|
|
4588
|
-
__typename?: 'Mutation';
|
|
4589
|
-
updateRelatableContentTypesContentValidationRule: ({
|
|
4590
|
-
__typename?: 'ContentValidationRule';
|
|
4591
|
-
} & {
|
|
4592
|
-
' $fragmentRefs'?: {
|
|
4593
|
-
'ContentValidationRuleFragmentFragment': ContentValidationRuleFragmentFragment;
|
|
4594
|
-
};
|
|
4595
|
-
});
|
|
4596
|
-
};
|
|
4597
|
-
export type UpdateStringFormatContentValidationRuleMutationVariables = Exact<{
|
|
4598
|
-
input: UpdateStringFormatContentValidationRuleInput;
|
|
4599
|
-
}>;
|
|
4600
|
-
export type UpdateStringFormatContentValidationRuleMutation = {
|
|
4601
|
-
__typename?: 'Mutation';
|
|
4602
|
-
updateStringFormatContentValidationRule: ({
|
|
4603
|
-
__typename?: 'ContentValidationRule';
|
|
4604
|
-
} & {
|
|
4605
|
-
' $fragmentRefs'?: {
|
|
4606
|
-
'ContentValidationRuleFragmentFragment': ContentValidationRuleFragmentFragment;
|
|
4607
|
-
};
|
|
4608
|
-
});
|
|
4609
|
-
};
|
|
4610
|
-
export type UpdateValueTypeValidationRuleMutationVariables = Exact<{
|
|
4611
|
-
input: UpdateValueTypeContentValidationRuleInput;
|
|
4612
|
-
}>;
|
|
4613
|
-
export type UpdateValueTypeValidationRuleMutation = {
|
|
4614
|
-
__typename?: 'Mutation';
|
|
4615
|
-
updateValueTypeContentValidationRule: ({
|
|
4616
|
-
__typename?: 'ContentValidationRule';
|
|
4617
|
-
} & {
|
|
4618
|
-
' $fragmentRefs'?: {
|
|
4619
|
-
'ContentValidationRuleFragmentFragment': ContentValidationRuleFragmentFragment;
|
|
4620
|
-
};
|
|
4621
|
-
});
|
|
4622
|
-
};
|
|
4623
|
-
export type AllContentValuesQueryVariables = Exact<{
|
|
4624
|
-
paginate: PaginationOptionsInput;
|
|
4625
|
-
where?: InputMaybe<Array<ContentValuesFilterInput> | ContentValuesFilterInput>;
|
|
4626
|
-
orderBy?: InputMaybe<OrderOptionsInput>;
|
|
4627
|
-
}>;
|
|
4628
|
-
export type AllContentValuesQuery = {
|
|
4629
|
-
__typename?: 'Query';
|
|
4630
|
-
contentValues: {
|
|
4631
|
-
__typename?: 'ContentValuesConnection';
|
|
4632
|
-
totalCount: number;
|
|
4633
|
-
pageInfo: ({
|
|
4634
|
-
__typename?: 'PageInfo';
|
|
4635
|
-
} & {
|
|
4636
|
-
' $fragmentRefs'?: {
|
|
4637
|
-
'PaginationFragment': PaginationFragment;
|
|
4638
|
-
};
|
|
4639
|
-
});
|
|
4640
|
-
edges: Array<{
|
|
4641
|
-
__typename?: 'ContentValueEdge';
|
|
4642
|
-
cursor: string;
|
|
4643
|
-
node: ({
|
|
4644
|
-
__typename?: 'ContentValue';
|
|
4645
|
-
contentField?: ({
|
|
4646
|
-
__typename?: 'ContentField';
|
|
4647
|
-
} & {
|
|
4648
|
-
' $fragmentRefs'?: {
|
|
4649
|
-
'ContentFieldFragmentFragment': ContentFieldFragmentFragment;
|
|
4650
|
-
};
|
|
4651
|
-
}) | null;
|
|
4652
|
-
contentItem?: ({
|
|
4653
|
-
__typename?: 'ContentItem';
|
|
4654
|
-
contentType: ({
|
|
4655
|
-
__typename?: 'ContentType';
|
|
4656
|
-
} & {
|
|
4657
|
-
' $fragmentRefs'?: {
|
|
4658
|
-
'ContentTypeFragmentFragment': ContentTypeFragmentFragment;
|
|
4659
|
-
};
|
|
4660
|
-
});
|
|
4661
|
-
} & {
|
|
4662
|
-
' $fragmentRefs'?: {
|
|
4663
|
-
'ContentItemFragmentFragment': ContentItemFragmentFragment;
|
|
4664
|
-
};
|
|
4665
|
-
}) | null;
|
|
4666
|
-
relatedAsset?: ({
|
|
4667
|
-
__typename?: 'Asset';
|
|
4668
|
-
} & {
|
|
4669
|
-
' $fragmentRefs'?: {
|
|
4670
|
-
'AssetFragmentFragment': AssetFragmentFragment;
|
|
4671
|
-
};
|
|
4672
|
-
}) | null;
|
|
4673
|
-
linkedGridPlacement?: ({
|
|
4674
|
-
__typename?: 'GridPlacement';
|
|
4675
|
-
} & {
|
|
4676
|
-
' $fragmentRefs'?: {
|
|
4677
|
-
'GridPlacementFragmentFragment': GridPlacementFragmentFragment;
|
|
4678
|
-
};
|
|
4679
|
-
}) | null;
|
|
4680
|
-
linkedPathPart?: ({
|
|
4681
|
-
__typename?: 'PathPart';
|
|
4682
|
-
} & {
|
|
4683
|
-
' $fragmentRefs'?: {
|
|
4684
|
-
'PathPartFragmentFragment': PathPartFragmentFragment;
|
|
4685
|
-
};
|
|
4686
|
-
}) | null;
|
|
4687
|
-
relatedContentItem?: ({
|
|
4688
|
-
__typename?: 'ContentItem';
|
|
4689
|
-
} & {
|
|
4690
|
-
' $fragmentRefs'?: {
|
|
4691
|
-
'ContentItemFragmentFragment': ContentItemFragmentFragment;
|
|
4692
|
-
};
|
|
4693
|
-
}) | null;
|
|
4694
|
-
} & {
|
|
4695
|
-
' $fragmentRefs'?: {
|
|
4696
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
4697
|
-
};
|
|
4698
|
-
});
|
|
4699
|
-
}>;
|
|
4700
|
-
};
|
|
4701
|
-
};
|
|
4702
|
-
export type ContentValueFragmentFragment = {
|
|
4703
|
-
__typename?: 'ContentValue';
|
|
4704
|
-
prn: any;
|
|
4705
|
-
primitiveValue?: any | null;
|
|
4706
|
-
interpolatedSmartText?: any | null;
|
|
4707
|
-
isReusable: boolean;
|
|
4708
|
-
createdAt: any;
|
|
4709
|
-
updatedAt: any;
|
|
4710
|
-
_id: any;
|
|
4711
|
-
} & {
|
|
4712
|
-
' $fragmentName'?: 'ContentValueFragmentFragment';
|
|
4713
|
-
};
|
|
4714
|
-
export type CreateContentValueMutationVariables = Exact<{
|
|
4715
|
-
createContentValueInput: Array<CreateContentValueInput> | CreateContentValueInput;
|
|
4716
|
-
}>;
|
|
4717
|
-
export type CreateContentValueMutation = {
|
|
4718
|
-
__typename?: 'Mutation';
|
|
4719
|
-
createContentValue: Array<({
|
|
4720
|
-
__typename?: 'ContentValue';
|
|
4721
|
-
relatedAsset?: ({
|
|
4722
|
-
__typename?: 'Asset';
|
|
4723
|
-
} & {
|
|
4724
|
-
' $fragmentRefs'?: {
|
|
4725
|
-
'AssetFragmentFragment': AssetFragmentFragment;
|
|
4726
|
-
};
|
|
4727
|
-
}) | null;
|
|
4728
|
-
relatedContentItem?: ({
|
|
4729
|
-
__typename?: 'ContentItem';
|
|
4730
|
-
} & {
|
|
4731
|
-
' $fragmentRefs'?: {
|
|
4732
|
-
'ContentItemFragmentFragment': ContentItemFragmentFragment;
|
|
4733
|
-
};
|
|
4734
|
-
}) | null;
|
|
4735
|
-
linkedGridPlacement?: ({
|
|
4736
|
-
__typename?: 'GridPlacement';
|
|
4737
|
-
} & {
|
|
4738
|
-
' $fragmentRefs'?: {
|
|
4739
|
-
'GridPlacementFragmentFragment': GridPlacementFragmentFragment;
|
|
4740
|
-
};
|
|
4741
|
-
}) | null;
|
|
4742
|
-
linkedPathPart?: ({
|
|
4743
|
-
__typename?: 'PathPart';
|
|
4744
|
-
} & {
|
|
4745
|
-
' $fragmentRefs'?: {
|
|
4746
|
-
'PathPartFragmentFragment': PathPartFragmentFragment;
|
|
4747
|
-
};
|
|
4748
|
-
}) | null;
|
|
4749
|
-
} & {
|
|
4750
|
-
' $fragmentRefs'?: {
|
|
4751
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
4752
|
-
};
|
|
4753
|
-
})>;
|
|
4754
|
-
};
|
|
4755
|
-
export type RemoveContentValueMutationVariables = Exact<{
|
|
4756
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
4757
|
-
}>;
|
|
4758
|
-
export type RemoveContentValueMutation = {
|
|
4759
|
-
__typename?: 'Mutation';
|
|
4760
|
-
removeContentValue: Array<{
|
|
4761
|
-
__typename?: 'RemoveContentValueResponse';
|
|
4762
|
-
prn: any;
|
|
4763
|
-
primitiveValue?: any | null;
|
|
4764
|
-
interpolatedSmartText?: any | null;
|
|
4765
|
-
isReusable: boolean;
|
|
4766
|
-
createdAt: any;
|
|
4767
|
-
updatedAt: any;
|
|
4768
|
-
_id: any;
|
|
4769
|
-
}>;
|
|
4770
|
-
};
|
|
4771
|
-
export type UpdateContentValueMutationVariables = Exact<{
|
|
4772
|
-
updateContentValueInput: Array<UpdateContentValueInput> | UpdateContentValueInput;
|
|
4773
|
-
}>;
|
|
4774
|
-
export type UpdateContentValueMutation = {
|
|
4775
|
-
__typename?: 'Mutation';
|
|
4776
|
-
updateContentValue: Array<({
|
|
4777
|
-
__typename?: 'ContentValue';
|
|
4778
|
-
} & {
|
|
4779
|
-
' $fragmentRefs'?: {
|
|
4780
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
4781
|
-
};
|
|
4782
|
-
})>;
|
|
4783
|
-
};
|
|
4784
|
-
export type CreateExperienceComponentMutationVariables = Exact<{
|
|
4785
|
-
input: Array<CreateExperienceComponentInput> | CreateExperienceComponentInput;
|
|
4786
|
-
}>;
|
|
4787
|
-
export type CreateExperienceComponentMutation = {
|
|
4788
|
-
__typename?: 'Mutation';
|
|
4789
|
-
createExperienceComponent: Array<({
|
|
4790
|
-
__typename?: 'ExperienceComponent';
|
|
4791
|
-
buildingBlock: ({
|
|
4792
|
-
__typename?: 'BuildingBlock';
|
|
4793
|
-
buildingBlockFields: Array<({
|
|
4794
|
-
__typename?: 'BuildingBlockField';
|
|
4795
|
-
} & {
|
|
4796
|
-
' $fragmentRefs'?: {
|
|
4797
|
-
'BuildingBlockFieldFragmentFragment': BuildingBlockFieldFragmentFragment;
|
|
4798
|
-
};
|
|
4799
|
-
})>;
|
|
4800
|
-
} & {
|
|
4801
|
-
' $fragmentRefs'?: {
|
|
4802
|
-
'BuildingBlockFragmentFragment': BuildingBlockFragmentFragment;
|
|
4803
|
-
};
|
|
4804
|
-
});
|
|
4805
|
-
buildingBlockFieldFulfillments: Array<({
|
|
4806
|
-
__typename?: 'BuildingBlockFieldFulfillment';
|
|
4807
|
-
buildingBlockField: ({
|
|
4808
|
-
__typename?: 'BuildingBlockField';
|
|
4809
|
-
} & {
|
|
4810
|
-
' $fragmentRefs'?: {
|
|
4811
|
-
'BuildingBlockFieldFragmentFragment': BuildingBlockFieldFragmentFragment;
|
|
4812
|
-
};
|
|
4813
|
-
});
|
|
4814
|
-
contentValue: ({
|
|
4815
|
-
__typename?: 'ContentValue';
|
|
4816
|
-
relatedAsset?: ({
|
|
4817
|
-
__typename?: 'Asset';
|
|
4818
|
-
} & {
|
|
4819
|
-
' $fragmentRefs'?: {
|
|
4820
|
-
'AssetFragmentFragment': AssetFragmentFragment;
|
|
4821
|
-
};
|
|
4822
|
-
}) | null;
|
|
4823
|
-
relatedContentItem?: ({
|
|
4824
|
-
__typename?: 'ContentItem';
|
|
4825
|
-
contentValues: Array<({
|
|
4826
|
-
__typename?: 'ContentValue';
|
|
4827
|
-
contentField?: ({
|
|
4828
|
-
__typename?: 'ContentField';
|
|
4829
|
-
} & {
|
|
4830
|
-
' $fragmentRefs'?: {
|
|
4831
|
-
'ContentFieldFragmentFragment': ContentFieldFragmentFragment;
|
|
4832
|
-
};
|
|
4833
|
-
}) | null;
|
|
4834
|
-
} & {
|
|
4835
|
-
' $fragmentRefs'?: {
|
|
4836
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
4837
|
-
};
|
|
4838
|
-
})>;
|
|
4839
|
-
} & {
|
|
4840
|
-
' $fragmentRefs'?: {
|
|
4841
|
-
'ContentItemFragmentFragment': ContentItemFragmentFragment;
|
|
4842
|
-
};
|
|
4843
|
-
}) | null;
|
|
4844
|
-
} & {
|
|
4845
|
-
' $fragmentRefs'?: {
|
|
4846
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
4847
|
-
};
|
|
4848
|
-
});
|
|
4849
|
-
} & {
|
|
4850
|
-
' $fragmentRefs'?: {
|
|
4851
|
-
'BuildingBlockFieldFulfillmentFragmentFragment': BuildingBlockFieldFulfillmentFragmentFragment;
|
|
4852
|
-
};
|
|
4853
|
-
})>;
|
|
4854
|
-
} & {
|
|
4855
|
-
' $fragmentRefs'?: {
|
|
4856
|
-
'ExperienceComponentFragmentFragment': ExperienceComponentFragmentFragment;
|
|
4857
|
-
};
|
|
4858
|
-
})>;
|
|
4859
|
-
};
|
|
4860
|
-
export type CreateGlobalExperienceComponentMutationVariables = Exact<{
|
|
4861
|
-
input: Array<CreateGlobalExperienceComponentInput> | CreateGlobalExperienceComponentInput;
|
|
4862
|
-
}>;
|
|
4863
|
-
export type CreateGlobalExperienceComponentMutation = {
|
|
4864
|
-
__typename?: 'Mutation';
|
|
4865
|
-
createGlobalExperienceComponent: Array<({
|
|
4866
|
-
__typename?: 'ExperienceComponent';
|
|
4867
|
-
buildingBlock: ({
|
|
4868
|
-
__typename?: 'BuildingBlock';
|
|
4869
|
-
} & {
|
|
4870
|
-
' $fragmentRefs'?: {
|
|
4871
|
-
'BuildingBlockFragmentFragment': BuildingBlockFragmentFragment;
|
|
4872
|
-
};
|
|
4873
|
-
});
|
|
4874
|
-
} & {
|
|
4875
|
-
' $fragmentRefs'?: {
|
|
4876
|
-
'ExperienceComponentFragmentFragment': ExperienceComponentFragmentFragment;
|
|
4877
|
-
};
|
|
4878
|
-
})>;
|
|
4879
|
-
};
|
|
4880
|
-
export type ExperienceComponentFragmentFragment = {
|
|
4881
|
-
__typename?: 'ExperienceComponent';
|
|
4882
|
-
prn: any;
|
|
4883
|
-
stage: Stage;
|
|
4884
|
-
name?: string | null;
|
|
4885
|
-
isDraft: boolean;
|
|
4886
|
-
isGlobal: boolean;
|
|
4887
|
-
createdAt: any;
|
|
4888
|
-
updatedAt: any;
|
|
4889
|
-
_id: any;
|
|
4890
|
-
preview?: ({
|
|
4891
|
-
__typename?: 'Asset';
|
|
4892
|
-
} & {
|
|
4893
|
-
' $fragmentRefs'?: {
|
|
4894
|
-
'AssetFragmentFragment': AssetFragmentFragment;
|
|
4895
|
-
};
|
|
4896
|
-
}) | null;
|
|
4897
|
-
} & {
|
|
4898
|
-
' $fragmentName'?: 'ExperienceComponentFragmentFragment';
|
|
4899
|
-
};
|
|
4900
|
-
export type ExperienceComponentQueryVariables = Exact<{
|
|
4901
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
4902
|
-
}>;
|
|
4903
|
-
export type ExperienceComponentQuery = {
|
|
4904
|
-
__typename?: 'Query';
|
|
4905
|
-
experienceComponent: Array<({
|
|
4906
|
-
__typename?: 'ExperienceComponent';
|
|
4907
|
-
gridPlacements: Array<{
|
|
4908
|
-
__typename?: 'GridPlacement';
|
|
4909
|
-
grid: {
|
|
4910
|
-
__typename?: 'Grid';
|
|
4911
|
-
experienceComponent: {
|
|
4912
|
-
__typename?: 'ExperienceComponent';
|
|
4913
|
-
contentExperience?: ({
|
|
4914
|
-
__typename?: 'ContentExperience';
|
|
4915
|
-
} & {
|
|
4916
|
-
' $fragmentRefs'?: {
|
|
4917
|
-
'ContentExperienceFragmentFragment': ContentExperienceFragmentFragment;
|
|
4918
|
-
};
|
|
4919
|
-
}) | null;
|
|
4920
|
-
};
|
|
4921
|
-
};
|
|
4922
|
-
}>;
|
|
4923
|
-
buildingBlock: ({
|
|
4924
|
-
__typename?: 'BuildingBlock';
|
|
4925
|
-
buildingBlockFields: Array<({
|
|
4926
|
-
__typename?: 'BuildingBlockField';
|
|
4927
|
-
} & {
|
|
4928
|
-
' $fragmentRefs'?: {
|
|
4929
|
-
'BuildingBlockFieldFragmentFragment': BuildingBlockFieldFragmentFragment;
|
|
4930
|
-
};
|
|
4931
|
-
})>;
|
|
4932
|
-
} & {
|
|
4933
|
-
' $fragmentRefs'?: {
|
|
4934
|
-
'BuildingBlockFragmentFragment': BuildingBlockFragmentFragment;
|
|
4935
|
-
};
|
|
4936
|
-
});
|
|
4937
|
-
buildingBlockFieldFulfillments: Array<({
|
|
4938
|
-
__typename?: 'BuildingBlockFieldFulfillment';
|
|
4939
|
-
buildingBlockField: ({
|
|
4940
|
-
__typename?: 'BuildingBlockField';
|
|
4941
|
-
} & {
|
|
4942
|
-
' $fragmentRefs'?: {
|
|
4943
|
-
'BuildingBlockFieldFragmentFragment': BuildingBlockFieldFragmentFragment;
|
|
4944
|
-
};
|
|
4945
|
-
});
|
|
4946
|
-
contentValue: ({
|
|
4947
|
-
__typename?: 'ContentValue';
|
|
4948
|
-
relatedAsset?: ({
|
|
4949
|
-
__typename?: 'Asset';
|
|
4950
|
-
} & {
|
|
4951
|
-
' $fragmentRefs'?: {
|
|
4952
|
-
'AssetFragmentFragment': AssetFragmentFragment;
|
|
4953
|
-
};
|
|
4954
|
-
}) | null;
|
|
4955
|
-
relatedContentItem?: ({
|
|
4956
|
-
__typename?: 'ContentItem';
|
|
4957
|
-
contentValues: Array<({
|
|
4958
|
-
__typename?: 'ContentValue';
|
|
4959
|
-
contentField?: ({
|
|
4960
|
-
__typename?: 'ContentField';
|
|
4961
|
-
} & {
|
|
4962
|
-
' $fragmentRefs'?: {
|
|
4963
|
-
'ContentFieldFragmentFragment': ContentFieldFragmentFragment;
|
|
4964
|
-
};
|
|
4965
|
-
}) | null;
|
|
4966
|
-
} & {
|
|
4967
|
-
' $fragmentRefs'?: {
|
|
4968
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
4969
|
-
};
|
|
4970
|
-
})>;
|
|
4971
|
-
} & {
|
|
4972
|
-
' $fragmentRefs'?: {
|
|
4973
|
-
'ContentItemFragmentFragment': ContentItemFragmentFragment;
|
|
4974
|
-
};
|
|
4975
|
-
}) | null;
|
|
4976
|
-
contentItem?: {
|
|
4977
|
-
__typename?: 'ContentItem';
|
|
4978
|
-
prn: any;
|
|
4979
|
-
} | null;
|
|
4980
|
-
} & {
|
|
4981
|
-
' $fragmentRefs'?: {
|
|
4982
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
4983
|
-
};
|
|
4984
|
-
});
|
|
4985
|
-
} & {
|
|
4986
|
-
' $fragmentRefs'?: {
|
|
4987
|
-
'BuildingBlockFieldFulfillmentFragmentFragment': BuildingBlockFieldFulfillmentFragmentFragment;
|
|
4988
|
-
};
|
|
4989
|
-
})>;
|
|
4990
|
-
} & {
|
|
4991
|
-
' $fragmentRefs'?: {
|
|
4992
|
-
'ExperienceComponentFragmentFragment': ExperienceComponentFragmentFragment;
|
|
4993
|
-
};
|
|
4994
|
-
})>;
|
|
4995
|
-
};
|
|
4996
|
-
export type ExperienceComponentsQueryVariables = Exact<{
|
|
4997
|
-
paginate: PaginationOptionsInput;
|
|
4998
|
-
where?: InputMaybe<Array<ExperienceComponentsFilterInput> | ExperienceComponentsFilterInput>;
|
|
4999
|
-
}>;
|
|
5000
|
-
export type ExperienceComponentsQuery = {
|
|
5001
|
-
__typename?: 'Query';
|
|
5002
|
-
experienceComponents: {
|
|
5003
|
-
__typename?: 'ExperienceComponentsConnection';
|
|
5004
|
-
totalCount: number;
|
|
5005
|
-
edges: Array<{
|
|
5006
|
-
__typename?: 'ExperienceComponentEdge';
|
|
5007
|
-
cursor: string;
|
|
5008
|
-
node: ({
|
|
5009
|
-
__typename?: 'ExperienceComponent';
|
|
5010
|
-
gridPlacements: Array<{
|
|
5011
|
-
__typename?: 'GridPlacement';
|
|
5012
|
-
grid: {
|
|
5013
|
-
__typename?: 'Grid';
|
|
5014
|
-
experienceComponent: {
|
|
5015
|
-
__typename?: 'ExperienceComponent';
|
|
5016
|
-
contentExperience?: ({
|
|
5017
|
-
__typename?: 'ContentExperience';
|
|
5018
|
-
} & {
|
|
5019
|
-
' $fragmentRefs'?: {
|
|
5020
|
-
'ContentExperienceFragmentFragment': ContentExperienceFragmentFragment;
|
|
5021
|
-
};
|
|
5022
|
-
}) | null;
|
|
5023
|
-
};
|
|
5024
|
-
};
|
|
5025
|
-
}>;
|
|
5026
|
-
buildingBlock: ({
|
|
5027
|
-
__typename?: 'BuildingBlock';
|
|
5028
|
-
} & {
|
|
5029
|
-
' $fragmentRefs'?: {
|
|
5030
|
-
'BuildingBlockFragmentFragment': BuildingBlockFragmentFragment;
|
|
5031
|
-
};
|
|
5032
|
-
});
|
|
5033
|
-
} & {
|
|
5034
|
-
' $fragmentRefs'?: {
|
|
5035
|
-
'ExperienceComponentFragmentFragment': ExperienceComponentFragmentFragment;
|
|
5036
|
-
};
|
|
5037
|
-
});
|
|
5038
|
-
}>;
|
|
5039
|
-
pageInfo: ({
|
|
5040
|
-
__typename?: 'PageInfo';
|
|
5041
|
-
} & {
|
|
5042
|
-
' $fragmentRefs'?: {
|
|
5043
|
-
'PaginationFragment': PaginationFragment;
|
|
5044
|
-
};
|
|
5045
|
-
});
|
|
5046
|
-
};
|
|
5047
|
-
};
|
|
5048
|
-
export type RemoveExperienceComponentMutationVariables = Exact<{
|
|
5049
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
5050
|
-
}>;
|
|
5051
|
-
export type RemoveExperienceComponentMutation = {
|
|
5052
|
-
__typename?: 'Mutation';
|
|
5053
|
-
removeExperienceComponent: Array<{
|
|
5054
|
-
__typename?: 'RemoveExperienceComponentResponse';
|
|
5055
|
-
prn: any;
|
|
5056
|
-
stage: Stage;
|
|
5057
|
-
name?: string | null;
|
|
5058
|
-
isDraft: boolean;
|
|
5059
|
-
isGlobal: boolean;
|
|
5060
|
-
createdAt: any;
|
|
5061
|
-
updatedAt: any;
|
|
5062
|
-
_id: any;
|
|
5063
|
-
}>;
|
|
5064
|
-
};
|
|
5065
|
-
export type UpdateExperienceComponentMutationVariables = Exact<{
|
|
5066
|
-
input: Array<UpdateExperienceComponentInput> | UpdateExperienceComponentInput;
|
|
5067
|
-
}>;
|
|
5068
|
-
export type UpdateExperienceComponentMutation = {
|
|
5069
|
-
__typename?: 'Mutation';
|
|
5070
|
-
updateExperienceComponent: Array<({
|
|
5071
|
-
__typename?: 'ExperienceComponent';
|
|
5072
|
-
buildingBlock: ({
|
|
5073
|
-
__typename?: 'BuildingBlock';
|
|
5074
|
-
buildingBlockFields: Array<({
|
|
5075
|
-
__typename?: 'BuildingBlockField';
|
|
5076
|
-
} & {
|
|
5077
|
-
' $fragmentRefs'?: {
|
|
5078
|
-
'BuildingBlockFieldFragmentFragment': BuildingBlockFieldFragmentFragment;
|
|
5079
|
-
};
|
|
5080
|
-
})>;
|
|
5081
|
-
} & {
|
|
5082
|
-
' $fragmentRefs'?: {
|
|
5083
|
-
'BuildingBlockFragmentFragment': BuildingBlockFragmentFragment;
|
|
5084
|
-
};
|
|
5085
|
-
});
|
|
5086
|
-
buildingBlockFieldFulfillments: Array<({
|
|
5087
|
-
__typename?: 'BuildingBlockFieldFulfillment';
|
|
5088
|
-
buildingBlockField: ({
|
|
5089
|
-
__typename?: 'BuildingBlockField';
|
|
5090
|
-
} & {
|
|
5091
|
-
' $fragmentRefs'?: {
|
|
5092
|
-
'BuildingBlockFieldFragmentFragment': BuildingBlockFieldFragmentFragment;
|
|
5093
|
-
};
|
|
5094
|
-
});
|
|
5095
|
-
contentValue: ({
|
|
5096
|
-
__typename?: 'ContentValue';
|
|
5097
|
-
relatedAsset?: ({
|
|
5098
|
-
__typename?: 'Asset';
|
|
5099
|
-
} & {
|
|
5100
|
-
' $fragmentRefs'?: {
|
|
5101
|
-
'AssetFragmentFragment': AssetFragmentFragment;
|
|
5102
|
-
};
|
|
5103
|
-
}) | null;
|
|
5104
|
-
relatedContentItem?: ({
|
|
5105
|
-
__typename?: 'ContentItem';
|
|
5106
|
-
contentValues: Array<({
|
|
5107
|
-
__typename?: 'ContentValue';
|
|
5108
|
-
contentField?: ({
|
|
5109
|
-
__typename?: 'ContentField';
|
|
5110
|
-
} & {
|
|
5111
|
-
' $fragmentRefs'?: {
|
|
5112
|
-
'ContentFieldFragmentFragment': ContentFieldFragmentFragment;
|
|
5113
|
-
};
|
|
5114
|
-
}) | null;
|
|
5115
|
-
} & {
|
|
5116
|
-
' $fragmentRefs'?: {
|
|
5117
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
5118
|
-
};
|
|
5119
|
-
})>;
|
|
5120
|
-
} & {
|
|
5121
|
-
' $fragmentRefs'?: {
|
|
5122
|
-
'ContentItemFragmentFragment': ContentItemFragmentFragment;
|
|
5123
|
-
};
|
|
5124
|
-
}) | null;
|
|
5125
|
-
contentItem?: {
|
|
5126
|
-
__typename?: 'ContentItem';
|
|
5127
|
-
prn: any;
|
|
5128
|
-
} | null;
|
|
5129
|
-
} & {
|
|
5130
|
-
' $fragmentRefs'?: {
|
|
5131
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
5132
|
-
};
|
|
5133
|
-
});
|
|
5134
|
-
} & {
|
|
5135
|
-
' $fragmentRefs'?: {
|
|
5136
|
-
'BuildingBlockFieldFulfillmentFragmentFragment': BuildingBlockFieldFulfillmentFragmentFragment;
|
|
5137
|
-
};
|
|
5138
|
-
})>;
|
|
5139
|
-
} & {
|
|
5140
|
-
' $fragmentRefs'?: {
|
|
5141
|
-
'ExperienceComponentFragmentFragment': ExperienceComponentFragmentFragment;
|
|
5142
|
-
};
|
|
5143
|
-
})>;
|
|
5144
|
-
};
|
|
5145
|
-
export type PaginationFragment = {
|
|
5146
|
-
__typename?: 'PageInfo';
|
|
5147
|
-
endCursor?: string | null;
|
|
5148
|
-
hasNextPage: boolean;
|
|
5149
|
-
hasPreviousPage: boolean;
|
|
5150
|
-
startCursor?: string | null;
|
|
5151
|
-
} & {
|
|
5152
|
-
' $fragmentName'?: 'PaginationFragment';
|
|
5153
|
-
};
|
|
5154
|
-
export type CreateGridDefinitionMutationVariables = Exact<{
|
|
5155
|
-
input: Array<CreateGridDefinitionInput> | CreateGridDefinitionInput;
|
|
5156
|
-
}>;
|
|
5157
|
-
export type CreateGridDefinitionMutation = {
|
|
5158
|
-
__typename?: 'Mutation';
|
|
5159
|
-
createGridDefinition: Array<({
|
|
5160
|
-
__typename?: 'GridDefinition';
|
|
5161
|
-
} & {
|
|
5162
|
-
' $fragmentRefs'?: {
|
|
5163
|
-
'GridDefinitionFragmentFragment': GridDefinitionFragmentFragment;
|
|
5164
|
-
};
|
|
5165
|
-
})>;
|
|
5166
|
-
};
|
|
5167
|
-
export type GridDefinitionFragmentFragment = {
|
|
5168
|
-
__typename?: 'GridDefinition';
|
|
5169
|
-
prn: any;
|
|
5170
|
-
maxRows: number;
|
|
5171
|
-
_id: any;
|
|
5172
|
-
} & {
|
|
5173
|
-
' $fragmentName'?: 'GridDefinitionFragmentFragment';
|
|
5174
|
-
};
|
|
5175
|
-
export type CreateGridPlacementMutationVariables = Exact<{
|
|
5176
|
-
input: Array<CreateGridPlacementInput> | CreateGridPlacementInput;
|
|
5177
|
-
}>;
|
|
5178
|
-
export type CreateGridPlacementMutation = {
|
|
5179
|
-
__typename?: 'Mutation';
|
|
5180
|
-
createGridPlacement: Array<({
|
|
5181
|
-
__typename?: 'GridPlacement';
|
|
5182
|
-
experienceComponent: ({
|
|
5183
|
-
__typename?: 'ExperienceComponent';
|
|
5184
|
-
buildingBlock: ({
|
|
5185
|
-
__typename?: 'BuildingBlock';
|
|
5186
|
-
buildingBlockFields: Array<({
|
|
5187
|
-
__typename?: 'BuildingBlockField';
|
|
5188
|
-
} & {
|
|
5189
|
-
' $fragmentRefs'?: {
|
|
5190
|
-
'BuildingBlockFieldFragmentFragment': BuildingBlockFieldFragmentFragment;
|
|
5191
|
-
};
|
|
5192
|
-
})>;
|
|
5193
|
-
} & {
|
|
5194
|
-
' $fragmentRefs'?: {
|
|
5195
|
-
'BuildingBlockFragmentFragment': BuildingBlockFragmentFragment;
|
|
5196
|
-
};
|
|
5197
|
-
});
|
|
5198
|
-
buildingBlockFieldFulfillments: Array<({
|
|
5199
|
-
__typename?: 'BuildingBlockFieldFulfillment';
|
|
5200
|
-
buildingBlockField: ({
|
|
5201
|
-
__typename?: 'BuildingBlockField';
|
|
5202
|
-
} & {
|
|
5203
|
-
' $fragmentRefs'?: {
|
|
5204
|
-
'BuildingBlockFieldFragmentFragment': BuildingBlockFieldFragmentFragment;
|
|
5205
|
-
};
|
|
5206
|
-
});
|
|
5207
|
-
contentValue: ({
|
|
5208
|
-
__typename?: 'ContentValue';
|
|
5209
|
-
relatedAsset?: ({
|
|
5210
|
-
__typename?: 'Asset';
|
|
5211
|
-
} & {
|
|
5212
|
-
' $fragmentRefs'?: {
|
|
5213
|
-
'AssetFragmentFragment': AssetFragmentFragment;
|
|
5214
|
-
};
|
|
5215
|
-
}) | null;
|
|
5216
|
-
relatedContentItem?: ({
|
|
5217
|
-
__typename?: 'ContentItem';
|
|
5218
|
-
contentValues: Array<({
|
|
5219
|
-
__typename?: 'ContentValue';
|
|
5220
|
-
contentField?: ({
|
|
5221
|
-
__typename?: 'ContentField';
|
|
5222
|
-
} & {
|
|
5223
|
-
' $fragmentRefs'?: {
|
|
5224
|
-
'ContentFieldFragmentFragment': ContentFieldFragmentFragment;
|
|
5225
|
-
};
|
|
5226
|
-
}) | null;
|
|
5227
|
-
} & {
|
|
5228
|
-
' $fragmentRefs'?: {
|
|
5229
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
5230
|
-
};
|
|
5231
|
-
})>;
|
|
5232
|
-
} & {
|
|
5233
|
-
' $fragmentRefs'?: {
|
|
5234
|
-
'ContentItemFragmentFragment': ContentItemFragmentFragment;
|
|
5235
|
-
};
|
|
5236
|
-
}) | null;
|
|
5237
|
-
} & {
|
|
5238
|
-
' $fragmentRefs'?: {
|
|
5239
|
-
'ContentValueFragmentFragment': ContentValueFragmentFragment;
|
|
5240
|
-
};
|
|
5241
|
-
});
|
|
5242
|
-
} & {
|
|
5243
|
-
' $fragmentRefs'?: {
|
|
5244
|
-
'BuildingBlockFieldFulfillmentFragmentFragment': BuildingBlockFieldFulfillmentFragmentFragment;
|
|
5245
|
-
};
|
|
5246
|
-
})>;
|
|
5247
|
-
} & {
|
|
5248
|
-
' $fragmentRefs'?: {
|
|
5249
|
-
'ExperienceComponentFragmentFragment': ExperienceComponentFragmentFragment;
|
|
5250
|
-
};
|
|
5251
|
-
});
|
|
5252
|
-
} & {
|
|
5253
|
-
' $fragmentRefs'?: {
|
|
5254
|
-
'GridPlacementFragmentFragment': GridPlacementFragmentFragment;
|
|
5255
|
-
};
|
|
5256
|
-
})>;
|
|
5257
|
-
};
|
|
5258
|
-
export type GridPlacementFragmentFragment = {
|
|
5259
|
-
__typename?: 'GridPlacement';
|
|
5260
|
-
prn: any;
|
|
5261
|
-
row: number;
|
|
5262
|
-
updatedAt: any;
|
|
5263
|
-
createdAt: any;
|
|
5264
|
-
_id: any;
|
|
5265
|
-
} & {
|
|
5266
|
-
' $fragmentName'?: 'GridPlacementFragmentFragment';
|
|
5267
|
-
};
|
|
5268
|
-
export type RemoveGridPlacementMutationVariables = Exact<{
|
|
5269
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
5270
|
-
}>;
|
|
5271
|
-
export type RemoveGridPlacementMutation = {
|
|
5272
|
-
__typename?: 'Mutation';
|
|
5273
|
-
removeGridPlacement: Array<({
|
|
5274
|
-
__typename?: 'GridPlacement';
|
|
5275
|
-
} & {
|
|
5276
|
-
' $fragmentRefs'?: {
|
|
5277
|
-
'GridPlacementFragmentFragment': GridPlacementFragmentFragment;
|
|
5278
|
-
};
|
|
5279
|
-
})>;
|
|
5280
|
-
};
|
|
5281
|
-
export type UpdateGridPlacementMutationVariables = Exact<{
|
|
5282
|
-
input: Array<UpdateGridPlacementInput> | UpdateGridPlacementInput;
|
|
5283
|
-
}>;
|
|
5284
|
-
export type UpdateGridPlacementMutation = {
|
|
5285
|
-
__typename?: 'Mutation';
|
|
5286
|
-
updateGridPlacement: Array<({
|
|
5287
|
-
__typename?: 'GridPlacement';
|
|
5288
|
-
experienceComponent: ({
|
|
5289
|
-
__typename?: 'ExperienceComponent';
|
|
5290
|
-
} & {
|
|
5291
|
-
' $fragmentRefs'?: {
|
|
5292
|
-
'ExperienceComponentFragmentFragment': ExperienceComponentFragmentFragment;
|
|
5293
|
-
};
|
|
5294
|
-
});
|
|
5295
|
-
} & {
|
|
5296
|
-
' $fragmentRefs'?: {
|
|
5297
|
-
'GridPlacementFragmentFragment': GridPlacementFragmentFragment;
|
|
5298
|
-
};
|
|
5299
|
-
})>;
|
|
5300
|
-
};
|
|
5301
|
-
export type GridFragmentFragment = {
|
|
5302
|
-
__typename?: 'Grid';
|
|
5303
|
-
prn: any;
|
|
5304
|
-
rows: number;
|
|
5305
|
-
updatedAt: any;
|
|
5306
|
-
createdAt: any;
|
|
5307
|
-
_id: any;
|
|
5308
|
-
} & {
|
|
5309
|
-
' $fragmentName'?: 'GridFragmentFragment';
|
|
5310
|
-
};
|
|
5311
|
-
export type AcceptInvitationMutationVariables = Exact<{
|
|
5312
|
-
handleInvitationInput: HandleInvitationInput;
|
|
5313
|
-
}>;
|
|
5314
|
-
export type AcceptInvitationMutation = {
|
|
5315
|
-
__typename?: 'Mutation';
|
|
5316
|
-
acceptInvitation: ({
|
|
5317
|
-
__typename?: 'RoleAssignment';
|
|
5318
|
-
role: {
|
|
5319
|
-
__typename?: 'Role';
|
|
5320
|
-
createdAt: any;
|
|
5321
|
-
name: DefaultRoleName;
|
|
5322
|
-
prn: any;
|
|
5323
|
-
updatedAt: any;
|
|
5324
|
-
};
|
|
5325
|
-
} & {
|
|
5326
|
-
' $fragmentRefs'?: {
|
|
5327
|
-
'RoleAssignmentFragmentFragment': RoleAssignmentFragmentFragment;
|
|
5328
|
-
};
|
|
5329
|
-
});
|
|
5330
|
-
};
|
|
5331
|
-
export type CreateInvitationMutationVariables = Exact<{
|
|
5332
|
-
createInvitationInput: Array<CreateInvitationInput> | CreateInvitationInput;
|
|
5333
|
-
}>;
|
|
5334
|
-
export type CreateInvitationMutation = {
|
|
5335
|
-
__typename?: 'Mutation';
|
|
5336
|
-
createInvitation: Array<({
|
|
5337
|
-
__typename?: 'Invitation';
|
|
5338
|
-
role: ({
|
|
5339
|
-
__typename?: 'Role';
|
|
5340
|
-
organization: ({
|
|
5341
|
-
__typename?: 'Organization';
|
|
5342
|
-
} & {
|
|
5343
|
-
' $fragmentRefs'?: {
|
|
5344
|
-
'OrganizationFragmentFragment': OrganizationFragmentFragment;
|
|
5345
|
-
};
|
|
5346
|
-
});
|
|
5347
|
-
} & {
|
|
5348
|
-
' $fragmentRefs'?: {
|
|
5349
|
-
'RoleFragmentFragment': RoleFragmentFragment;
|
|
5350
|
-
};
|
|
5351
|
-
});
|
|
5352
|
-
} & {
|
|
5353
|
-
' $fragmentRefs'?: {
|
|
5354
|
-
'InvitationFragmentFragment': InvitationFragmentFragment;
|
|
5355
|
-
};
|
|
5356
|
-
})>;
|
|
5357
|
-
};
|
|
5358
|
-
export type DeclineInvitationMutationVariables = Exact<{
|
|
5359
|
-
handleInvitationInput: HandleInvitationInput;
|
|
5360
|
-
}>;
|
|
5361
|
-
export type DeclineInvitationMutation = {
|
|
5362
|
-
__typename?: 'Mutation';
|
|
5363
|
-
declineInvitation: ({
|
|
5364
|
-
__typename?: 'Invitation';
|
|
5365
|
-
} & {
|
|
5366
|
-
' $fragmentRefs'?: {
|
|
5367
|
-
'InvitationFragmentFragment': InvitationFragmentFragment;
|
|
5368
|
-
};
|
|
5369
|
-
});
|
|
5370
|
-
};
|
|
5371
|
-
export type InvitationFragmentFragment = {
|
|
5372
|
-
__typename?: 'Invitation';
|
|
5373
|
-
prn: any;
|
|
5374
|
-
userEmail: string;
|
|
5375
|
-
createdAt: any;
|
|
5376
|
-
updatedAt: any;
|
|
5377
|
-
_id: any;
|
|
5378
|
-
} & {
|
|
5379
|
-
' $fragmentName'?: 'InvitationFragmentFragment';
|
|
5380
|
-
};
|
|
5381
|
-
export type InvitationsForCurrentSubjectQueryVariables = Exact<{
|
|
5382
|
-
[key: string]: never;
|
|
5383
|
-
}>;
|
|
5384
|
-
export type InvitationsForCurrentSubjectQuery = {
|
|
5385
|
-
__typename?: 'Query';
|
|
5386
|
-
invitationsForCurrentSubject: Array<({
|
|
5387
|
-
__typename?: 'Invitation';
|
|
5388
|
-
role: ({
|
|
5389
|
-
__typename?: 'Role';
|
|
5390
|
-
organization: ({
|
|
5391
|
-
__typename?: 'Organization';
|
|
5392
|
-
} & {
|
|
5393
|
-
' $fragmentRefs'?: {
|
|
5394
|
-
'OrganizationFragmentFragment': OrganizationFragmentFragment;
|
|
5395
|
-
};
|
|
5396
|
-
});
|
|
5397
|
-
} & {
|
|
5398
|
-
' $fragmentRefs'?: {
|
|
5399
|
-
'RoleFragmentFragment': RoleFragmentFragment;
|
|
5400
|
-
};
|
|
5401
|
-
});
|
|
5402
|
-
} & {
|
|
5403
|
-
' $fragmentRefs'?: {
|
|
5404
|
-
'InvitationFragmentFragment': InvitationFragmentFragment;
|
|
5405
|
-
};
|
|
5406
|
-
})>;
|
|
5407
|
-
};
|
|
5408
|
-
export type InvitationsForOrganizationQueryVariables = Exact<{
|
|
5409
|
-
[key: string]: never;
|
|
5410
|
-
}>;
|
|
5411
|
-
export type InvitationsForOrganizationQuery = {
|
|
5412
|
-
__typename?: 'Query';
|
|
5413
|
-
invitationsForOrganization: Array<({
|
|
5414
|
-
__typename?: 'Invitation';
|
|
5415
|
-
role: ({
|
|
5416
|
-
__typename?: 'Role';
|
|
5417
|
-
} & {
|
|
5418
|
-
' $fragmentRefs'?: {
|
|
5419
|
-
'RoleFragmentFragment': RoleFragmentFragment;
|
|
5420
|
-
};
|
|
5421
|
-
});
|
|
5422
|
-
} & {
|
|
5423
|
-
' $fragmentRefs'?: {
|
|
5424
|
-
'InvitationFragmentFragment': InvitationFragmentFragment;
|
|
5425
|
-
};
|
|
5426
|
-
})>;
|
|
5427
|
-
};
|
|
5428
|
-
export type RemoveInvitationMutationVariables = Exact<{
|
|
5429
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
5430
|
-
}>;
|
|
5431
|
-
export type RemoveInvitationMutation = {
|
|
5432
|
-
__typename?: 'Mutation';
|
|
5433
|
-
removeInvitation: Array<({
|
|
5434
|
-
__typename?: 'Invitation';
|
|
5435
|
-
} & {
|
|
5436
|
-
' $fragmentRefs'?: {
|
|
5437
|
-
'InvitationFragmentFragment': InvitationFragmentFragment;
|
|
5438
|
-
};
|
|
5439
|
-
})>;
|
|
5440
|
-
};
|
|
5441
|
-
export type CreateOrganizationMutationVariables = Exact<{
|
|
5442
|
-
createOrganizationInput: CreateOrganizationInput;
|
|
5443
|
-
}>;
|
|
5444
|
-
export type CreateOrganizationMutation = {
|
|
5445
|
-
__typename?: 'Mutation';
|
|
5446
|
-
createOrganization: ({
|
|
5447
|
-
__typename?: 'Organization';
|
|
5448
|
-
} & {
|
|
5449
|
-
' $fragmentRefs'?: {
|
|
5450
|
-
'OrganizationFragmentFragment': OrganizationFragmentFragment;
|
|
5451
|
-
};
|
|
5452
|
-
});
|
|
5453
|
-
};
|
|
5454
|
-
export type IsOrganizationSeedingQueryVariables = Exact<{
|
|
5455
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
5456
|
-
}>;
|
|
5457
|
-
export type IsOrganizationSeedingQuery = {
|
|
5458
|
-
__typename?: 'Query';
|
|
5459
|
-
organization: Array<{
|
|
5460
|
-
__typename?: 'Organization';
|
|
5461
|
-
seedStatus: SeedStatus;
|
|
5462
|
-
}>;
|
|
5463
|
-
};
|
|
5464
|
-
export type OrganizationFragmentFragment = {
|
|
5465
|
-
__typename?: 'Organization';
|
|
5466
|
-
prn: any;
|
|
5467
|
-
name: string;
|
|
5468
|
-
slug: string;
|
|
5469
|
-
logoUrl?: string | null;
|
|
5470
|
-
seedStatus: SeedStatus;
|
|
5471
|
-
createdAt: any;
|
|
5472
|
-
updatedAt: any;
|
|
5473
|
-
_id: any;
|
|
5474
|
-
logo?: ({
|
|
5475
|
-
__typename?: 'Asset';
|
|
5476
|
-
processedUrls?: Array<string> | null;
|
|
5477
|
-
} & {
|
|
5478
|
-
' $fragmentRefs'?: {
|
|
5479
|
-
'AssetFragmentFragment': AssetFragmentFragment;
|
|
5480
|
-
};
|
|
5481
|
-
}) | null;
|
|
5482
|
-
} & {
|
|
5483
|
-
' $fragmentName'?: 'OrganizationFragmentFragment';
|
|
5484
|
-
};
|
|
5485
|
-
export type RemoveOrganizationMutationVariables = Exact<{
|
|
5486
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
5487
|
-
}>;
|
|
5488
|
-
export type RemoveOrganizationMutation = {
|
|
5489
|
-
__typename?: 'Mutation';
|
|
5490
|
-
removeOrganization: Array<{
|
|
5491
|
-
__typename?: 'RemoveOrganizationResponse';
|
|
5492
|
-
prn: any;
|
|
5493
|
-
name: string;
|
|
5494
|
-
slug: string;
|
|
5495
|
-
logoUrl?: string | null;
|
|
5496
|
-
seedStatus: SeedStatus;
|
|
5497
|
-
createdAt: any;
|
|
5498
|
-
updatedAt: any;
|
|
5499
|
-
_id: any;
|
|
5500
|
-
}>;
|
|
5501
|
-
};
|
|
5502
|
-
export type RolesOfOrganizationQueryVariables = Exact<{
|
|
5503
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
5504
|
-
}>;
|
|
5505
|
-
export type RolesOfOrganizationQuery = {
|
|
5506
|
-
__typename?: 'Query';
|
|
5507
|
-
organization: Array<{
|
|
5508
|
-
__typename?: 'Organization';
|
|
5509
|
-
prn: any;
|
|
5510
|
-
roles: Array<({
|
|
5511
|
-
__typename?: 'Role';
|
|
5512
|
-
} & {
|
|
5513
|
-
' $fragmentRefs'?: {
|
|
5514
|
-
'RoleFragmentFragment': RoleFragmentFragment;
|
|
5515
|
-
};
|
|
5516
|
-
})>;
|
|
5517
|
-
}>;
|
|
5518
|
-
};
|
|
5519
|
-
export type OrganizationQueryVariables = Exact<{
|
|
5520
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
5521
|
-
}>;
|
|
5522
|
-
export type OrganizationQuery = {
|
|
5523
|
-
__typename?: 'Query';
|
|
5524
|
-
organization: Array<({
|
|
5525
|
-
__typename?: 'Organization';
|
|
5526
|
-
roles: Array<({
|
|
5527
|
-
__typename?: 'Role';
|
|
5528
|
-
roleAssignments: Array<({
|
|
5529
|
-
__typename?: 'RoleAssignment';
|
|
5530
|
-
subject: ({
|
|
5531
|
-
__typename?: 'Subject';
|
|
5532
|
-
} & {
|
|
5533
|
-
' $fragmentRefs'?: {
|
|
5534
|
-
'SubjectFieldsFragment': SubjectFieldsFragment;
|
|
5535
|
-
};
|
|
5536
|
-
});
|
|
5537
|
-
} & {
|
|
5538
|
-
' $fragmentRefs'?: {
|
|
5539
|
-
'RoleAssignmentFragmentFragment': RoleAssignmentFragmentFragment;
|
|
5540
|
-
};
|
|
5541
|
-
})>;
|
|
5542
|
-
invitations: Array<({
|
|
5543
|
-
__typename?: 'Invitation';
|
|
5544
|
-
} & {
|
|
5545
|
-
' $fragmentRefs'?: {
|
|
5546
|
-
'InvitationFragmentFragment': InvitationFragmentFragment;
|
|
5547
|
-
};
|
|
5548
|
-
})>;
|
|
5549
|
-
} & {
|
|
5550
|
-
' $fragmentRefs'?: {
|
|
5551
|
-
'RoleFragmentFragment': RoleFragmentFragment;
|
|
5552
|
-
};
|
|
5553
|
-
})>;
|
|
5554
|
-
} & {
|
|
5555
|
-
' $fragmentRefs'?: {
|
|
5556
|
-
'OrganizationFragmentFragment': OrganizationFragmentFragment;
|
|
5557
|
-
};
|
|
5558
|
-
})>;
|
|
5559
|
-
};
|
|
5560
|
-
export type UpdateOrganizationMutationVariables = Exact<{
|
|
5561
|
-
updateOrganizationInput: Array<UpdateOrganizationInput> | UpdateOrganizationInput;
|
|
5562
|
-
}>;
|
|
5563
|
-
export type UpdateOrganizationMutation = {
|
|
5564
|
-
__typename?: 'Mutation';
|
|
5565
|
-
updateOrganization: Array<({
|
|
5566
|
-
__typename?: 'Organization';
|
|
5567
|
-
} & {
|
|
5568
|
-
' $fragmentRefs'?: {
|
|
5569
|
-
'OrganizationFragmentFragment': OrganizationFragmentFragment;
|
|
5570
|
-
};
|
|
5571
|
-
})>;
|
|
5572
|
-
};
|
|
5573
|
-
export type CreatePathPartFromParentMutationVariables = Exact<{
|
|
5574
|
-
input: Array<CreatePathPartFromParentInput> | CreatePathPartFromParentInput;
|
|
5575
|
-
}>;
|
|
5576
|
-
export type CreatePathPartFromParentMutation = {
|
|
5577
|
-
__typename?: 'Mutation';
|
|
5578
|
-
createPathPartFromParent: Array<({
|
|
5579
|
-
__typename?: 'PathPart';
|
|
5580
|
-
} & {
|
|
5581
|
-
' $fragmentRefs'?: {
|
|
5582
|
-
'PathPartFragmentFragment': PathPartFragmentFragment;
|
|
5583
|
-
};
|
|
5584
|
-
})>;
|
|
5585
|
-
};
|
|
5586
|
-
export type CreatePathPartFromPathMutationVariables = Exact<{
|
|
5587
|
-
input: Array<CreatePathPartFromPathInput> | CreatePathPartFromPathInput;
|
|
5588
|
-
}>;
|
|
5589
|
-
export type CreatePathPartFromPathMutation = {
|
|
5590
|
-
__typename?: 'Mutation';
|
|
5591
|
-
createPathPartFromPath: Array<({
|
|
5592
|
-
__typename?: 'PathPart';
|
|
5593
|
-
} & {
|
|
5594
|
-
' $fragmentRefs'?: {
|
|
5595
|
-
'PathPartFragmentFragment': PathPartFragmentFragment;
|
|
5596
|
-
};
|
|
5597
|
-
})>;
|
|
5598
|
-
};
|
|
5599
|
-
export type DetailedPathPartQueryVariables = Exact<{
|
|
5600
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
5601
|
-
}>;
|
|
5602
|
-
export type DetailedPathPartQuery = {
|
|
5603
|
-
__typename?: 'Query';
|
|
5604
|
-
pathPart: Array<({
|
|
5605
|
-
__typename?: 'PathPart';
|
|
5606
|
-
contentExperience?: {
|
|
5607
|
-
__typename?: 'ContentExperience';
|
|
5608
|
-
prn: any;
|
|
5609
|
-
} | null;
|
|
5610
|
-
parent?: ({
|
|
5611
|
-
__typename?: 'PathPart';
|
|
5612
|
-
} & {
|
|
5613
|
-
' $fragmentRefs'?: {
|
|
5614
|
-
'PathPartFragmentFragment': PathPartFragmentFragment;
|
|
5615
|
-
};
|
|
5616
|
-
}) | null;
|
|
5617
|
-
children: Array<({
|
|
5618
|
-
__typename?: 'PathPart';
|
|
5619
|
-
parent?: {
|
|
5620
|
-
__typename?: 'PathPart';
|
|
5621
|
-
prn: any;
|
|
5622
|
-
} | null;
|
|
5623
|
-
} & {
|
|
5624
|
-
' $fragmentRefs'?: {
|
|
5625
|
-
'PathPartFragmentFragment': PathPartFragmentFragment;
|
|
5626
|
-
};
|
|
5627
|
-
})>;
|
|
5628
|
-
} & {
|
|
5629
|
-
' $fragmentRefs'?: {
|
|
5630
|
-
'PathPartFragmentFragment': PathPartFragmentFragment;
|
|
5631
|
-
};
|
|
5632
|
-
})>;
|
|
5633
|
-
};
|
|
5634
|
-
export type PathPartQueryVariables = Exact<{
|
|
5635
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
5636
|
-
}>;
|
|
5637
|
-
export type PathPartQuery = {
|
|
5638
|
-
__typename?: 'Query';
|
|
5639
|
-
pathPart: Array<({
|
|
5640
|
-
__typename?: 'PathPart';
|
|
5641
|
-
contentExperience?: {
|
|
5642
|
-
__typename?: 'ContentExperience';
|
|
5643
|
-
prn: any;
|
|
5644
|
-
} | null;
|
|
5645
|
-
parent?: ({
|
|
5646
|
-
__typename?: 'PathPart';
|
|
5647
|
-
} & {
|
|
5648
|
-
' $fragmentRefs'?: {
|
|
5649
|
-
'PathPartFragmentFragment': PathPartFragmentFragment;
|
|
5650
|
-
};
|
|
5651
|
-
}) | null;
|
|
5652
|
-
} & {
|
|
5653
|
-
' $fragmentRefs'?: {
|
|
5654
|
-
'PathPartFragmentFragment': PathPartFragmentFragment;
|
|
5655
|
-
};
|
|
5656
|
-
})>;
|
|
5657
|
-
};
|
|
5658
|
-
export type PathPartFragmentFragment = {
|
|
5659
|
-
__typename?: 'PathPart';
|
|
5660
|
-
prn: any;
|
|
5661
|
-
slug: string;
|
|
5662
|
-
path: string;
|
|
5663
|
-
createdAt: any;
|
|
5664
|
-
updatedAt: any;
|
|
5665
|
-
hasContentExperience: boolean;
|
|
5666
|
-
amountOfChildren: number;
|
|
5667
|
-
amountOfChildrenWithContentExperiences: number;
|
|
5668
|
-
amountOfDescendants: number;
|
|
5669
|
-
amountOfDescendantsWithContentExperiences: number;
|
|
5670
|
-
_id: any;
|
|
5671
|
-
channel: {
|
|
5672
|
-
__typename?: 'Channel';
|
|
5673
|
-
prn: any;
|
|
5674
|
-
};
|
|
5675
|
-
contentExperience?: {
|
|
5676
|
-
__typename?: 'ContentExperience';
|
|
5677
|
-
prn: any;
|
|
5678
|
-
} | null;
|
|
5679
|
-
} & {
|
|
5680
|
-
' $fragmentName'?: 'PathPartFragmentFragment';
|
|
5681
|
-
};
|
|
5682
|
-
export type PathPartsQueryVariables = Exact<{
|
|
5683
|
-
paginate: PaginationOptionsInput;
|
|
5684
|
-
where?: InputMaybe<Array<PathPartsFilterInput> | PathPartsFilterInput>;
|
|
5685
|
-
orderBy?: InputMaybe<OrderOptionsInput>;
|
|
5686
|
-
optionsList: Array<ProcessedAssetOptionsInput> | ProcessedAssetOptionsInput;
|
|
5687
|
-
}>;
|
|
5688
|
-
export type PathPartsQuery = {
|
|
5689
|
-
__typename?: 'Query';
|
|
5690
|
-
pathParts: {
|
|
5691
|
-
__typename?: 'PathPartsConnection';
|
|
5692
|
-
totalCount: number;
|
|
5693
|
-
pageInfo: ({
|
|
5694
|
-
__typename?: 'PageInfo';
|
|
5695
|
-
} & {
|
|
5696
|
-
' $fragmentRefs'?: {
|
|
5697
|
-
'PaginationFragment': PaginationFragment;
|
|
5698
|
-
};
|
|
5699
|
-
});
|
|
5700
|
-
edges: Array<{
|
|
5701
|
-
__typename?: 'PathPartEdge';
|
|
5702
|
-
cursor: string;
|
|
5703
|
-
node: ({
|
|
5704
|
-
__typename?: 'PathPart';
|
|
5705
|
-
channel: ({
|
|
5706
|
-
__typename?: 'Channel';
|
|
5707
|
-
} & {
|
|
5708
|
-
' $fragmentRefs'?: {
|
|
5709
|
-
'ChannelFragmentFragment': ChannelFragmentFragment;
|
|
5710
|
-
};
|
|
5711
|
-
});
|
|
5712
|
-
contentExperience?: ({
|
|
5713
|
-
__typename?: 'ContentExperience';
|
|
5714
|
-
preview?: ({
|
|
5715
|
-
__typename?: 'Asset';
|
|
5716
|
-
processedUrls?: Array<string> | null;
|
|
5717
|
-
} & {
|
|
5718
|
-
' $fragmentRefs'?: {
|
|
5719
|
-
'AssetFragmentFragment': AssetFragmentFragment;
|
|
5720
|
-
};
|
|
5721
|
-
}) | null;
|
|
5722
|
-
} & {
|
|
5723
|
-
' $fragmentRefs'?: {
|
|
5724
|
-
'ContentExperienceFragmentFragment': ContentExperienceFragmentFragment;
|
|
5725
|
-
};
|
|
5726
|
-
}) | null;
|
|
5727
|
-
} & {
|
|
5728
|
-
' $fragmentRefs'?: {
|
|
5729
|
-
'PathPartFragmentFragment': PathPartFragmentFragment;
|
|
5730
|
-
};
|
|
5731
|
-
});
|
|
5732
|
-
}>;
|
|
5733
|
-
};
|
|
5734
|
-
};
|
|
5735
|
-
export type RemovePathPartMutationVariables = Exact<{
|
|
5736
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
5737
|
-
}>;
|
|
5738
|
-
export type RemovePathPartMutation = {
|
|
5739
|
-
__typename?: 'Mutation';
|
|
5740
|
-
removePathPart: Array<({
|
|
5741
|
-
__typename?: 'PathPart';
|
|
5742
|
-
} & {
|
|
5743
|
-
' $fragmentRefs'?: {
|
|
5744
|
-
'PathPartFragmentFragment': PathPartFragmentFragment;
|
|
5745
|
-
};
|
|
5746
|
-
})>;
|
|
5747
|
-
};
|
|
5748
|
-
export type UpdatePathPartMutationVariables = Exact<{
|
|
5749
|
-
input: Array<UpdatePathPartInput> | UpdatePathPartInput;
|
|
5750
|
-
}>;
|
|
5751
|
-
export type UpdatePathPartMutation = {
|
|
5752
|
-
__typename?: 'Mutation';
|
|
5753
|
-
updatePathPart: Array<({
|
|
5754
|
-
__typename?: 'PathPart';
|
|
5755
|
-
} & {
|
|
5756
|
-
' $fragmentRefs'?: {
|
|
5757
|
-
'PathPartFragmentFragment': PathPartFragmentFragment;
|
|
5758
|
-
};
|
|
5759
|
-
})>;
|
|
5760
|
-
};
|
|
5761
|
-
export type UpdatePathPartFromPathMutationVariables = Exact<{
|
|
5762
|
-
input: Array<UpdatePathPartByPathInput> | UpdatePathPartByPathInput;
|
|
5763
|
-
}>;
|
|
5764
|
-
export type UpdatePathPartFromPathMutation = {
|
|
5765
|
-
__typename?: 'Mutation';
|
|
5766
|
-
updatePathPartFromPath: Array<({
|
|
5767
|
-
__typename?: 'PathPart';
|
|
5768
|
-
} & {
|
|
5769
|
-
' $fragmentRefs'?: {
|
|
5770
|
-
'PathPartFragmentFragment': PathPartFragmentFragment;
|
|
5771
|
-
};
|
|
5772
|
-
})>;
|
|
5773
|
-
};
|
|
5774
|
-
export type AddPlateMaintainerMutationVariables = Exact<{
|
|
5775
|
-
email: Scalars['String']['input'];
|
|
5776
|
-
}>;
|
|
5777
|
-
export type AddPlateMaintainerMutation = {
|
|
5778
|
-
__typename?: 'Mutation';
|
|
5779
|
-
addPlateMaintainer: ({
|
|
5780
|
-
__typename?: 'Subject';
|
|
5781
|
-
} & {
|
|
5782
|
-
' $fragmentRefs'?: {
|
|
5783
|
-
'PlateMaintainerFragmentFragment': PlateMaintainerFragmentFragment;
|
|
5784
|
-
};
|
|
5785
|
-
});
|
|
5786
|
-
};
|
|
5787
|
-
export type AllPlateMaintainersQueryVariables = Exact<{
|
|
5788
|
-
[key: string]: never;
|
|
5789
|
-
}>;
|
|
5790
|
-
export type AllPlateMaintainersQuery = {
|
|
5791
|
-
__typename?: 'Query';
|
|
5792
|
-
plateMaintainers: Array<({
|
|
5793
|
-
__typename?: 'Subject';
|
|
5794
|
-
} & {
|
|
5795
|
-
' $fragmentRefs'?: {
|
|
5796
|
-
'PlateMaintainerFragmentFragment': PlateMaintainerFragmentFragment;
|
|
5797
|
-
};
|
|
5798
|
-
})>;
|
|
5799
|
-
};
|
|
5800
|
-
export type PlateMaintainerFragmentFragment = {
|
|
5801
|
-
__typename?: 'Subject';
|
|
5802
|
-
id: string;
|
|
5803
|
-
language: string;
|
|
5804
|
-
email: string;
|
|
5805
|
-
_id: string;
|
|
5806
|
-
name: {
|
|
5807
|
-
__typename?: 'Name';
|
|
5808
|
-
first: string;
|
|
5809
|
-
last: string;
|
|
5810
|
-
};
|
|
5811
|
-
} & {
|
|
5812
|
-
' $fragmentName'?: 'PlateMaintainerFragmentFragment';
|
|
5813
|
-
};
|
|
5814
|
-
export type RemovePlateMaintainerMutationVariables = Exact<{
|
|
5815
|
-
removePlateMaintainerId: Scalars['String']['input'];
|
|
5816
|
-
}>;
|
|
5817
|
-
export type RemovePlateMaintainerMutation = {
|
|
5818
|
-
__typename?: 'Mutation';
|
|
5819
|
-
removePlateMaintainer: {
|
|
5820
|
-
__typename?: 'Subject';
|
|
5821
|
-
id: string;
|
|
5822
|
-
};
|
|
5823
|
-
};
|
|
5824
|
-
export type RemoveRoleAssignmentMutationVariables = Exact<{
|
|
5825
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
5826
|
-
}>;
|
|
5827
|
-
export type RemoveRoleAssignmentMutation = {
|
|
5828
|
-
__typename?: 'Mutation';
|
|
5829
|
-
removeRoleAssignment: Array<({
|
|
5830
|
-
__typename?: 'RoleAssignment';
|
|
5831
|
-
role: {
|
|
5832
|
-
__typename?: 'Role';
|
|
5833
|
-
createdAt: any;
|
|
5834
|
-
name: DefaultRoleName;
|
|
5835
|
-
prn: any;
|
|
5836
|
-
updatedAt: any;
|
|
5837
|
-
};
|
|
5838
|
-
} & {
|
|
5839
|
-
' $fragmentRefs'?: {
|
|
5840
|
-
'RoleAssignmentFragmentFragment': RoleAssignmentFragmentFragment;
|
|
5841
|
-
};
|
|
5842
|
-
})>;
|
|
5843
|
-
};
|
|
5844
|
-
export type RoleAssignmentFragmentFragment = {
|
|
5845
|
-
__typename?: 'RoleAssignment';
|
|
5846
|
-
prn: any;
|
|
5847
|
-
createdAt: any;
|
|
5848
|
-
updatedAt: any;
|
|
5849
|
-
_id: any;
|
|
5850
|
-
subject: {
|
|
5851
|
-
__typename?: 'Subject';
|
|
5852
|
-
id: string;
|
|
5853
|
-
};
|
|
5854
|
-
} & {
|
|
5855
|
-
' $fragmentName'?: 'RoleAssignmentFragmentFragment';
|
|
5856
|
-
};
|
|
5857
|
-
export type RoleAssignmentsForCurrentSubjectQueryVariables = Exact<{
|
|
5858
|
-
[key: string]: never;
|
|
5859
|
-
}>;
|
|
5860
|
-
export type RoleAssignmentsForCurrentSubjectQuery = {
|
|
5861
|
-
__typename?: 'Query';
|
|
5862
|
-
roleAssignmentsForCurrentSubject: Array<({
|
|
5863
|
-
__typename?: 'RoleAssignment';
|
|
5864
|
-
role: ({
|
|
5865
|
-
__typename?: 'Role';
|
|
5866
|
-
organization: ({
|
|
5867
|
-
__typename?: 'Organization';
|
|
5868
|
-
} & {
|
|
5869
|
-
' $fragmentRefs'?: {
|
|
5870
|
-
'OrganizationFragmentFragment': OrganizationFragmentFragment;
|
|
5871
|
-
};
|
|
5872
|
-
});
|
|
5873
|
-
} & {
|
|
5874
|
-
' $fragmentRefs'?: {
|
|
5875
|
-
'RoleFragmentFragment': RoleFragmentFragment;
|
|
5876
|
-
};
|
|
5877
|
-
});
|
|
5878
|
-
} & {
|
|
5879
|
-
' $fragmentRefs'?: {
|
|
5880
|
-
'RoleAssignmentFragmentFragment': RoleAssignmentFragmentFragment;
|
|
5881
|
-
};
|
|
5882
|
-
})>;
|
|
5883
|
-
};
|
|
5884
|
-
export type RoleAssignmentsForOrganizationQueryVariables = Exact<{
|
|
5885
|
-
[key: string]: never;
|
|
5886
|
-
}>;
|
|
5887
|
-
export type RoleAssignmentsForOrganizationQuery = {
|
|
5888
|
-
__typename?: 'Query';
|
|
5889
|
-
roleAssignmentsForOrganization: Array<({
|
|
5890
|
-
__typename?: 'RoleAssignment';
|
|
5891
|
-
role: ({
|
|
5892
|
-
__typename?: 'Role';
|
|
5893
|
-
} & {
|
|
5894
|
-
' $fragmentRefs'?: {
|
|
5895
|
-
'RoleFragmentFragment': RoleFragmentFragment;
|
|
5896
|
-
};
|
|
5897
|
-
});
|
|
5898
|
-
subject: ({
|
|
5899
|
-
__typename?: 'Subject';
|
|
5900
|
-
} & {
|
|
5901
|
-
' $fragmentRefs'?: {
|
|
5902
|
-
'SubjectFieldsFragment': SubjectFieldsFragment;
|
|
5903
|
-
};
|
|
5904
|
-
});
|
|
5905
|
-
} & {
|
|
5906
|
-
' $fragmentRefs'?: {
|
|
5907
|
-
'RoleAssignmentFragmentFragment': RoleAssignmentFragmentFragment;
|
|
5908
|
-
};
|
|
5909
|
-
})>;
|
|
5910
|
-
};
|
|
5911
|
-
export type RoleFragmentFragment = {
|
|
5912
|
-
__typename?: 'Role';
|
|
5913
|
-
prn: any;
|
|
5914
|
-
name: DefaultRoleName;
|
|
5915
|
-
createdAt: any;
|
|
5916
|
-
updatedAt: any;
|
|
5917
|
-
_id: any;
|
|
5918
|
-
} & {
|
|
5919
|
-
' $fragmentName'?: 'RoleFragmentFragment';
|
|
5920
|
-
};
|
|
5921
|
-
export type RunSeederMutationVariables = Exact<{
|
|
5922
|
-
seedType: SeedType;
|
|
5923
|
-
}>;
|
|
5924
|
-
export type RunSeederMutation = {
|
|
5925
|
-
__typename?: 'Mutation';
|
|
5926
|
-
runSeeder: boolean;
|
|
5927
|
-
};
|
|
5928
|
-
export type CurrentSubjectQueryVariables = Exact<{
|
|
5929
|
-
[key: string]: never;
|
|
5930
|
-
}>;
|
|
5931
|
-
export type CurrentSubjectQuery = {
|
|
5932
|
-
__typename?: 'Query';
|
|
5933
|
-
currentSubject: {
|
|
5934
|
-
__typename?: 'Subject';
|
|
5935
|
-
id: string;
|
|
5936
|
-
email: string;
|
|
5937
|
-
isPlateMaintainer: boolean;
|
|
5938
|
-
language: string;
|
|
5939
|
-
name: {
|
|
5940
|
-
__typename?: 'Name';
|
|
5941
|
-
first: string;
|
|
5942
|
-
last: string;
|
|
5943
|
-
};
|
|
5944
|
-
roleAssignments: Array<({
|
|
5945
|
-
__typename?: 'RoleAssignment';
|
|
5946
|
-
} & {
|
|
5947
|
-
' $fragmentRefs'?: {
|
|
5948
|
-
'RoleAssignmentFragmentFragment': RoleAssignmentFragmentFragment;
|
|
5949
|
-
};
|
|
5950
|
-
})>;
|
|
5951
|
-
};
|
|
5952
|
-
};
|
|
5953
|
-
export type SubjectFieldsFragment = {
|
|
5954
|
-
__typename?: 'Subject';
|
|
5955
|
-
email: string;
|
|
5956
|
-
_id: string;
|
|
5957
|
-
name: {
|
|
5958
|
-
__typename?: 'Name';
|
|
5959
|
-
first: string;
|
|
5960
|
-
last: string;
|
|
5961
|
-
};
|
|
5962
|
-
} & {
|
|
5963
|
-
' $fragmentName'?: 'SubjectFieldsFragment';
|
|
5964
|
-
};
|
|
5965
|
-
export type CreateTagMutationVariables = Exact<{
|
|
5966
|
-
createTagInput: Array<CreateTagInput> | CreateTagInput;
|
|
5967
|
-
}>;
|
|
5968
|
-
export type CreateTagMutation = {
|
|
5969
|
-
__typename?: 'Mutation';
|
|
5970
|
-
createTag: Array<({
|
|
5971
|
-
__typename?: 'Tag';
|
|
5972
|
-
} & {
|
|
5973
|
-
' $fragmentRefs'?: {
|
|
5974
|
-
'TagFragmentFragment': TagFragmentFragment;
|
|
5975
|
-
};
|
|
5976
|
-
})>;
|
|
5977
|
-
};
|
|
5978
|
-
export type RemoveTagMutationVariables = Exact<{
|
|
5979
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
5980
|
-
}>;
|
|
5981
|
-
export type RemoveTagMutation = {
|
|
5982
|
-
__typename?: 'Mutation';
|
|
5983
|
-
removeTag: Array<({
|
|
5984
|
-
__typename?: 'Tag';
|
|
5985
|
-
} & {
|
|
5986
|
-
' $fragmentRefs'?: {
|
|
5987
|
-
'TagFragmentFragment': TagFragmentFragment;
|
|
5988
|
-
};
|
|
5989
|
-
})>;
|
|
5990
|
-
};
|
|
5991
2123
|
export type TagQueryVariables = Exact<{
|
|
5992
2124
|
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
5993
2125
|
}>;
|
|
@@ -5995,20 +2127,6 @@ export type TagQuery = {
|
|
|
5995
2127
|
__typename?: 'Query';
|
|
5996
2128
|
tag: Array<({
|
|
5997
2129
|
__typename?: 'Tag';
|
|
5998
|
-
children: Array<({
|
|
5999
|
-
__typename?: 'Tag';
|
|
6000
|
-
} & {
|
|
6001
|
-
' $fragmentRefs'?: {
|
|
6002
|
-
'TagFragmentFragment': TagFragmentFragment;
|
|
6003
|
-
};
|
|
6004
|
-
})>;
|
|
6005
|
-
parent?: ({
|
|
6006
|
-
__typename?: 'Tag';
|
|
6007
|
-
} & {
|
|
6008
|
-
' $fragmentRefs'?: {
|
|
6009
|
-
'TagFragmentFragment': TagFragmentFragment;
|
|
6010
|
-
};
|
|
6011
|
-
}) | null;
|
|
6012
2130
|
} & {
|
|
6013
2131
|
' $fragmentRefs'?: {
|
|
6014
2132
|
'TagFragmentFragment': TagFragmentFragment;
|
|
@@ -6035,309 +2153,5 @@ export type TagFragmentFragment = {
|
|
|
6035
2153
|
} & {
|
|
6036
2154
|
' $fragmentName'?: 'TagFragmentFragment';
|
|
6037
2155
|
};
|
|
6038
|
-
export type TagsQueryVariables = Exact<{
|
|
6039
|
-
paginate: PaginationOptionsInput;
|
|
6040
|
-
where?: InputMaybe<Array<TagsFilterInput> | TagsFilterInput>;
|
|
6041
|
-
orderBy?: InputMaybe<OrderOptionsInput>;
|
|
6042
|
-
}>;
|
|
6043
|
-
export type TagsQuery = {
|
|
6044
|
-
__typename?: 'Query';
|
|
6045
|
-
tags: {
|
|
6046
|
-
__typename?: 'TagsConnection';
|
|
6047
|
-
totalCount: number;
|
|
6048
|
-
pageInfo: ({
|
|
6049
|
-
__typename?: 'PageInfo';
|
|
6050
|
-
} & {
|
|
6051
|
-
' $fragmentRefs'?: {
|
|
6052
|
-
'PaginationFragment': PaginationFragment;
|
|
6053
|
-
};
|
|
6054
|
-
});
|
|
6055
|
-
edges: Array<{
|
|
6056
|
-
__typename?: 'TagEdge';
|
|
6057
|
-
cursor: string;
|
|
6058
|
-
node: ({
|
|
6059
|
-
__typename?: 'Tag';
|
|
6060
|
-
parent?: {
|
|
6061
|
-
__typename?: 'Tag';
|
|
6062
|
-
prn: any;
|
|
6063
|
-
forceVisibilityOnDescendants: boolean;
|
|
6064
|
-
} | null;
|
|
6065
|
-
} & {
|
|
6066
|
-
' $fragmentRefs'?: {
|
|
6067
|
-
'TagFragmentFragment': TagFragmentFragment;
|
|
6068
|
-
};
|
|
6069
|
-
});
|
|
6070
|
-
}>;
|
|
6071
|
-
};
|
|
6072
|
-
};
|
|
6073
|
-
export type UpdateTagMutationVariables = Exact<{
|
|
6074
|
-
updateTagInput: Array<UpdateTagInput> | UpdateTagInput;
|
|
6075
|
-
}>;
|
|
6076
|
-
export type UpdateTagMutation = {
|
|
6077
|
-
__typename?: 'Mutation';
|
|
6078
|
-
updateTag: Array<({
|
|
6079
|
-
__typename?: 'Tag';
|
|
6080
|
-
} & {
|
|
6081
|
-
' $fragmentRefs'?: {
|
|
6082
|
-
'TagFragmentFragment': TagFragmentFragment;
|
|
6083
|
-
};
|
|
6084
|
-
})>;
|
|
6085
|
-
};
|
|
6086
|
-
export type CreateThemeMutationVariables = Exact<{
|
|
6087
|
-
input: Array<CreateThemeInput> | CreateThemeInput;
|
|
6088
|
-
}>;
|
|
6089
|
-
export type CreateThemeMutation = {
|
|
6090
|
-
__typename?: 'Mutation';
|
|
6091
|
-
createTheme: Array<({
|
|
6092
|
-
__typename?: 'Theme';
|
|
6093
|
-
} & {
|
|
6094
|
-
' $fragmentRefs'?: {
|
|
6095
|
-
'ThemeFragmentFragment': ThemeFragmentFragment;
|
|
6096
|
-
};
|
|
6097
|
-
})>;
|
|
6098
|
-
};
|
|
6099
|
-
export type RemoveThemeMutationVariables = Exact<{
|
|
6100
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
6101
|
-
}>;
|
|
6102
|
-
export type RemoveThemeMutation = {
|
|
6103
|
-
__typename?: 'Mutation';
|
|
6104
|
-
removeTheme: Array<({
|
|
6105
|
-
__typename?: 'Theme';
|
|
6106
|
-
} & {
|
|
6107
|
-
' $fragmentRefs'?: {
|
|
6108
|
-
'ThemeFragmentFragment': ThemeFragmentFragment;
|
|
6109
|
-
};
|
|
6110
|
-
})>;
|
|
6111
|
-
};
|
|
6112
|
-
export type ThemeQueryVariables = Exact<{
|
|
6113
|
-
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
6114
|
-
whereBuildingBlocks?: InputMaybe<Array<BuildingBlocksFilterInput> | BuildingBlocksFilterInput>;
|
|
6115
|
-
}>;
|
|
6116
|
-
export type ThemeQuery = {
|
|
6117
|
-
__typename?: 'Query';
|
|
6118
|
-
theme: Array<({
|
|
6119
|
-
__typename?: 'Theme';
|
|
6120
|
-
buildingBlocks: Array<({
|
|
6121
|
-
__typename?: 'BuildingBlock';
|
|
6122
|
-
buildingBlockFields: Array<({
|
|
6123
|
-
__typename?: 'BuildingBlockField';
|
|
6124
|
-
} & {
|
|
6125
|
-
' $fragmentRefs'?: {
|
|
6126
|
-
'BuildingBlockFieldFragmentFragment': BuildingBlockFieldFragmentFragment;
|
|
6127
|
-
};
|
|
6128
|
-
})>;
|
|
6129
|
-
} & {
|
|
6130
|
-
' $fragmentRefs'?: {
|
|
6131
|
-
'BuildingBlockFragmentFragment': BuildingBlockFragmentFragment;
|
|
6132
|
-
};
|
|
6133
|
-
})>;
|
|
6134
|
-
} & {
|
|
6135
|
-
' $fragmentRefs'?: {
|
|
6136
|
-
'ThemeFragmentFragment': ThemeFragmentFragment;
|
|
6137
|
-
};
|
|
6138
|
-
})>;
|
|
6139
|
-
};
|
|
6140
|
-
export type ThemeFragmentFragment = {
|
|
6141
|
-
__typename?: 'Theme';
|
|
6142
|
-
prn: any;
|
|
6143
|
-
name: string;
|
|
6144
|
-
repositoryUrl: string;
|
|
6145
|
-
createdAt: any;
|
|
6146
|
-
updatedAt: any;
|
|
6147
|
-
_id: any;
|
|
6148
|
-
} & {
|
|
6149
|
-
' $fragmentName'?: 'ThemeFragmentFragment';
|
|
6150
|
-
};
|
|
6151
|
-
export type ThemesQueryVariables = Exact<{
|
|
6152
|
-
paginate: PaginationOptionsInput;
|
|
6153
|
-
orderBy?: InputMaybe<OrderOptionsInput>;
|
|
6154
|
-
where?: InputMaybe<Array<ThemesFilterInput> | ThemesFilterInput>;
|
|
6155
|
-
}>;
|
|
6156
|
-
export type ThemesQuery = {
|
|
6157
|
-
__typename?: 'Query';
|
|
6158
|
-
themes: {
|
|
6159
|
-
__typename?: 'ThemesConnection';
|
|
6160
|
-
totalCount: number;
|
|
6161
|
-
edges: Array<{
|
|
6162
|
-
__typename?: 'ThemeEdge';
|
|
6163
|
-
cursor: string;
|
|
6164
|
-
node: ({
|
|
6165
|
-
__typename?: 'Theme';
|
|
6166
|
-
} & {
|
|
6167
|
-
' $fragmentRefs'?: {
|
|
6168
|
-
'ThemeFragmentFragment': ThemeFragmentFragment;
|
|
6169
|
-
};
|
|
6170
|
-
});
|
|
6171
|
-
}>;
|
|
6172
|
-
pageInfo: ({
|
|
6173
|
-
__typename?: 'PageInfo';
|
|
6174
|
-
} & {
|
|
6175
|
-
' $fragmentRefs'?: {
|
|
6176
|
-
'PaginationFragment': PaginationFragment;
|
|
6177
|
-
};
|
|
6178
|
-
});
|
|
6179
|
-
};
|
|
6180
|
-
};
|
|
6181
|
-
export type UpdateThemeMutationVariables = Exact<{
|
|
6182
|
-
input: Array<UpdateThemeInput> | UpdateThemeInput;
|
|
6183
|
-
}>;
|
|
6184
|
-
export type UpdateThemeMutation = {
|
|
6185
|
-
__typename?: 'Mutation';
|
|
6186
|
-
updateTheme: Array<({
|
|
6187
|
-
__typename?: 'Theme';
|
|
6188
|
-
} & {
|
|
6189
|
-
' $fragmentRefs'?: {
|
|
6190
|
-
'ThemeFragmentFragment': ThemeFragmentFragment;
|
|
6191
|
-
};
|
|
6192
|
-
})>;
|
|
6193
|
-
};
|
|
6194
|
-
export declare const ApiTokenFragmentFragmentDoc: DocumentNode<ApiTokenFragmentFragment, unknown>;
|
|
6195
|
-
export declare const GridFragmentFragmentDoc: DocumentNode<GridFragmentFragment, unknown>;
|
|
6196
|
-
export declare const GridPlacementFragmentFragmentDoc: DocumentNode<GridPlacementFragmentFragment, unknown>;
|
|
6197
|
-
export declare const AssetFragmentFragmentDoc: DocumentNode<AssetFragmentFragment, unknown>;
|
|
6198
|
-
export declare const ExperienceComponentFragmentFragmentDoc: DocumentNode<ExperienceComponentFragmentFragment, unknown>;
|
|
6199
|
-
export declare const BuildingBlockFragmentFragmentDoc: DocumentNode<BuildingBlockFragmentFragment, unknown>;
|
|
6200
|
-
export declare const ContentValidationRuleFragmentFragmentDoc: DocumentNode<ContentValidationRuleFragmentFragment, unknown>;
|
|
6201
|
-
export declare const BuildingBlockFieldFragmentFragmentDoc: DocumentNode<BuildingBlockFieldFragmentFragment, unknown>;
|
|
6202
|
-
export declare const BuildingBlockFieldFulfillmentFragmentFragmentDoc: DocumentNode<BuildingBlockFieldFulfillmentFragmentFragment, unknown>;
|
|
6203
|
-
export declare const ContentValueFragmentFragmentDoc: DocumentNode<ContentValueFragmentFragment, unknown>;
|
|
6204
|
-
export declare const ContentItemFragmentFragmentDoc: DocumentNode<ContentItemFragmentFragment, unknown>;
|
|
6205
|
-
export declare const ContentFieldFragmentFragmentDoc: DocumentNode<ContentFieldFragmentFragment, unknown>;
|
|
6206
|
-
export declare const BlueprintFragmentFragmentDoc: DocumentNode<BlueprintFragmentFragment, unknown>;
|
|
6207
|
-
export declare const ChannelFragmentFragmentDoc: DocumentNode<ChannelFragmentFragment, unknown>;
|
|
6208
2156
|
export declare const TagFragmentFragmentDoc: DocumentNode<TagFragmentFragment, unknown>;
|
|
6209
|
-
export declare const ContentExperienceFragmentFragmentDoc: DocumentNode<ContentExperienceFragmentFragment, unknown>;
|
|
6210
|
-
export declare const ContentTypeFragmentFragmentDoc: DocumentNode<ContentTypeFragmentFragment, unknown>;
|
|
6211
|
-
export declare const PaginationFragmentDoc: DocumentNode<PaginationFragment, unknown>;
|
|
6212
|
-
export declare const GridDefinitionFragmentFragmentDoc: DocumentNode<GridDefinitionFragmentFragment, unknown>;
|
|
6213
|
-
export declare const InvitationFragmentFragmentDoc: DocumentNode<InvitationFragmentFragment, unknown>;
|
|
6214
|
-
export declare const OrganizationFragmentFragmentDoc: DocumentNode<OrganizationFragmentFragment, unknown>;
|
|
6215
|
-
export declare const PathPartFragmentFragmentDoc: DocumentNode<PathPartFragmentFragment, unknown>;
|
|
6216
|
-
export declare const PlateMaintainerFragmentFragmentDoc: DocumentNode<PlateMaintainerFragmentFragment, unknown>;
|
|
6217
|
-
export declare const RoleAssignmentFragmentFragmentDoc: DocumentNode<RoleAssignmentFragmentFragment, unknown>;
|
|
6218
|
-
export declare const RoleFragmentFragmentDoc: DocumentNode<RoleFragmentFragment, unknown>;
|
|
6219
|
-
export declare const SubjectFieldsFragmentDoc: DocumentNode<SubjectFieldsFragment, unknown>;
|
|
6220
|
-
export declare const ThemeFragmentFragmentDoc: DocumentNode<ThemeFragmentFragment, unknown>;
|
|
6221
|
-
export declare const ApiTokenDocument: DocumentNode<ApiTokenQuery, ApiTokenQueryVariables>;
|
|
6222
|
-
export declare const ApiTokensDocument: DocumentNode<ApiTokensQuery, ApiTokensQueryVariables>;
|
|
6223
|
-
export declare const CreateApiTokenDocument: DocumentNode<CreateApiTokenMutation, CreateApiTokenMutationVariables>;
|
|
6224
|
-
export declare const RemoveApiTokenDocument: DocumentNode<RemoveApiTokenMutation, RemoveApiTokenMutationVariables>;
|
|
6225
|
-
export declare const UpdateApiTokenDocument: DocumentNode<UpdateApiTokenMutation, UpdateApiTokenMutationVariables>;
|
|
6226
|
-
export declare const ConfirmAssetUploadDocument: DocumentNode<ConfirmAssetUploadMutation, ConfirmAssetUploadMutationVariables>;
|
|
6227
|
-
export declare const GenerateAssetUploadUrlDocument: DocumentNode<GenerateAssetUploadUrlMutation, GenerateAssetUploadUrlMutationVariables>;
|
|
6228
|
-
export declare const BlueprintsDocument: DocumentNode<BlueprintsQuery, BlueprintsQueryVariables>;
|
|
6229
|
-
export declare const CopyBlueprintDocument: DocumentNode<CopyBlueprintMutation, CopyBlueprintMutationVariables>;
|
|
6230
|
-
export declare const CreateBlueprintDocument: DocumentNode<CreateBlueprintMutation, CreateBlueprintMutationVariables>;
|
|
6231
|
-
export declare const CreateBlueprintFromContentExperienceDocument: DocumentNode<CreateBlueprintFromContentExperienceMutation, CreateBlueprintFromContentExperienceMutationVariables>;
|
|
6232
|
-
export declare const RemoveBlueprintDocument: DocumentNode<RemoveBlueprintMutation, RemoveBlueprintMutationVariables>;
|
|
6233
|
-
export declare const SingleBlueprintDocument: DocumentNode<SingleBlueprintQuery, SingleBlueprintQueryVariables>;
|
|
6234
|
-
export declare const SyncBlueprintDocument: DocumentNode<SyncBlueprintMutation, SyncBlueprintMutationVariables>;
|
|
6235
|
-
export declare const UpdateBlueprintDocument: DocumentNode<UpdateBlueprintMutation, UpdateBlueprintMutationVariables>;
|
|
6236
|
-
export declare const CreateBuildingBlockFieldFulfillmentsDocument: DocumentNode<CreateBuildingBlockFieldFulfillmentsMutation, CreateBuildingBlockFieldFulfillmentsMutationVariables>;
|
|
6237
|
-
export declare const RemoveBuildingBlockFieldFulfillmentDocument: DocumentNode<RemoveBuildingBlockFieldFulfillmentMutation, RemoveBuildingBlockFieldFulfillmentMutationVariables>;
|
|
6238
|
-
export declare const UpdateBuildingBlockFieldFulfillmentDocument: DocumentNode<UpdateBuildingBlockFieldFulfillmentMutation, UpdateBuildingBlockFieldFulfillmentMutationVariables>;
|
|
6239
|
-
export declare const CreateBuildingBlockFieldDocument: DocumentNode<CreateBuildingBlockFieldMutation, CreateBuildingBlockFieldMutationVariables>;
|
|
6240
|
-
export declare const RemoveBuildingBlockFieldDocument: DocumentNode<RemoveBuildingBlockFieldMutation, RemoveBuildingBlockFieldMutationVariables>;
|
|
6241
|
-
export declare const UpdateBuildingBlockFieldDocument: DocumentNode<UpdateBuildingBlockFieldMutation, UpdateBuildingBlockFieldMutationVariables>;
|
|
6242
|
-
export declare const BuildingBlockDocument: DocumentNode<BuildingBlockQuery, BuildingBlockQueryVariables>;
|
|
6243
|
-
export declare const CreateBuildingBlockDocument: DocumentNode<CreateBuildingBlockMutation, CreateBuildingBlockMutationVariables>;
|
|
6244
|
-
export declare const RemoveBuildingBlockDocument: DocumentNode<RemoveBuildingBlockMutation, RemoveBuildingBlockMutationVariables>;
|
|
6245
|
-
export declare const UpdateBuildingBlockDocument: DocumentNode<UpdateBuildingBlockMutation, UpdateBuildingBlockMutationVariables>;
|
|
6246
|
-
export declare const CasStringMatchesDocument: DocumentNode<CasStringMatchesQuery, CasStringMatchesQueryVariables>;
|
|
6247
|
-
export declare const AllChannelsDocument: DocumentNode<AllChannelsQuery, AllChannelsQueryVariables>;
|
|
6248
|
-
export declare const CreateChannelDocument: DocumentNode<CreateChannelMutation, CreateChannelMutationVariables>;
|
|
6249
|
-
export declare const RemoveChannelDocument: DocumentNode<RemoveChannelMutation, RemoveChannelMutationVariables>;
|
|
6250
|
-
export declare const SingleChannelDocument: DocumentNode<SingleChannelQuery, SingleChannelQueryVariables>;
|
|
6251
|
-
export declare const SingleChannelWithBlueprintsDocument: DocumentNode<SingleChannelWithBlueprintsQuery, SingleChannelWithBlueprintsQueryVariables>;
|
|
6252
|
-
export declare const UpdateChannelDocument: DocumentNode<UpdateChannelMutation, UpdateChannelMutationVariables>;
|
|
6253
|
-
export declare const AllContentExperiencesDocument: DocumentNode<AllContentExperiencesQuery, AllContentExperiencesQueryVariables>;
|
|
6254
|
-
export declare const CreateContentExperienceWithExistingPathPartDocument: DocumentNode<CreateContentExperienceWithExistingPathPartMutation, CreateContentExperienceWithExistingPathPartMutationVariables>;
|
|
6255
|
-
export declare const CreateContentExperienceWithNewPathPartDocument: DocumentNode<CreateContentExperienceWithNewPathPartMutation, CreateContentExperienceWithNewPathPartMutationVariables>;
|
|
6256
|
-
export declare const RemoveContentExperienceDocument: DocumentNode<RemoveContentExperienceMutation, RemoveContentExperienceMutationVariables>;
|
|
6257
|
-
export declare const SingleContentExperienceDocument: DocumentNode<SingleContentExperienceQuery, SingleContentExperienceQueryVariables>;
|
|
6258
|
-
export declare const SingleContentExperienceWithPathPartDocument: DocumentNode<SingleContentExperienceWithPathPartQuery, SingleContentExperienceWithPathPartQueryVariables>;
|
|
6259
|
-
export declare const UpdateContentExperienceDocument: DocumentNode<UpdateContentExperienceMutation, UpdateContentExperienceMutationVariables>;
|
|
6260
|
-
export declare const ContentFieldsDocument: DocumentNode<ContentFieldsQuery, ContentFieldsQueryVariables>;
|
|
6261
|
-
export declare const CreateContentFieldDocument: DocumentNode<CreateContentFieldMutation, CreateContentFieldMutationVariables>;
|
|
6262
|
-
export declare const RemoveContentFieldDocument: DocumentNode<RemoveContentFieldMutation, RemoveContentFieldMutationVariables>;
|
|
6263
|
-
export declare const UpdateContentFieldDocument: DocumentNode<UpdateContentFieldMutation, UpdateContentFieldMutationVariables>;
|
|
6264
|
-
export declare const AllContentItemsDocument: DocumentNode<AllContentItemsQuery, AllContentItemsQueryVariables>;
|
|
6265
|
-
export declare const CreateContentItemDocument: DocumentNode<CreateContentItemMutation, CreateContentItemMutationVariables>;
|
|
6266
|
-
export declare const RemoveContentItemDocument: DocumentNode<RemoveContentItemMutation, RemoveContentItemMutationVariables>;
|
|
6267
|
-
export declare const SingleContentItemDocument: DocumentNode<SingleContentItemQuery, SingleContentItemQueryVariables>;
|
|
6268
|
-
export declare const UpdateContentItemDocument: DocumentNode<UpdateContentItemMutation, UpdateContentItemMutationVariables>;
|
|
6269
|
-
export declare const AllContentTypesDocument: DocumentNode<AllContentTypesQuery, AllContentTypesQueryVariables>;
|
|
6270
|
-
export declare const ContentTypeDocument: DocumentNode<ContentTypeQuery, ContentTypeQueryVariables>;
|
|
6271
|
-
export declare const ContentTypeWithContentItemsDocument: DocumentNode<ContentTypeWithContentItemsQuery, ContentTypeWithContentItemsQueryVariables>;
|
|
6272
|
-
export declare const CreateContentTypeDocument: DocumentNode<CreateContentTypeMutation, CreateContentTypeMutationVariables>;
|
|
6273
|
-
export declare const RemoveContentTypeDocument: DocumentNode<RemoveContentTypeMutation, RemoveContentTypeMutationVariables>;
|
|
6274
|
-
export declare const UpdateContentTypeDocument: DocumentNode<UpdateContentTypeMutation, UpdateContentTypeMutationVariables>;
|
|
6275
|
-
export declare const CreateAllowedValuesContentValidationRuleDocument: DocumentNode<CreateAllowedValuesContentValidationRuleMutation, CreateAllowedValuesContentValidationRuleMutationVariables>;
|
|
6276
|
-
export declare const CreateCountContentValidationRuleDocument: DocumentNode<CreateCountContentValidationRuleMutation, CreateCountContentValidationRuleMutationVariables>;
|
|
6277
|
-
export declare const CreateDateBetweenContentValidationRuleDocument: DocumentNode<CreateDateBetweenContentValidationRuleMutation, CreateDateBetweenContentValidationRuleMutationVariables>;
|
|
6278
|
-
export declare const CreateDecimalCountContentValidationRuleDocument: DocumentNode<CreateDecimalCountContentValidationRuleMutation, CreateDecimalCountContentValidationRuleMutationVariables>;
|
|
6279
|
-
export declare const CreateNumberBetweenContentValidationRuleDocument: DocumentNode<CreateNumberBetweenContentValidationRuleMutation, CreateNumberBetweenContentValidationRuleMutationVariables>;
|
|
6280
|
-
export declare const CreateRelatableContentTypesContentValidationRuleDocument: DocumentNode<CreateRelatableContentTypesContentValidationRuleMutation, CreateRelatableContentTypesContentValidationRuleMutationVariables>;
|
|
6281
|
-
export declare const CreateStringFormatContentValidationRuleDocument: DocumentNode<CreateStringFormatContentValidationRuleMutation, CreateStringFormatContentValidationRuleMutationVariables>;
|
|
6282
|
-
export declare const CreateValueTypeContentValidationRuleDocument: DocumentNode<CreateValueTypeContentValidationRuleMutation, CreateValueTypeContentValidationRuleMutationVariables>;
|
|
6283
|
-
export declare const RemoveContentValidationRuleDocument: DocumentNode<RemoveContentValidationRuleMutation, RemoveContentValidationRuleMutationVariables>;
|
|
6284
|
-
export declare const UpdateAllowedValuesContentValidationRuleDocument: DocumentNode<UpdateAllowedValuesContentValidationRuleMutation, UpdateAllowedValuesContentValidationRuleMutationVariables>;
|
|
6285
|
-
export declare const UpdateCountValidationRuleDocument: DocumentNode<UpdateCountValidationRuleMutation, UpdateCountValidationRuleMutationVariables>;
|
|
6286
|
-
export declare const UpdateDateBetweenContentValidationRuleDocument: DocumentNode<UpdateDateBetweenContentValidationRuleMutation, UpdateDateBetweenContentValidationRuleMutationVariables>;
|
|
6287
|
-
export declare const UpdateDecimalCountContentValidationRuleDocument: DocumentNode<UpdateDecimalCountContentValidationRuleMutation, UpdateDecimalCountContentValidationRuleMutationVariables>;
|
|
6288
|
-
export declare const UpdateNumberBetweenContentValidationRuleDocument: DocumentNode<UpdateNumberBetweenContentValidationRuleMutation, UpdateNumberBetweenContentValidationRuleMutationVariables>;
|
|
6289
|
-
export declare const UpdateRelatableContentTypesContentValidationRuleDocument: DocumentNode<UpdateRelatableContentTypesContentValidationRuleMutation, UpdateRelatableContentTypesContentValidationRuleMutationVariables>;
|
|
6290
|
-
export declare const UpdateStringFormatContentValidationRuleDocument: DocumentNode<UpdateStringFormatContentValidationRuleMutation, UpdateStringFormatContentValidationRuleMutationVariables>;
|
|
6291
|
-
export declare const UpdateValueTypeValidationRuleDocument: DocumentNode<UpdateValueTypeValidationRuleMutation, UpdateValueTypeValidationRuleMutationVariables>;
|
|
6292
|
-
export declare const AllContentValuesDocument: DocumentNode<AllContentValuesQuery, AllContentValuesQueryVariables>;
|
|
6293
|
-
export declare const CreateContentValueDocument: DocumentNode<CreateContentValueMutation, CreateContentValueMutationVariables>;
|
|
6294
|
-
export declare const RemoveContentValueDocument: DocumentNode<RemoveContentValueMutation, RemoveContentValueMutationVariables>;
|
|
6295
|
-
export declare const UpdateContentValueDocument: DocumentNode<UpdateContentValueMutation, UpdateContentValueMutationVariables>;
|
|
6296
|
-
export declare const CreateExperienceComponentDocument: DocumentNode<CreateExperienceComponentMutation, CreateExperienceComponentMutationVariables>;
|
|
6297
|
-
export declare const CreateGlobalExperienceComponentDocument: DocumentNode<CreateGlobalExperienceComponentMutation, CreateGlobalExperienceComponentMutationVariables>;
|
|
6298
|
-
export declare const ExperienceComponentDocument: DocumentNode<ExperienceComponentQuery, ExperienceComponentQueryVariables>;
|
|
6299
|
-
export declare const ExperienceComponentsDocument: DocumentNode<ExperienceComponentsQuery, ExperienceComponentsQueryVariables>;
|
|
6300
|
-
export declare const RemoveExperienceComponentDocument: DocumentNode<RemoveExperienceComponentMutation, RemoveExperienceComponentMutationVariables>;
|
|
6301
|
-
export declare const UpdateExperienceComponentDocument: DocumentNode<UpdateExperienceComponentMutation, UpdateExperienceComponentMutationVariables>;
|
|
6302
|
-
export declare const CreateGridDefinitionDocument: DocumentNode<CreateGridDefinitionMutation, CreateGridDefinitionMutationVariables>;
|
|
6303
|
-
export declare const CreateGridPlacementDocument: DocumentNode<CreateGridPlacementMutation, CreateGridPlacementMutationVariables>;
|
|
6304
|
-
export declare const RemoveGridPlacementDocument: DocumentNode<RemoveGridPlacementMutation, RemoveGridPlacementMutationVariables>;
|
|
6305
|
-
export declare const UpdateGridPlacementDocument: DocumentNode<UpdateGridPlacementMutation, UpdateGridPlacementMutationVariables>;
|
|
6306
|
-
export declare const AcceptInvitationDocument: DocumentNode<AcceptInvitationMutation, AcceptInvitationMutationVariables>;
|
|
6307
|
-
export declare const CreateInvitationDocument: DocumentNode<CreateInvitationMutation, CreateInvitationMutationVariables>;
|
|
6308
|
-
export declare const DeclineInvitationDocument: DocumentNode<DeclineInvitationMutation, DeclineInvitationMutationVariables>;
|
|
6309
|
-
export declare const InvitationsForCurrentSubjectDocument: DocumentNode<InvitationsForCurrentSubjectQuery, InvitationsForCurrentSubjectQueryVariables>;
|
|
6310
|
-
export declare const InvitationsForOrganizationDocument: DocumentNode<InvitationsForOrganizationQuery, InvitationsForOrganizationQueryVariables>;
|
|
6311
|
-
export declare const RemoveInvitationDocument: DocumentNode<RemoveInvitationMutation, RemoveInvitationMutationVariables>;
|
|
6312
|
-
export declare const CreateOrganizationDocument: DocumentNode<CreateOrganizationMutation, CreateOrganizationMutationVariables>;
|
|
6313
|
-
export declare const IsOrganizationSeedingDocument: DocumentNode<IsOrganizationSeedingQuery, IsOrganizationSeedingQueryVariables>;
|
|
6314
|
-
export declare const RemoveOrganizationDocument: DocumentNode<RemoveOrganizationMutation, RemoveOrganizationMutationVariables>;
|
|
6315
|
-
export declare const RolesOfOrganizationDocument: DocumentNode<RolesOfOrganizationQuery, RolesOfOrganizationQueryVariables>;
|
|
6316
|
-
export declare const OrganizationDocument: DocumentNode<OrganizationQuery, OrganizationQueryVariables>;
|
|
6317
|
-
export declare const UpdateOrganizationDocument: DocumentNode<UpdateOrganizationMutation, UpdateOrganizationMutationVariables>;
|
|
6318
|
-
export declare const CreatePathPartFromParentDocument: DocumentNode<CreatePathPartFromParentMutation, CreatePathPartFromParentMutationVariables>;
|
|
6319
|
-
export declare const CreatePathPartFromPathDocument: DocumentNode<CreatePathPartFromPathMutation, CreatePathPartFromPathMutationVariables>;
|
|
6320
|
-
export declare const DetailedPathPartDocument: DocumentNode<DetailedPathPartQuery, DetailedPathPartQueryVariables>;
|
|
6321
|
-
export declare const PathPartDocument: DocumentNode<PathPartQuery, PathPartQueryVariables>;
|
|
6322
|
-
export declare const PathPartsDocument: DocumentNode<PathPartsQuery, PathPartsQueryVariables>;
|
|
6323
|
-
export declare const RemovePathPartDocument: DocumentNode<RemovePathPartMutation, RemovePathPartMutationVariables>;
|
|
6324
|
-
export declare const UpdatePathPartDocument: DocumentNode<UpdatePathPartMutation, UpdatePathPartMutationVariables>;
|
|
6325
|
-
export declare const UpdatePathPartFromPathDocument: DocumentNode<UpdatePathPartFromPathMutation, UpdatePathPartFromPathMutationVariables>;
|
|
6326
|
-
export declare const AddPlateMaintainerDocument: DocumentNode<AddPlateMaintainerMutation, AddPlateMaintainerMutationVariables>;
|
|
6327
|
-
export declare const AllPlateMaintainersDocument: DocumentNode<AllPlateMaintainersQuery, AllPlateMaintainersQueryVariables>;
|
|
6328
|
-
export declare const RemovePlateMaintainerDocument: DocumentNode<RemovePlateMaintainerMutation, RemovePlateMaintainerMutationVariables>;
|
|
6329
|
-
export declare const RemoveRoleAssignmentDocument: DocumentNode<RemoveRoleAssignmentMutation, RemoveRoleAssignmentMutationVariables>;
|
|
6330
|
-
export declare const RoleAssignmentsForCurrentSubjectDocument: DocumentNode<RoleAssignmentsForCurrentSubjectQuery, RoleAssignmentsForCurrentSubjectQueryVariables>;
|
|
6331
|
-
export declare const RoleAssignmentsForOrganizationDocument: DocumentNode<RoleAssignmentsForOrganizationQuery, RoleAssignmentsForOrganizationQueryVariables>;
|
|
6332
|
-
export declare const RunSeederDocument: DocumentNode<RunSeederMutation, RunSeederMutationVariables>;
|
|
6333
|
-
export declare const CurrentSubjectDocument: DocumentNode<CurrentSubjectQuery, CurrentSubjectQueryVariables>;
|
|
6334
|
-
export declare const CreateTagDocument: DocumentNode<CreateTagMutation, CreateTagMutationVariables>;
|
|
6335
|
-
export declare const RemoveTagDocument: DocumentNode<RemoveTagMutation, RemoveTagMutationVariables>;
|
|
6336
2157
|
export declare const TagDocument: DocumentNode<TagQuery, TagQueryVariables>;
|
|
6337
|
-
export declare const TagsDocument: DocumentNode<TagsQuery, TagsQueryVariables>;
|
|
6338
|
-
export declare const UpdateTagDocument: DocumentNode<UpdateTagMutation, UpdateTagMutationVariables>;
|
|
6339
|
-
export declare const CreateThemeDocument: DocumentNode<CreateThemeMutation, CreateThemeMutationVariables>;
|
|
6340
|
-
export declare const RemoveThemeDocument: DocumentNode<RemoveThemeMutation, RemoveThemeMutationVariables>;
|
|
6341
|
-
export declare const ThemeDocument: DocumentNode<ThemeQuery, ThemeQueryVariables>;
|
|
6342
|
-
export declare const ThemesDocument: DocumentNode<ThemesQuery, ThemesQueryVariables>;
|
|
6343
|
-
export declare const UpdateThemeDocument: DocumentNode<UpdateThemeMutation, UpdateThemeMutationVariables>;
|