@platecms/delta-client 0.13.0 → 1.2.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.
- package/package.json +5 -3
- package/src/__generated__/gql.ts +93 -3
- package/src/__generated__/graphql.ts +679 -82
- package/src/api/fetchContentExperiences.spec.ts +82 -0
- package/src/api/fetchContentExperiences.ts +42 -0
- package/src/api/fetchContentItems.spec.ts +62 -0
- package/src/api/fetchContentItems.ts +42 -0
- package/src/api/fetchPathParts.spec.ts +62 -0
- package/src/api/fetchPathParts.ts +42 -0
- package/src/api/fetchTags.spec.ts +61 -0
- package/src/api/fetchTags.ts +38 -0
- package/src/api/index.ts +4 -1
- package/src/api/types.ts +35 -0
- package/src/apollo/index.ts +1 -1
- package/src/app/utils/paginated-response.type.ts +19 -0
- package/src/factories/BaseFactory.ts +19 -0
- package/src/factories/ChannelFactory.ts +19 -0
- package/src/factories/ContentExperienceFactory.ts +54 -0
- package/src/factories/PathPartFactory.ts +26 -0
- package/src/factories/TagFactory.ts +30 -0
- package/src/graphql/content-experiences/content-experiences.query.gql +82 -0
- package/src/graphql/content-items/content-items.query.gql +47 -0
- package/src/graphql/fragments/asset.fragment.gql +10 -0
- package/src/graphql/fragments/asset.fragments.gql +10 -0
- package/src/graphql/fragments/building-block-field-fullfillment.fragments.gql +45 -0
- package/src/graphql/fragments/building-block-field.fragments.gql +8 -0
- package/src/graphql/fragments/building-block.fragments.gql +11 -0
- package/src/graphql/fragments/content-experience.fragments.gql +8 -0
- package/src/graphql/fragments/content-field.fragments.gql +7 -0
- package/src/graphql/fragments/content-item.fragments.gql +11 -0
- package/src/graphql/fragments/content-type.fragments.gql +11 -0
- package/src/graphql/fragments/content-values.fragments.gql +33 -0
- package/src/graphql/fragments/experience-component.fragments.gql +13 -0
- package/src/graphql/fragments/grid-placement.fragments.gql +7 -0
- package/src/graphql/fragments/path-part.fragments.gql +8 -0
- package/src/graphql/fragments/tag.fragment.gql +17 -0
- package/src/graphql/path-parts/path-parts.query.gql +52 -0
- package/src/graphql/tags/tag.query.gql +15 -3
- package/src/index.ts +1 -1
- package/src/slate/index.ts +21 -3
- package/src/utils/index.ts +8 -0
|
@@ -20,12 +20,27 @@ export type Scalars = {
|
|
|
20
20
|
ContentValueType: { input: any; output: any; }
|
|
21
21
|
/** A date-time string at UTC, such as 2019-12-03T09:54:33Z, compliant with the date-time format. */
|
|
22
22
|
DateTime: { input: any; output: any; }
|
|
23
|
+
/** The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). */
|
|
24
|
+
JSON: { input: any; output: any; }
|
|
23
25
|
/** A string representing the PRN object. Must match '^prn(:[A-Za-z0-9-_]+){5}$'. */
|
|
24
26
|
PRN: { input: any; output: any; }
|
|
25
27
|
/** A generic Primitive value. */
|
|
26
28
|
PrimitiveValue: { input: any; output: any; }
|
|
27
29
|
};
|
|
28
30
|
|
|
31
|
+
export type AccessibleContentItemsConnection = {
|
|
32
|
+
__typename?: 'AccessibleContentItemsConnection';
|
|
33
|
+
edges: Array<AccessibleContentItemsEdge>;
|
|
34
|
+
pageInfo: PageInfo;
|
|
35
|
+
totalCount: Scalars['Float']['output'];
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
export type AccessibleContentItemsEdge = {
|
|
39
|
+
__typename?: 'AccessibleContentItemsEdge';
|
|
40
|
+
cursor: Scalars['String']['output'];
|
|
41
|
+
node: Scalars['JSON']['output'];
|
|
42
|
+
};
|
|
43
|
+
|
|
29
44
|
export type AllowedValuesContentValidationRuleSettings = {
|
|
30
45
|
__typename?: 'AllowedValuesContentValidationRuleSettings';
|
|
31
46
|
allowedValues: Array<Scalars['ContentValueType']['output']>;
|
|
@@ -35,18 +50,22 @@ export type AllowedValuesContentValidationRuleSettingsInput = {
|
|
|
35
50
|
allowedValues: Array<Scalars['ContentValueType']['input']>;
|
|
36
51
|
};
|
|
37
52
|
|
|
38
|
-
export type ApiToken = {
|
|
53
|
+
export type ApiToken = Subject & {
|
|
39
54
|
__typename?: 'ApiToken';
|
|
40
|
-
channel
|
|
55
|
+
channel?: Maybe<Channel>;
|
|
41
56
|
createdAt: Scalars['DateTime']['output'];
|
|
57
|
+
id: Scalars['String']['output'];
|
|
42
58
|
name: Scalars['String']['output'];
|
|
43
59
|
prn: Scalars['PRN']['output'];
|
|
60
|
+
roleAssignment: RoleAssignment;
|
|
44
61
|
stage: Stage;
|
|
45
62
|
updatedAt: Scalars['DateTime']['output'];
|
|
46
63
|
};
|
|
47
64
|
|
|
48
65
|
export type Asset = {
|
|
49
66
|
__typename?: 'Asset';
|
|
67
|
+
/** The alt text of the asset. */
|
|
68
|
+
altText?: Maybe<Scalars['String']['output']>;
|
|
50
69
|
createdAt: Scalars['DateTime']['output'];
|
|
51
70
|
fileName: Scalars['String']['output'];
|
|
52
71
|
/** The size of the file in bytes. */
|
|
@@ -73,8 +92,6 @@ export type Blueprint = {
|
|
|
73
92
|
definedBy: ExperienceComponent;
|
|
74
93
|
isFixed: Scalars['Boolean']['output'];
|
|
75
94
|
name: Scalars['String']['output'];
|
|
76
|
-
/** Not yet implemented! */
|
|
77
|
-
organization?: Maybe<Organization>;
|
|
78
95
|
/** The preview image of the Blueprint. */
|
|
79
96
|
preview?: Maybe<Asset>;
|
|
80
97
|
prn: Scalars['PRN']['output'];
|
|
@@ -123,8 +140,6 @@ export type BuildingBlock = {
|
|
|
123
140
|
experienceComponents: Array<ExperienceComponent>;
|
|
124
141
|
gridDefinition?: Maybe<GridDefinition>;
|
|
125
142
|
next?: Maybe<BuildingBlock>;
|
|
126
|
-
/** Not yet implemented! */
|
|
127
|
-
organization?: Maybe<Organization>;
|
|
128
143
|
/** The preview image of the Building Block. */
|
|
129
144
|
preview?: Maybe<Asset>;
|
|
130
145
|
previous?: Maybe<BuildingBlock>;
|
|
@@ -152,8 +167,6 @@ export type BuildingBlockField = {
|
|
|
152
167
|
contentValidationRules: Array<ContentValidationRule>;
|
|
153
168
|
createdAt: Scalars['DateTime']['output'];
|
|
154
169
|
next?: Maybe<BuildingBlockField>;
|
|
155
|
-
/** Not yet implemented! */
|
|
156
|
-
organization?: Maybe<Organization>;
|
|
157
170
|
previous?: Maybe<BuildingBlockField>;
|
|
158
171
|
prn: Scalars['PRN']['output'];
|
|
159
172
|
slug: Scalars['String']['output'];
|
|
@@ -183,8 +196,6 @@ export type BuildingBlockFieldFulfillment = {
|
|
|
183
196
|
createdAt: Scalars['DateTime']['output'];
|
|
184
197
|
experienceComponent: ExperienceComponent;
|
|
185
198
|
next?: Maybe<BuildingBlockFieldFulfillment>;
|
|
186
|
-
/** Not yet implemented! */
|
|
187
|
-
organization?: Maybe<Organization>;
|
|
188
199
|
previous?: Maybe<BuildingBlockFieldFulfillment>;
|
|
189
200
|
prn: Scalars['PRN']['output'];
|
|
190
201
|
stage: Stage;
|
|
@@ -249,8 +260,8 @@ export type BuildingBlocksFilterInput = {
|
|
|
249
260
|
updatedAt?: InputMaybe<Array<DateFilter>>;
|
|
250
261
|
};
|
|
251
262
|
|
|
252
|
-
export type
|
|
253
|
-
__typename?: '
|
|
263
|
+
export type CasDatabaseTextMatch = {
|
|
264
|
+
__typename?: 'CasDatabaseTextMatch';
|
|
254
265
|
confidence: Scalars['Float']['output'];
|
|
255
266
|
contentValue: ContentValue;
|
|
256
267
|
endIndex: Scalars['Int']['output'];
|
|
@@ -258,6 +269,13 @@ export type CasDatabaseMatch = {
|
|
|
258
269
|
startIndex: Scalars['Int']['output'];
|
|
259
270
|
};
|
|
260
271
|
|
|
272
|
+
export type CasImageContentValueMatch = {
|
|
273
|
+
__typename?: 'CasImageContentValueMatch';
|
|
274
|
+
similarContentValue: ContentValue;
|
|
275
|
+
similarity: Scalars['Float']['output'];
|
|
276
|
+
stage: Scalars['String']['output'];
|
|
277
|
+
};
|
|
278
|
+
|
|
261
279
|
export type CasRegexSuggestion = {
|
|
262
280
|
__typename?: 'CasRegexSuggestion';
|
|
263
281
|
confidence: Scalars['Float']['output'];
|
|
@@ -274,8 +292,6 @@ export type Channel = {
|
|
|
274
292
|
defaultBlueprint?: Maybe<Blueprint>;
|
|
275
293
|
domain: Scalars['String']['output'];
|
|
276
294
|
name: Scalars['String']['output'];
|
|
277
|
-
/** Not yet implemented! */
|
|
278
|
-
organization?: Maybe<Organization>;
|
|
279
295
|
pathParts: Array<PathPart>;
|
|
280
296
|
prn: Scalars['PRN']['output'];
|
|
281
297
|
rootPathPart: PathPart;
|
|
@@ -323,14 +339,19 @@ export type ContentExperience = {
|
|
|
323
339
|
__typename?: 'ContentExperience';
|
|
324
340
|
createdAt: Scalars['DateTime']['output'];
|
|
325
341
|
experienceComponent: ExperienceComponent;
|
|
326
|
-
/**
|
|
327
|
-
|
|
342
|
+
/** The issues that this Content Experience is a subject of */
|
|
343
|
+
issues: Array<Issue>;
|
|
328
344
|
pathPart: PathPart;
|
|
345
|
+
/** An array of path part ids from the current path part up to the root, ordered from root to current. */
|
|
346
|
+
pathPartsToRootIds: Array<Scalars['String']['output']>;
|
|
329
347
|
/** The preview image of the Content Experience. */
|
|
330
348
|
preview?: Maybe<Asset>;
|
|
349
|
+
primaryContentItem?: Maybe<ContentItem>;
|
|
331
350
|
prn: Scalars['PRN']['output'];
|
|
332
351
|
/** The Content Values that use this Content Experience as an referenced value. Reverse relation of referencedContentExperiences. */
|
|
333
352
|
referencedBySmartTextContentValues: Array<ContentValue>;
|
|
353
|
+
seoDescription?: Maybe<Scalars['String']['output']>;
|
|
354
|
+
seoTitle?: Maybe<Scalars['String']['output']>;
|
|
334
355
|
slug: Scalars['String']['output'];
|
|
335
356
|
stage: Stage;
|
|
336
357
|
/** The ids of the tags this Content Experience are tagged with, including all ancestor tags. Should only be used for filtering. */
|
|
@@ -341,6 +362,11 @@ export type ContentExperience = {
|
|
|
341
362
|
updatedAt: Scalars['DateTime']['output'];
|
|
342
363
|
};
|
|
343
364
|
|
|
365
|
+
|
|
366
|
+
export type ContentExperienceIssuesArgs = {
|
|
367
|
+
where?: InputMaybe<Array<IssuesFilterInput>>;
|
|
368
|
+
};
|
|
369
|
+
|
|
344
370
|
export type ContentExperienceEdge = {
|
|
345
371
|
__typename?: 'ContentExperienceEdge';
|
|
346
372
|
cursor: Scalars['String']['output'];
|
|
@@ -359,6 +385,8 @@ export type ContentExperiencesFilterInput = {
|
|
|
359
385
|
_not?: InputMaybe<Array<ContentExperiencesFilterInput>>;
|
|
360
386
|
createdAt?: InputMaybe<Array<DateFilter>>;
|
|
361
387
|
prn?: InputMaybe<Array<PrnFilter>>;
|
|
388
|
+
seoDescription?: InputMaybe<Array<StringFilter>>;
|
|
389
|
+
seoTitle?: InputMaybe<Array<StringFilter>>;
|
|
362
390
|
slug?: InputMaybe<Array<StringFilter>>;
|
|
363
391
|
tagIds?: InputMaybe<Array<StringArrayFilter>>;
|
|
364
392
|
title?: InputMaybe<Array<StringFilter>>;
|
|
@@ -374,10 +402,9 @@ export type ContentField = {
|
|
|
374
402
|
createdAt: Scalars['DateTime']['output'];
|
|
375
403
|
name: Scalars['String']['output'];
|
|
376
404
|
next?: Maybe<ContentField>;
|
|
377
|
-
/** Not yet implemented! */
|
|
378
|
-
organization?: Maybe<Organization>;
|
|
379
405
|
previous?: Maybe<ContentField>;
|
|
380
406
|
prn: Scalars['PRN']['output'];
|
|
407
|
+
slug: Scalars['String']['output'];
|
|
381
408
|
updatedAt: Scalars['DateTime']['output'];
|
|
382
409
|
};
|
|
383
410
|
|
|
@@ -410,6 +437,7 @@ export type ContentFieldsFilterInput = {
|
|
|
410
437
|
createdAt?: InputMaybe<Array<DateFilter>>;
|
|
411
438
|
name?: InputMaybe<Array<StringFilter>>;
|
|
412
439
|
prn?: InputMaybe<Array<PrnFilter>>;
|
|
440
|
+
slug?: InputMaybe<Array<StringFilter>>;
|
|
413
441
|
updatedAt?: InputMaybe<Array<DateFilter>>;
|
|
414
442
|
};
|
|
415
443
|
|
|
@@ -418,6 +446,8 @@ export type ContentItem = {
|
|
|
418
446
|
contentType: ContentType;
|
|
419
447
|
/** The id of the Content Type this Content Item belongs to. This is computed from the contentType relation. */
|
|
420
448
|
contentTypeId: Scalars['String']['output'];
|
|
449
|
+
/** The slug of the Content Type this Content Item belongs to. This is computed from the contentType relation. */
|
|
450
|
+
contentTypeSlug: Scalars['String']['output'];
|
|
421
451
|
contentValues: Array<ContentValue>;
|
|
422
452
|
createdAt: Scalars['DateTime']['output'];
|
|
423
453
|
/** Interpolates the Content Type's displayImageField with the Content Item's value. If there are multiple Content Values for the Content Field, the first one is used. If the Content Value is missing, null is returned. */
|
|
@@ -425,8 +455,9 @@ export type ContentItem = {
|
|
|
425
455
|
/** The display name of the Content Item. This is computed from the Content Type's displayNameTemplate and cached for filtering purposes. It is updated in the background and is not guaranteed to be up to date. A Content Field with multiple Content Values are concatenated with spaces. Missing Content Values will show as '***' and the displayName will be prefixed with DRAFT: */
|
|
426
456
|
displayName: Scalars['String']['output'];
|
|
427
457
|
isDraft: Scalars['Boolean']['output'];
|
|
428
|
-
/**
|
|
429
|
-
|
|
458
|
+
/** The issues that this Content Item is a subject of */
|
|
459
|
+
issues: Array<Issue>;
|
|
460
|
+
primaryContentExperience?: Maybe<ContentExperience>;
|
|
430
461
|
prn: Scalars['PRN']['output'];
|
|
431
462
|
relatingContentValues: Array<ContentValue>;
|
|
432
463
|
stage: Stage;
|
|
@@ -443,6 +474,11 @@ export type ContentItemContentValuesArgs = {
|
|
|
443
474
|
};
|
|
444
475
|
|
|
445
476
|
|
|
477
|
+
export type ContentItemIssuesArgs = {
|
|
478
|
+
where?: InputMaybe<Array<IssuesFilterInput>>;
|
|
479
|
+
};
|
|
480
|
+
|
|
481
|
+
|
|
446
482
|
export type ContentItemRelatingContentValuesArgs = {
|
|
447
483
|
where?: InputMaybe<Array<ContentValuesFilterInput>>;
|
|
448
484
|
};
|
|
@@ -464,6 +500,7 @@ export type ContentItemsConnection = {
|
|
|
464
500
|
export type ContentItemsFilterInput = {
|
|
465
501
|
_not?: InputMaybe<Array<ContentItemsFilterInput>>;
|
|
466
502
|
contentTypeId?: InputMaybe<Array<StringFilter>>;
|
|
503
|
+
contentTypeSlug?: InputMaybe<Array<StringFilter>>;
|
|
467
504
|
createdAt?: InputMaybe<Array<DateFilter>>;
|
|
468
505
|
displayName?: InputMaybe<Array<StringFilter>>;
|
|
469
506
|
isDraft?: InputMaybe<Array<BooleanFilter>>;
|
|
@@ -482,9 +519,8 @@ export type ContentType = {
|
|
|
482
519
|
/** The display name template for the content type. Use {{contentFieldPrn}} to reference Content Fields. */
|
|
483
520
|
displayNameTemplate: Scalars['String']['output'];
|
|
484
521
|
name: Scalars['String']['output'];
|
|
485
|
-
/** Not yet implemented! */
|
|
486
|
-
organization?: Maybe<Organization>;
|
|
487
522
|
prn: Scalars['PRN']['output'];
|
|
523
|
+
slug: Scalars['String']['output'];
|
|
488
524
|
updatedAt: Scalars['DateTime']['output'];
|
|
489
525
|
};
|
|
490
526
|
|
|
@@ -518,14 +554,13 @@ export type ContentTypesFilterInput = {
|
|
|
518
554
|
displayNameTemplate?: InputMaybe<Array<StringFilter>>;
|
|
519
555
|
name?: InputMaybe<Array<StringFilter>>;
|
|
520
556
|
prn?: InputMaybe<Array<PrnFilter>>;
|
|
557
|
+
slug?: InputMaybe<Array<StringFilter>>;
|
|
521
558
|
updatedAt?: InputMaybe<Array<DateFilter>>;
|
|
522
559
|
};
|
|
523
560
|
|
|
524
561
|
export type ContentValidationRule = {
|
|
525
562
|
__typename?: 'ContentValidationRule';
|
|
526
563
|
createdAt: Scalars['DateTime']['output'];
|
|
527
|
-
/** Not yet implemented! */
|
|
528
|
-
organization?: Maybe<Organization>;
|
|
529
564
|
prn: Scalars['PRN']['output'];
|
|
530
565
|
ruleType: RuleType;
|
|
531
566
|
settings: ExistingContentValidationRulesSettings;
|
|
@@ -552,13 +587,13 @@ export type ContentValue = {
|
|
|
552
587
|
interpolatedSmartText?: Maybe<Scalars['CAST']['output']>;
|
|
553
588
|
/** Whether the ContentValue is reusable. Defaults to false. */
|
|
554
589
|
isReusable: Scalars['Boolean']['output'];
|
|
590
|
+
/** The issues that this Content Value is a subject of */
|
|
591
|
+
issues: Array<Issue>;
|
|
555
592
|
linkedContentType?: Maybe<ContentType>;
|
|
556
593
|
linkedGridPlacement?: Maybe<GridPlacement>;
|
|
557
594
|
linkedPathPart?: Maybe<PathPart>;
|
|
558
595
|
linkedTag?: Maybe<Tag>;
|
|
559
596
|
next?: Maybe<ContentValue>;
|
|
560
|
-
/** Not yet implemented! */
|
|
561
|
-
organization?: Maybe<Organization>;
|
|
562
597
|
/** The plain text representation of the smart text. This is used internally. If you really need the plain text representation of CAST, use the castToPlainText utility function. */
|
|
563
598
|
plainText?: Maybe<Scalars['String']['output']>;
|
|
564
599
|
previous?: Maybe<ContentValue>;
|
|
@@ -574,11 +609,21 @@ export type ContentValue = {
|
|
|
574
609
|
/** The Grid Placements that are referenced in internal links in the smart text. This is calculated based on the CAST tree in the smart text and cannot be updated manually. */
|
|
575
610
|
referencedGridPlacements: Array<GridPlacement>;
|
|
576
611
|
relatedAsset?: Maybe<Asset>;
|
|
612
|
+
/** The alt text of the relatedAsset. */
|
|
613
|
+
relatedAssetAltText?: Maybe<Scalars['String']['output']>;
|
|
614
|
+
/** The file name of the relatedAsset. */
|
|
615
|
+
relatedAssetFileName?: Maybe<Scalars['String']['output']>;
|
|
616
|
+
/** The file type (MIME type) of the relatedAsset. */
|
|
617
|
+
relatedAssetFileType?: Maybe<Scalars['String']['output']>;
|
|
618
|
+
/** The file size in bytes of the relatedAsset. */
|
|
619
|
+
relatedAssetSize?: Maybe<Scalars['Int']['output']>;
|
|
577
620
|
relatedContentItem?: Maybe<ContentItem>;
|
|
578
621
|
/** The CAST tree for the smart text. */
|
|
579
622
|
smartText?: Maybe<Scalars['CAST']['output']>;
|
|
580
623
|
stage: Stage;
|
|
581
624
|
updatedAt: Scalars['DateTime']['output'];
|
|
625
|
+
/** The value type name of the Content Value. This is calculated based on the value that is in the Content Value. Filtered using a StringFilter. */
|
|
626
|
+
valueTypeName: ContentValueTypeNames;
|
|
582
627
|
};
|
|
583
628
|
|
|
584
629
|
|
|
@@ -586,6 +631,11 @@ export type ContentValueBuildingBlockFieldFulfillmentsArgs = {
|
|
|
586
631
|
where?: InputMaybe<Array<BuildingBlockFieldFulfillmentsFilterInput>>;
|
|
587
632
|
};
|
|
588
633
|
|
|
634
|
+
|
|
635
|
+
export type ContentValueIssuesArgs = {
|
|
636
|
+
where?: InputMaybe<Array<IssuesFilterInput>>;
|
|
637
|
+
};
|
|
638
|
+
|
|
589
639
|
export type ContentValueEdge = {
|
|
590
640
|
__typename?: 'ContentValueEdge';
|
|
591
641
|
cursor: Scalars['String']['output'];
|
|
@@ -622,7 +672,12 @@ export type ContentValuesFilterInput = {
|
|
|
622
672
|
plainText?: InputMaybe<Array<StringFilter>>;
|
|
623
673
|
primitiveValue?: InputMaybe<Array<StringFilter>>;
|
|
624
674
|
prn?: InputMaybe<Array<PrnFilter>>;
|
|
675
|
+
relatedAssetAltText?: InputMaybe<Array<StringFilter>>;
|
|
676
|
+
relatedAssetFileName?: InputMaybe<Array<StringFilter>>;
|
|
677
|
+
relatedAssetFileType?: InputMaybe<Array<StringFilter>>;
|
|
678
|
+
relatedAssetSize?: InputMaybe<Array<IntFilter>>;
|
|
625
679
|
updatedAt?: InputMaybe<Array<DateFilter>>;
|
|
680
|
+
valueTypeName?: InputMaybe<Array<StringFilter>>;
|
|
626
681
|
};
|
|
627
682
|
|
|
628
683
|
export type CopyBlueprintInput = {
|
|
@@ -642,22 +697,40 @@ export type CountContentValidationRuleSettingsInput = {
|
|
|
642
697
|
min: Scalars['Int']['input'];
|
|
643
698
|
};
|
|
644
699
|
|
|
700
|
+
export type CreateAccessibleContentItemInput = {
|
|
701
|
+
/**
|
|
702
|
+
* The values of the Content Item.
|
|
703
|
+
* The keys are the Content Field slugs and the values are either directly the value (only possible if the Content Field has a validation rule that enforces a single type) or an object with valueTypeName and value.
|
|
704
|
+
* Example value structure: `{ 'title': 'My Title', 'contentTypeField': 'prn:plate-dev:org-id:cms:content-type:123' }`
|
|
705
|
+
* Example object structure: `{ 'title': { 'valueTypeName': 'STRING', 'value': 'My Title' }, 'contentTypeField': { 'valueTypeName': 'CONTENT_TYPE', 'value': 'prn:plate-dev:org-id:cms:content-type:123' } }`
|
|
706
|
+
*/
|
|
707
|
+
content: Scalars['JSON']['input'];
|
|
708
|
+
contentTypeSlug: Scalars['String']['input'];
|
|
709
|
+
/** Whether the Content Item is a draft. Drafts are not validated against the Content Type's validation rules. */
|
|
710
|
+
isDraft?: Scalars['Boolean']['input'];
|
|
711
|
+
/** The paths of the Tags to assign to the Content Item. */
|
|
712
|
+
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
713
|
+
};
|
|
714
|
+
|
|
645
715
|
export type CreateAllowedValuesContentValidationRuleInput = {
|
|
646
716
|
settings: AllowedValuesContentValidationRuleSettingsInput;
|
|
647
717
|
targetField: Scalars['String']['input'];
|
|
648
718
|
};
|
|
649
719
|
|
|
650
720
|
export type CreateApiTokenInput = {
|
|
651
|
-
channel
|
|
721
|
+
channel?: InputMaybe<Scalars['String']['input']>;
|
|
652
722
|
name: Scalars['String']['input'];
|
|
723
|
+
role: Scalars['PRN']['input'];
|
|
653
724
|
};
|
|
654
725
|
|
|
655
|
-
export type CreateApiTokenResponse = {
|
|
726
|
+
export type CreateApiTokenResponse = Subject & {
|
|
656
727
|
__typename?: 'CreateApiTokenResponse';
|
|
657
|
-
channel
|
|
728
|
+
channel?: Maybe<Channel>;
|
|
658
729
|
createdAt: Scalars['DateTime']['output'];
|
|
730
|
+
id: Scalars['String']['output'];
|
|
659
731
|
name: Scalars['String']['output'];
|
|
660
732
|
prn: Scalars['PRN']['output'];
|
|
733
|
+
roleAssignment: RoleAssignment;
|
|
661
734
|
stage: Stage;
|
|
662
735
|
token: Scalars['String']['output'];
|
|
663
736
|
updatedAt: Scalars['DateTime']['output'];
|
|
@@ -746,6 +819,11 @@ export type CreateContentExperienceWithExistingPathPartInput = {
|
|
|
746
819
|
initialRowCount?: InputMaybe<Scalars['Int']['input']>;
|
|
747
820
|
pathPart: Scalars['PRN']['input'];
|
|
748
821
|
preview?: InputMaybe<Scalars['PRN']['input']>;
|
|
822
|
+
primaryContentItem?: InputMaybe<Scalars['PRN']['input']>;
|
|
823
|
+
/** The SEO description for the Content Experience. */
|
|
824
|
+
seoDescription?: InputMaybe<Scalars['String']['input']>;
|
|
825
|
+
/** The SEO title for the Content Experience. */
|
|
826
|
+
seoTitle?: InputMaybe<Scalars['String']['input']>;
|
|
749
827
|
slug: Scalars['String']['input'];
|
|
750
828
|
tags?: InputMaybe<Array<Scalars['PRN']['input']>>;
|
|
751
829
|
title: Scalars['String']['input'];
|
|
@@ -758,6 +836,11 @@ export type CreateContentExperienceWithNewPathPartInput = {
|
|
|
758
836
|
fromBlueprint?: InputMaybe<Scalars['PRN']['input']>;
|
|
759
837
|
initialRowCount?: InputMaybe<Scalars['Int']['input']>;
|
|
760
838
|
preview?: InputMaybe<Scalars['PRN']['input']>;
|
|
839
|
+
primaryContentItem?: InputMaybe<Scalars['PRN']['input']>;
|
|
840
|
+
/** The SEO description for the Content Experience. */
|
|
841
|
+
seoDescription?: InputMaybe<Scalars['String']['input']>;
|
|
842
|
+
/** The SEO title for the Content Experience. */
|
|
843
|
+
seoTitle?: InputMaybe<Scalars['String']['input']>;
|
|
761
844
|
slug: Scalars['String']['input'];
|
|
762
845
|
tags?: InputMaybe<Array<Scalars['PRN']['input']>>;
|
|
763
846
|
title: Scalars['String']['input'];
|
|
@@ -767,6 +850,7 @@ export type CreateContentFieldForContentTypeInput = {
|
|
|
767
850
|
name: Scalars['String']['input'];
|
|
768
851
|
/** The PRN of the ContentField that this ContentField should manually be sorted after. Null means it should be the last. */
|
|
769
852
|
next?: InputMaybe<Scalars['PRN']['input']>;
|
|
853
|
+
slug: Scalars['String']['input'];
|
|
770
854
|
};
|
|
771
855
|
|
|
772
856
|
export type CreateContentFieldInput = {
|
|
@@ -774,6 +858,7 @@ export type CreateContentFieldInput = {
|
|
|
774
858
|
name: Scalars['String']['input'];
|
|
775
859
|
/** The PRN of the ContentField that this ContentField should manually be sorted after. Null means it should be the last. */
|
|
776
860
|
next?: InputMaybe<Scalars['PRN']['input']>;
|
|
861
|
+
slug: Scalars['String']['input'];
|
|
777
862
|
};
|
|
778
863
|
|
|
779
864
|
export type CreateContentItemInput = {
|
|
@@ -781,6 +866,7 @@ export type CreateContentItemInput = {
|
|
|
781
866
|
contentValuesToConnect?: InputMaybe<Array<ConnectContentValueInput>>;
|
|
782
867
|
contentValuesToCreate?: InputMaybe<Array<CreateContentValueForContentItemInput>>;
|
|
783
868
|
isDraft: Scalars['Boolean']['input'];
|
|
869
|
+
primaryContentExperience?: InputMaybe<Scalars['PRN']['input']>;
|
|
784
870
|
tags?: InputMaybe<Array<Scalars['PRN']['input']>>;
|
|
785
871
|
};
|
|
786
872
|
|
|
@@ -790,6 +876,7 @@ export type CreateContentTypeInput = {
|
|
|
790
876
|
/** The display name template for the content type. Use {{contentFieldPrn}} to reference Content Fields. */
|
|
791
877
|
displayNameTemplate: Scalars['String']['input'];
|
|
792
878
|
name: Scalars['String']['input'];
|
|
879
|
+
slug: Scalars['String']['input'];
|
|
793
880
|
};
|
|
794
881
|
|
|
795
882
|
export type CreateContentValueForContentItemInput = {
|
|
@@ -951,8 +1038,9 @@ export type CreateValueTypeContentValidationRuleInput = {
|
|
|
951
1038
|
targetField: Scalars['String']['input'];
|
|
952
1039
|
};
|
|
953
1040
|
|
|
954
|
-
export type
|
|
1041
|
+
export type DatabaseTextMatchConfig = {
|
|
955
1042
|
caseInsensitive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1043
|
+
exclude?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
956
1044
|
partialMatches?: InputMaybe<Scalars['Boolean']['input']>;
|
|
957
1045
|
threshold?: InputMaybe<Scalars['Float']['input']>;
|
|
958
1046
|
};
|
|
@@ -1003,9 +1091,14 @@ export type DecimalCountContentValidationRuleSettingsInput = {
|
|
|
1003
1091
|
/** The default roles for an organization */
|
|
1004
1092
|
export enum DefaultRoleName {
|
|
1005
1093
|
Admin = 'ADMIN',
|
|
1006
|
-
ContentEditor = 'CONTENT_EDITOR'
|
|
1094
|
+
ContentEditor = 'CONTENT_EDITOR',
|
|
1095
|
+
ContentViewer = 'CONTENT_VIEWER'
|
|
1007
1096
|
}
|
|
1008
1097
|
|
|
1098
|
+
export type DuplicateImagesDetectionConfig = {
|
|
1099
|
+
threshold?: InputMaybe<Scalars['Float']['input']>;
|
|
1100
|
+
};
|
|
1101
|
+
|
|
1009
1102
|
export type ExistingContentValidationRulesSettings = AllowedValuesContentValidationRuleSettings | CountContentValidationRuleSettings | DateBetweenContentValidationRuleSettings | DecimalCountContentValidationRuleSettings | NumberBetweenContentValidationRuleSettings | RelatableContentTypesContentValidationRuleSettings | StringFormatContentValidationRuleSettings | ValueTypeContentValidationRuleSettings;
|
|
1010
1103
|
|
|
1011
1104
|
export type ExperienceComponent = {
|
|
@@ -1028,8 +1121,6 @@ export type ExperienceComponent = {
|
|
|
1028
1121
|
isGlobal: Scalars['Boolean']['output'];
|
|
1029
1122
|
/** The name of the Experience Component. Only applicable for global Experience Components. */
|
|
1030
1123
|
name?: Maybe<Scalars['String']['output']>;
|
|
1031
|
-
/** Not yet implemented! */
|
|
1032
|
-
organization?: Maybe<Organization>;
|
|
1033
1124
|
/** The preview image of the Experience Component. */
|
|
1034
1125
|
preview?: Maybe<Asset>;
|
|
1035
1126
|
prn: Scalars['PRN']['output'];
|
|
@@ -1083,6 +1174,23 @@ export type FindPathPartByPathInput = {
|
|
|
1083
1174
|
path: Scalars['String']['input'];
|
|
1084
1175
|
};
|
|
1085
1176
|
|
|
1177
|
+
export type FixMissingTagsIssueInput = {
|
|
1178
|
+
issue: Scalars['PRN']['input'];
|
|
1179
|
+
tags: Array<Scalars['PRN']['input']>;
|
|
1180
|
+
};
|
|
1181
|
+
|
|
1182
|
+
export type FixSimilarImageContentValuesIssueInput = {
|
|
1183
|
+
contentValueToUse: Scalars['PRN']['input'];
|
|
1184
|
+
contentValuesToReplace?: InputMaybe<Array<Scalars['PRN']['input']>>;
|
|
1185
|
+
issue: Scalars['PRN']['input'];
|
|
1186
|
+
};
|
|
1187
|
+
|
|
1188
|
+
export type FixSimilarSmartTextIssueInput = {
|
|
1189
|
+
issue: Scalars['PRN']['input'];
|
|
1190
|
+
/** The CAST tree for the smart text to fix the issue with. */
|
|
1191
|
+
smartText: Scalars['CAST']['input'];
|
|
1192
|
+
};
|
|
1193
|
+
|
|
1086
1194
|
export type GenerateAssetUploadUrlInput = {
|
|
1087
1195
|
fileName: Scalars['String']['input'];
|
|
1088
1196
|
/** The size of the file in bytes. */
|
|
@@ -1107,8 +1215,6 @@ export type Grid = {
|
|
|
1107
1215
|
experienceComponent: ExperienceComponent;
|
|
1108
1216
|
gridDefinition: GridDefinition;
|
|
1109
1217
|
gridPlacements: Array<GridPlacement>;
|
|
1110
|
-
/** Not yet implemented! */
|
|
1111
|
-
organization?: Maybe<Organization>;
|
|
1112
1218
|
prn: Scalars['PRN']['output'];
|
|
1113
1219
|
rows: Scalars['Int']['output'];
|
|
1114
1220
|
stage: Stage;
|
|
@@ -1130,8 +1236,6 @@ export type GridDefinition = {
|
|
|
1130
1236
|
buildingBlock: BuildingBlock;
|
|
1131
1237
|
createdAt: Scalars['DateTime']['output'];
|
|
1132
1238
|
maxRows: Scalars['Int']['output'];
|
|
1133
|
-
/** Not yet implemented! */
|
|
1134
|
-
organization?: Maybe<Organization>;
|
|
1135
1239
|
prn: Scalars['PRN']['output'];
|
|
1136
1240
|
updatedAt: Scalars['DateTime']['output'];
|
|
1137
1241
|
};
|
|
@@ -1145,8 +1249,6 @@ export type GridPlacement = {
|
|
|
1145
1249
|
createdAt: Scalars['DateTime']['output'];
|
|
1146
1250
|
experienceComponent: ExperienceComponent;
|
|
1147
1251
|
grid: Grid;
|
|
1148
|
-
/** Not yet implemented! */
|
|
1149
|
-
organization?: Maybe<Organization>;
|
|
1150
1252
|
prn: Scalars['PRN']['output'];
|
|
1151
1253
|
/** The Content Values that use this Grid Placement as an referenced value. Reverse relation of referencedGridPlacements. */
|
|
1152
1254
|
referencedBySmartTextContentValues: Array<ContentValue>;
|
|
@@ -1227,16 +1329,92 @@ export type Invitation = {
|
|
|
1227
1329
|
userEmail: Scalars['String']['output'];
|
|
1228
1330
|
};
|
|
1229
1331
|
|
|
1332
|
+
export type Issue = {
|
|
1333
|
+
__typename?: 'Issue';
|
|
1334
|
+
context: IssueContext;
|
|
1335
|
+
createdAt: Scalars['DateTime']['output'];
|
|
1336
|
+
lastSeenAt: Scalars['DateTime']['output'];
|
|
1337
|
+
prn: Scalars['PRN']['output'];
|
|
1338
|
+
stage: Stage;
|
|
1339
|
+
status: IssueStatus;
|
|
1340
|
+
subjects: Array<IssueSubject>;
|
|
1341
|
+
type: IssueType;
|
|
1342
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
1343
|
+
};
|
|
1344
|
+
|
|
1345
|
+
export type IssueContext = {
|
|
1346
|
+
__typename?: 'IssueContext';
|
|
1347
|
+
suggestedCast?: Maybe<Scalars['CAST']['output']>;
|
|
1348
|
+
};
|
|
1349
|
+
|
|
1350
|
+
export type IssueEdge = {
|
|
1351
|
+
__typename?: 'IssueEdge';
|
|
1352
|
+
cursor: Scalars['String']['output'];
|
|
1353
|
+
node: Issue;
|
|
1354
|
+
};
|
|
1355
|
+
|
|
1356
|
+
export type IssueStatistics = {
|
|
1357
|
+
__typename?: 'IssueStatistics';
|
|
1358
|
+
byType: Array<IssueTypeStatistics>;
|
|
1359
|
+
totalOpenCount: Scalars['Int']['output'];
|
|
1360
|
+
totalSolvedCount: Scalars['Int']['output'];
|
|
1361
|
+
};
|
|
1362
|
+
|
|
1363
|
+
export enum IssueStatus {
|
|
1364
|
+
Archived = 'ARCHIVED',
|
|
1365
|
+
Open = 'OPEN',
|
|
1366
|
+
Solved = 'SOLVED'
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
export type IssueSubject = ContentExperience | ContentItem | ContentValue;
|
|
1370
|
+
|
|
1371
|
+
export enum IssueType {
|
|
1372
|
+
DuplicatedTags = 'DUPLICATED_TAGS',
|
|
1373
|
+
MissingTags = 'MISSING_TAGS',
|
|
1374
|
+
SimilarImageContentValues = 'SIMILAR_IMAGE_CONTENT_VALUES',
|
|
1375
|
+
SimilarSmartTextContentValues = 'SIMILAR_SMART_TEXT_CONTENT_VALUES'
|
|
1376
|
+
}
|
|
1377
|
+
|
|
1378
|
+
export type IssueTypeStatistics = {
|
|
1379
|
+
__typename?: 'IssueTypeStatistics';
|
|
1380
|
+
openCount: Scalars['Int']['output'];
|
|
1381
|
+
solvedCount: Scalars['Int']['output'];
|
|
1382
|
+
type: IssueType;
|
|
1383
|
+
};
|
|
1384
|
+
|
|
1385
|
+
export type IssuesConnection = {
|
|
1386
|
+
__typename?: 'IssuesConnection';
|
|
1387
|
+
edges: Array<IssueEdge>;
|
|
1388
|
+
pageInfo: PageInfo;
|
|
1389
|
+
totalCount: Scalars['Int']['output'];
|
|
1390
|
+
};
|
|
1391
|
+
|
|
1392
|
+
/** The filter input type for 'Issues'. Objects/maps are treated as AND, while arrays are treated as OR. */
|
|
1393
|
+
export type IssuesFilterInput = {
|
|
1394
|
+
_not?: InputMaybe<Array<IssuesFilterInput>>;
|
|
1395
|
+
createdAt?: InputMaybe<Array<DateFilter>>;
|
|
1396
|
+
lastSeenAt?: InputMaybe<Array<DateFilter>>;
|
|
1397
|
+
prn?: InputMaybe<Array<PrnFilter>>;
|
|
1398
|
+
status?: InputMaybe<Array<StringFilter>>;
|
|
1399
|
+
type?: InputMaybe<Array<StringFilter>>;
|
|
1400
|
+
updatedAt?: InputMaybe<Array<DateFilter>>;
|
|
1401
|
+
};
|
|
1402
|
+
|
|
1230
1403
|
export type Mutation = {
|
|
1231
1404
|
__typename?: 'Mutation';
|
|
1232
|
-
/** Accepts an Invitation for the current
|
|
1405
|
+
/** Accepts an Invitation for the current User (e.g. the logged in user) */
|
|
1233
1406
|
acceptInvitation: RoleAssignment;
|
|
1234
1407
|
/** Assign the PlateMaintainer role to a user */
|
|
1235
|
-
addPlateMaintainer:
|
|
1408
|
+
addPlateMaintainer: User;
|
|
1409
|
+
/** Archives one or many Issues. Throws NotFoundError when no Issues could be found. */
|
|
1410
|
+
archiveIssues: Array<Issue>;
|
|
1411
|
+
/** Set the image hash for an asset in the Platform Service database. */
|
|
1412
|
+
casAnalyzeAsset: SuccessResponse;
|
|
1236
1413
|
/** Confirm an Asset upload. Unconfirmed Assets are deleted. */
|
|
1237
1414
|
confirmAssetUpload: Array<Asset>;
|
|
1238
1415
|
/** Copy a Blueprint. Does not copy instances. */
|
|
1239
1416
|
copyBlueprint: Array<Blueprint>;
|
|
1417
|
+
createAccessibleContentItem: Array<Scalars['JSON']['output']>;
|
|
1240
1418
|
createAllowedValuesContentValidationRule: ContentValidationRule;
|
|
1241
1419
|
/** Creates one or many new ApiTokens. */
|
|
1242
1420
|
createApiToken: Array<CreateApiTokenResponse>;
|
|
@@ -1313,8 +1491,20 @@ export type Mutation = {
|
|
|
1313
1491
|
/** Creates one or many new Themes. */
|
|
1314
1492
|
createTheme: Array<Theme>;
|
|
1315
1493
|
createValueTypeContentValidationRule: ContentValidationRule;
|
|
1316
|
-
/** Declines an Invitation for the current
|
|
1494
|
+
/** Declines an Invitation for the current User (e.g. the logged in user) */
|
|
1317
1495
|
declineInvitation: Invitation;
|
|
1496
|
+
/** Enqueues a full scan for all organizations and stages. */
|
|
1497
|
+
enqueueFullScan: Scalars['Boolean']['output'];
|
|
1498
|
+
/** Enqueues missing tags scan. */
|
|
1499
|
+
enqueueMissingTagsScan: Scalars['Boolean']['output'];
|
|
1500
|
+
/** Enqueues similar image content values scan. */
|
|
1501
|
+
enqueueSimilarImageContentValuesScan: Scalars['Boolean']['output'];
|
|
1502
|
+
/** Applies a missing tags fix to an issue. Throws NotFoundError when no Issue could be found. */
|
|
1503
|
+
fixMissingTagsIssue: Issue;
|
|
1504
|
+
/** Applies a similar image content values fix to an issue. Throws NotFoundError when no Issue could be found. */
|
|
1505
|
+
fixSimilarImageContentValuesIssue: Issue;
|
|
1506
|
+
/** Applies a similar smart text content values fix to an issue. Throws NotFoundError when no Issue could be found. */
|
|
1507
|
+
fixSimilarSmartTextIssue: Issue;
|
|
1318
1508
|
/**
|
|
1319
1509
|
* Generates the upload URL for one or many new Assets.
|
|
1320
1510
|
* See the wiki for an example: https://plate.atlassian.net/wiki/spaces/DW/pages/1488945153/Asset+Manager#Uploading-Assets
|
|
@@ -1322,6 +1512,7 @@ export type Mutation = {
|
|
|
1322
1512
|
generateAssetUploadUrl: Array<GeneratedUploadUrl>;
|
|
1323
1513
|
/** Regenerate one or many new ApiTokens. */
|
|
1324
1514
|
regenerateApiToken: Array<CreateApiTokenResponse>;
|
|
1515
|
+
removeAccessibleContentItem: Array<Scalars['JSON']['output']>;
|
|
1325
1516
|
/**
|
|
1326
1517
|
* Removes one or many ApiTokens.
|
|
1327
1518
|
* Throws NotFoundException when no ApiToken could be found.
|
|
@@ -1422,7 +1613,7 @@ export type Mutation = {
|
|
|
1422
1613
|
*/
|
|
1423
1614
|
removePathPart: Array<PathPart>;
|
|
1424
1615
|
/** Remove the PlateMaintainer role of a user */
|
|
1425
|
-
removePlateMaintainer:
|
|
1616
|
+
removePlateMaintainer: User;
|
|
1426
1617
|
/**
|
|
1427
1618
|
* Removes one or many RoleAssignments.
|
|
1428
1619
|
* Throws NotFoundException when no RoleAssignment could be found.
|
|
@@ -1444,6 +1635,7 @@ export type Mutation = {
|
|
|
1444
1635
|
syncBlueprint: Scalars['Boolean']['output'];
|
|
1445
1636
|
/** Syncs the visibility of a Tag to its descendants. */
|
|
1446
1637
|
syncTagVisibilityToDescendants: Array<Scalars['Boolean']['output']>;
|
|
1638
|
+
updateAccessibleContentItem: Array<Scalars['JSON']['output']>;
|
|
1447
1639
|
updateAllowedValuesContentValidationRule: ContentValidationRule;
|
|
1448
1640
|
/**
|
|
1449
1641
|
* Updates one or many ApiTokens with new values.
|
|
@@ -1568,6 +1760,16 @@ export type MutationAddPlateMaintainerArgs = {
|
|
|
1568
1760
|
};
|
|
1569
1761
|
|
|
1570
1762
|
|
|
1763
|
+
export type MutationArchiveIssuesArgs = {
|
|
1764
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
1765
|
+
};
|
|
1766
|
+
|
|
1767
|
+
|
|
1768
|
+
export type MutationCasAnalyzeAssetArgs = {
|
|
1769
|
+
assetPrnString: Scalars['String']['input'];
|
|
1770
|
+
};
|
|
1771
|
+
|
|
1772
|
+
|
|
1571
1773
|
export type MutationConfirmAssetUploadArgs = {
|
|
1572
1774
|
prn: Array<Scalars['PRN']['input']>;
|
|
1573
1775
|
};
|
|
@@ -1578,6 +1780,11 @@ export type MutationCopyBlueprintArgs = {
|
|
|
1578
1780
|
};
|
|
1579
1781
|
|
|
1580
1782
|
|
|
1783
|
+
export type MutationCreateAccessibleContentItemArgs = {
|
|
1784
|
+
input: Array<CreateAccessibleContentItemInput>;
|
|
1785
|
+
};
|
|
1786
|
+
|
|
1787
|
+
|
|
1581
1788
|
export type MutationCreateAllowedValuesContentValidationRuleArgs = {
|
|
1582
1789
|
input: CreateAllowedValuesContentValidationRuleInput;
|
|
1583
1790
|
};
|
|
@@ -1743,6 +1950,21 @@ export type MutationDeclineInvitationArgs = {
|
|
|
1743
1950
|
};
|
|
1744
1951
|
|
|
1745
1952
|
|
|
1953
|
+
export type MutationFixMissingTagsIssueArgs = {
|
|
1954
|
+
input: FixMissingTagsIssueInput;
|
|
1955
|
+
};
|
|
1956
|
+
|
|
1957
|
+
|
|
1958
|
+
export type MutationFixSimilarImageContentValuesIssueArgs = {
|
|
1959
|
+
input: FixSimilarImageContentValuesIssueInput;
|
|
1960
|
+
};
|
|
1961
|
+
|
|
1962
|
+
|
|
1963
|
+
export type MutationFixSimilarSmartTextIssueArgs = {
|
|
1964
|
+
input: FixSimilarSmartTextIssueInput;
|
|
1965
|
+
};
|
|
1966
|
+
|
|
1967
|
+
|
|
1746
1968
|
export type MutationGenerateAssetUploadUrlArgs = {
|
|
1747
1969
|
input: Array<GenerateAssetUploadUrlInput>;
|
|
1748
1970
|
};
|
|
@@ -1753,6 +1975,11 @@ export type MutationRegenerateApiTokenArgs = {
|
|
|
1753
1975
|
};
|
|
1754
1976
|
|
|
1755
1977
|
|
|
1978
|
+
export type MutationRemoveAccessibleContentItemArgs = {
|
|
1979
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
1980
|
+
};
|
|
1981
|
+
|
|
1982
|
+
|
|
1756
1983
|
export type MutationRemoveApiTokenArgs = {
|
|
1757
1984
|
prn: Array<Scalars['PRN']['input']>;
|
|
1758
1985
|
};
|
|
@@ -1870,6 +2097,7 @@ export type MutationRemoveThemeArgs = {
|
|
|
1870
2097
|
|
|
1871
2098
|
export type MutationRunSeederArgs = {
|
|
1872
2099
|
seedType: SeedType;
|
|
2100
|
+
withContent: Scalars['Boolean']['input'];
|
|
1873
2101
|
};
|
|
1874
2102
|
|
|
1875
2103
|
|
|
@@ -1883,6 +2111,11 @@ export type MutationSyncTagVisibilityToDescendantsArgs = {
|
|
|
1883
2111
|
};
|
|
1884
2112
|
|
|
1885
2113
|
|
|
2114
|
+
export type MutationUpdateAccessibleContentItemArgs = {
|
|
2115
|
+
input: Array<UpdateAccessibleContentItemInput>;
|
|
2116
|
+
};
|
|
2117
|
+
|
|
2118
|
+
|
|
1886
2119
|
export type MutationUpdateAllowedValuesContentValidationRuleArgs = {
|
|
1887
2120
|
input: UpdateAllowedValuesContentValidationRuleInput;
|
|
1888
2121
|
};
|
|
@@ -2106,8 +2339,6 @@ export type PathPart = {
|
|
|
2106
2339
|
createdAt: Scalars['DateTime']['output'];
|
|
2107
2340
|
/** Whether this Path Part has a Content Experience. */
|
|
2108
2341
|
hasContentExperience: Scalars['Boolean']['output'];
|
|
2109
|
-
/** Not yet implemented! */
|
|
2110
|
-
organization?: Maybe<Organization>;
|
|
2111
2342
|
/** The parent Path Part. Only null when this is the root PathPart. */
|
|
2112
2343
|
parent?: Maybe<PathPart>;
|
|
2113
2344
|
/** The ID of the parent Path Part. Only null when this is the root PathPart. */
|
|
@@ -2190,6 +2421,10 @@ export type ProcessedAssetOptionsInput = {
|
|
|
2190
2421
|
|
|
2191
2422
|
export type Query = {
|
|
2192
2423
|
__typename?: 'Query';
|
|
2424
|
+
/** Finds one or many AccessibleContentItems by PRN. Throws NotFoundException when no AccessibleContentItem could be found. */
|
|
2425
|
+
accessibleContentItem: Array<Scalars['JSON']['output']>;
|
|
2426
|
+
/** Orders and paginates all AccessibleContentItems. This uses the same arguments as find all Content Items. This means you can not filter on the fields in the return value of this query, but only on the fields of the ContentItem model. */
|
|
2427
|
+
accessibleContentItems: AccessibleContentItemsConnection;
|
|
2193
2428
|
/** Finds one or many ApiTokens by PRN. Throws NotFoundException when no ApiToken could be found. */
|
|
2194
2429
|
apiToken: Array<ApiToken>;
|
|
2195
2430
|
/** Orders all ApiTokens. */
|
|
@@ -2208,9 +2443,16 @@ export type Query = {
|
|
|
2208
2443
|
buildingBlockFieldFulfillments: BuildingBlockFieldFulfillmentsConnection;
|
|
2209
2444
|
/** Orders and paginates all BuildingBlockFields. */
|
|
2210
2445
|
buildingBlockFields: BuildingBlockFieldsConnection;
|
|
2211
|
-
|
|
2446
|
+
/** Detect CAST matches with database reusable entries. Matches are based on plaintext. */
|
|
2447
|
+
casCastMatches?: Maybe<Scalars['CAST']['output']>;
|
|
2448
|
+
/** Get similar image Content Values within the database. Use similarity score based on image hashes to find potential duplicates. */
|
|
2449
|
+
casFindSimilarImageContentValues: Array<CasImageContentValueMatch>;
|
|
2450
|
+
/** Get similar image Content Values within the database from an asset PRN input. Use similarity score based on image hashes to find potential duplicates. */
|
|
2451
|
+
casFindSimilarImageContentValuesFromAsset: Array<CasImageContentValueMatch>;
|
|
2452
|
+
/** Use predefined regex patterns to detect potentially reusable content in a string. */
|
|
2212
2453
|
casRegexSuggestions: Array<CasRegexSuggestion>;
|
|
2213
|
-
|
|
2454
|
+
/** Detect string matches with database reusable entries. */
|
|
2455
|
+
casStringMatches: Array<CasDatabaseTextMatch>;
|
|
2214
2456
|
/** Finds one or many Channels by PRN. Throws NotFoundException when no Channel could be found. */
|
|
2215
2457
|
channel: Array<Channel>;
|
|
2216
2458
|
/** Orders and paginates all Channels. */
|
|
@@ -2237,7 +2479,7 @@ export type Query = {
|
|
|
2237
2479
|
contentValue: Array<ContentValue>;
|
|
2238
2480
|
/** Orders and paginates all ContentValues. */
|
|
2239
2481
|
contentValues: ContentValuesConnection;
|
|
2240
|
-
|
|
2482
|
+
currentUser: User;
|
|
2241
2483
|
/** Finds one or many ExperienceComponents by PRN. Throws NotFoundException when no ExperienceComponent could be found. */
|
|
2242
2484
|
experienceComponent: Array<ExperienceComponent>;
|
|
2243
2485
|
/** Orders and paginates all ExperienceComponents. */
|
|
@@ -2252,10 +2494,16 @@ export type Query = {
|
|
|
2252
2494
|
gridPlacements: GridPlacementsConnection;
|
|
2253
2495
|
/** Finds one or many Invitations by PRN. Throws NotFoundException when no Invitation could be found. */
|
|
2254
2496
|
invitation: Array<Invitation>;
|
|
2255
|
-
/** Finds all Invitations for the current
|
|
2256
|
-
|
|
2497
|
+
/** Finds all Invitations for the current User (e.g. the logged in user) */
|
|
2498
|
+
invitationsForCurrentUser: Array<Invitation>;
|
|
2257
2499
|
/** Finds all Invitations for the given Organization */
|
|
2258
2500
|
invitationsForOrganization: Array<Invitation>;
|
|
2501
|
+
/** Finds one or many Issues by PRN. Throws NotFoundException when no Issue could be found. */
|
|
2502
|
+
issue: Array<Issue>;
|
|
2503
|
+
/** Gets statistics for all issues, grouped by type and totals. */
|
|
2504
|
+
issueStatistics: IssueStatistics;
|
|
2505
|
+
/** Orders and paginates all Issues. */
|
|
2506
|
+
issues: IssuesConnection;
|
|
2259
2507
|
/** Finds one or many Organizations by PRN. Throws NotFoundException when no Organization could be found. */
|
|
2260
2508
|
organization: Array<Organization>;
|
|
2261
2509
|
/** Finds one or many Path Parts by PRN. Throws NotFoundException when no Path Part could be found. */
|
|
@@ -2264,8 +2512,8 @@ export type Query = {
|
|
|
2264
2512
|
pathPartByPath: Array<PathPart>;
|
|
2265
2513
|
/** Orders and paginates all Path Parts. */
|
|
2266
2514
|
pathParts: PathPartsConnection;
|
|
2267
|
-
plateMaintainers: Array<
|
|
2268
|
-
/** Finds all RoleAssignments for the current Subject (e.g. the logged in user) */
|
|
2515
|
+
plateMaintainers: Array<User>;
|
|
2516
|
+
/** Finds all RoleAssignments for the current Subject (e.g. the logged in user or API token) */
|
|
2269
2517
|
roleAssignmentsForCurrentSubject: Array<RoleAssignment>;
|
|
2270
2518
|
/** Finds all RoleAssignments for the given Organization */
|
|
2271
2519
|
roleAssignmentsForOrganization: Array<RoleAssignment>;
|
|
@@ -2280,6 +2528,18 @@ export type Query = {
|
|
|
2280
2528
|
};
|
|
2281
2529
|
|
|
2282
2530
|
|
|
2531
|
+
export type QueryAccessibleContentItemArgs = {
|
|
2532
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
2533
|
+
};
|
|
2534
|
+
|
|
2535
|
+
|
|
2536
|
+
export type QueryAccessibleContentItemsArgs = {
|
|
2537
|
+
orderBy?: InputMaybe<OrderOptionsInput>;
|
|
2538
|
+
paginate: PaginationOptionsInput;
|
|
2539
|
+
where?: InputMaybe<Array<ContentItemsFilterInput>>;
|
|
2540
|
+
};
|
|
2541
|
+
|
|
2542
|
+
|
|
2283
2543
|
export type QueryApiTokenArgs = {
|
|
2284
2544
|
prn: Array<Scalars['PRN']['input']>;
|
|
2285
2545
|
};
|
|
@@ -2332,22 +2592,36 @@ export type QueryBuildingBlockFieldsArgs = {
|
|
|
2332
2592
|
|
|
2333
2593
|
|
|
2334
2594
|
export type QueryCasCastMatchesArgs = {
|
|
2595
|
+
config?: InputMaybe<DatabaseTextMatchConfig>;
|
|
2335
2596
|
inputCast: Scalars['CAST']['input'];
|
|
2336
|
-
|
|
2597
|
+
};
|
|
2598
|
+
|
|
2599
|
+
|
|
2600
|
+
export type QueryCasFindSimilarImageContentValuesArgs = {
|
|
2601
|
+
config?: InputMaybe<DuplicateImagesDetectionConfig>;
|
|
2602
|
+
contentValuePrnString: Scalars['String']['input'];
|
|
2603
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2604
|
+
};
|
|
2605
|
+
|
|
2606
|
+
|
|
2607
|
+
export type QueryCasFindSimilarImageContentValuesFromAssetArgs = {
|
|
2608
|
+
assetPrnString: Scalars['String']['input'];
|
|
2609
|
+
config?: InputMaybe<DuplicateImagesDetectionConfig>;
|
|
2610
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2337
2611
|
};
|
|
2338
2612
|
|
|
2339
2613
|
|
|
2340
2614
|
export type QueryCasRegexSuggestionsArgs = {
|
|
2615
|
+
config?: InputMaybe<RegexExtractionConfig>;
|
|
2341
2616
|
inputText: Scalars['String']['input'];
|
|
2342
2617
|
limit: Scalars['Int']['input'];
|
|
2343
|
-
regexConfig?: InputMaybe<RegexExtractionConfig>;
|
|
2344
2618
|
};
|
|
2345
2619
|
|
|
2346
2620
|
|
|
2347
2621
|
export type QueryCasStringMatchesArgs = {
|
|
2622
|
+
config?: InputMaybe<DatabaseTextMatchConfig>;
|
|
2348
2623
|
inputText: Scalars['String']['input'];
|
|
2349
2624
|
limit: Scalars['Int']['input'];
|
|
2350
|
-
matchConfig?: InputMaybe<DatabaseMatchConfig>;
|
|
2351
2625
|
};
|
|
2352
2626
|
|
|
2353
2627
|
|
|
@@ -2467,6 +2741,23 @@ export type QueryInvitationArgs = {
|
|
|
2467
2741
|
};
|
|
2468
2742
|
|
|
2469
2743
|
|
|
2744
|
+
export type QueryIssueArgs = {
|
|
2745
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
2746
|
+
};
|
|
2747
|
+
|
|
2748
|
+
|
|
2749
|
+
export type QueryIssueStatisticsArgs = {
|
|
2750
|
+
createdSince?: InputMaybe<Scalars['DateTime']['input']>;
|
|
2751
|
+
};
|
|
2752
|
+
|
|
2753
|
+
|
|
2754
|
+
export type QueryIssuesArgs = {
|
|
2755
|
+
orderBy?: InputMaybe<OrderOptionsInput>;
|
|
2756
|
+
paginate: PaginationOptionsInput;
|
|
2757
|
+
where?: InputMaybe<Array<IssuesFilterInput>>;
|
|
2758
|
+
};
|
|
2759
|
+
|
|
2760
|
+
|
|
2470
2761
|
export type QueryOrganizationArgs = {
|
|
2471
2762
|
prn: Array<Scalars['PRN']['input']>;
|
|
2472
2763
|
};
|
|
@@ -2489,6 +2780,11 @@ export type QueryPathPartsArgs = {
|
|
|
2489
2780
|
};
|
|
2490
2781
|
|
|
2491
2782
|
|
|
2783
|
+
export type QueryRoleAssignmentsForOrganizationArgs = {
|
|
2784
|
+
subjectType?: InputMaybe<SubjectType>;
|
|
2785
|
+
};
|
|
2786
|
+
|
|
2787
|
+
|
|
2492
2788
|
export type QueryTagArgs = {
|
|
2493
2789
|
prn: Array<Scalars['PRN']['input']>;
|
|
2494
2790
|
};
|
|
@@ -2545,8 +2841,6 @@ export type RemoveBlueprintResponse = {
|
|
|
2545
2841
|
definedBy: ExperienceComponent;
|
|
2546
2842
|
isFixed: Scalars['Boolean']['output'];
|
|
2547
2843
|
name: Scalars['String']['output'];
|
|
2548
|
-
/** Not yet implemented! */
|
|
2549
|
-
organization?: Maybe<Organization>;
|
|
2550
2844
|
prn: Scalars['PRN']['output'];
|
|
2551
2845
|
stage: Stage;
|
|
2552
2846
|
updatedAt: Scalars['DateTime']['output'];
|
|
@@ -2559,8 +2853,6 @@ export type RemoveBuildingBlockResponse = {
|
|
|
2559
2853
|
experienceComponents: Array<ExperienceComponent>;
|
|
2560
2854
|
gridDefinition?: Maybe<GridDefinition>;
|
|
2561
2855
|
next?: Maybe<BuildingBlock>;
|
|
2562
|
-
/** Not yet implemented! */
|
|
2563
|
-
organization?: Maybe<Organization>;
|
|
2564
2856
|
previous?: Maybe<BuildingBlock>;
|
|
2565
2857
|
prn: Scalars['PRN']['output'];
|
|
2566
2858
|
slug: Scalars['String']['output'];
|
|
@@ -2573,12 +2865,17 @@ export type RemoveContentExperienceResponse = {
|
|
|
2573
2865
|
__typename?: 'RemoveContentExperienceResponse';
|
|
2574
2866
|
createdAt: Scalars['DateTime']['output'];
|
|
2575
2867
|
experienceComponent: ExperienceComponent;
|
|
2576
|
-
/**
|
|
2577
|
-
|
|
2868
|
+
/** The issues that this Content Experience is a subject of */
|
|
2869
|
+
issues: Array<Issue>;
|
|
2578
2870
|
pathPart: PathPart;
|
|
2871
|
+
/** An array of path part ids from the current path part up to the root, ordered from root to current. */
|
|
2872
|
+
pathPartsToRootIds: Array<Scalars['String']['output']>;
|
|
2873
|
+
primaryContentItem?: Maybe<ContentItem>;
|
|
2579
2874
|
prn: Scalars['PRN']['output'];
|
|
2580
2875
|
/** The Content Values that use this Content Experience as an referenced value. Reverse relation of referencedContentExperiences. */
|
|
2581
2876
|
referencedBySmartTextContentValues: Array<ContentValue>;
|
|
2877
|
+
seoDescription?: Maybe<Scalars['String']['output']>;
|
|
2878
|
+
seoTitle?: Maybe<Scalars['String']['output']>;
|
|
2582
2879
|
slug: Scalars['String']['output'];
|
|
2583
2880
|
stage: Stage;
|
|
2584
2881
|
/** The ids of the tags this Content Experience are tagged with, including all ancestor tags. Should only be used for filtering. */
|
|
@@ -2601,13 +2898,13 @@ export type RemoveContentValueResponse = {
|
|
|
2601
2898
|
interpolatedSmartText?: Maybe<Scalars['CAST']['output']>;
|
|
2602
2899
|
/** Whether the ContentValue is reusable. Defaults to false. */
|
|
2603
2900
|
isReusable: Scalars['Boolean']['output'];
|
|
2901
|
+
/** The issues that this Content Value is a subject of */
|
|
2902
|
+
issues: Array<Issue>;
|
|
2604
2903
|
linkedContentType?: Maybe<ContentType>;
|
|
2605
2904
|
linkedGridPlacement?: Maybe<GridPlacement>;
|
|
2606
2905
|
linkedPathPart?: Maybe<PathPart>;
|
|
2607
2906
|
linkedTag?: Maybe<Tag>;
|
|
2608
2907
|
next?: Maybe<ContentValue>;
|
|
2609
|
-
/** Not yet implemented! */
|
|
2610
|
-
organization?: Maybe<Organization>;
|
|
2611
2908
|
/** The plain text representation of the smart text. This is used internally. If you really need the plain text representation of CAST, use the castToPlainText utility function. */
|
|
2612
2909
|
plainText?: Maybe<Scalars['String']['output']>;
|
|
2613
2910
|
previous?: Maybe<ContentValue>;
|
|
@@ -2622,11 +2919,21 @@ export type RemoveContentValueResponse = {
|
|
|
2622
2919
|
referencedContentValues: Array<ContentValue>;
|
|
2623
2920
|
/** The Grid Placements that are referenced in internal links in the smart text. This is calculated based on the CAST tree in the smart text and cannot be updated manually. */
|
|
2624
2921
|
referencedGridPlacements: Array<GridPlacement>;
|
|
2922
|
+
/** The alt text of the relatedAsset. */
|
|
2923
|
+
relatedAssetAltText?: Maybe<Scalars['String']['output']>;
|
|
2924
|
+
/** The file name of the relatedAsset. */
|
|
2925
|
+
relatedAssetFileName?: Maybe<Scalars['String']['output']>;
|
|
2926
|
+
/** The file type (MIME type) of the relatedAsset. */
|
|
2927
|
+
relatedAssetFileType?: Maybe<Scalars['String']['output']>;
|
|
2928
|
+
/** The file size in bytes of the relatedAsset. */
|
|
2929
|
+
relatedAssetSize?: Maybe<Scalars['Int']['output']>;
|
|
2625
2930
|
relatedContentItem?: Maybe<ContentItem>;
|
|
2626
2931
|
/** The CAST tree for the smart text. */
|
|
2627
2932
|
smartText?: Maybe<Scalars['CAST']['output']>;
|
|
2628
2933
|
stage: Stage;
|
|
2629
2934
|
updatedAt: Scalars['DateTime']['output'];
|
|
2935
|
+
/** The value type name of the Content Value. This is calculated based on the value that is in the Content Value. Filtered using a StringFilter. */
|
|
2936
|
+
valueTypeName: ContentValueTypeNames;
|
|
2630
2937
|
};
|
|
2631
2938
|
|
|
2632
2939
|
export type RemoveExperienceComponentResponse = {
|
|
@@ -2649,8 +2956,6 @@ export type RemoveExperienceComponentResponse = {
|
|
|
2649
2956
|
isGlobal: Scalars['Boolean']['output'];
|
|
2650
2957
|
/** The name of the Experience Component. Only applicable for global Experience Components. */
|
|
2651
2958
|
name?: Maybe<Scalars['String']['output']>;
|
|
2652
|
-
/** Not yet implemented! */
|
|
2653
|
-
organization?: Maybe<Organization>;
|
|
2654
2959
|
prn: Scalars['PRN']['output'];
|
|
2655
2960
|
stage: Stage;
|
|
2656
2961
|
updatedAt: Scalars['DateTime']['output'];
|
|
@@ -2763,14 +3068,18 @@ export type StringFormatContentValidationRuleSettingsInput = {
|
|
|
2763
3068
|
};
|
|
2764
3069
|
|
|
2765
3070
|
export type Subject = {
|
|
2766
|
-
__typename?: 'Subject';
|
|
2767
|
-
email: Scalars['String']['output'];
|
|
2768
3071
|
id: Scalars['String']['output'];
|
|
2769
|
-
|
|
2770
|
-
|
|
2771
|
-
|
|
2772
|
-
|
|
2773
|
-
|
|
3072
|
+
};
|
|
3073
|
+
|
|
3074
|
+
/** The type of subject (USER or API_TOKEN) */
|
|
3075
|
+
export enum SubjectType {
|
|
3076
|
+
ApiToken = 'API_TOKEN',
|
|
3077
|
+
User = 'USER'
|
|
3078
|
+
}
|
|
3079
|
+
|
|
3080
|
+
export type SuccessResponse = {
|
|
3081
|
+
__typename?: 'SuccessResponse';
|
|
3082
|
+
status: Scalars['String']['output'];
|
|
2774
3083
|
};
|
|
2775
3084
|
|
|
2776
3085
|
export type Tag = {
|
|
@@ -2798,8 +3107,6 @@ export type Tag = {
|
|
|
2798
3107
|
name: Scalars['String']['output'];
|
|
2799
3108
|
/** The nesting level of the Tag. */
|
|
2800
3109
|
nestingLevel: Scalars['Int']['output'];
|
|
2801
|
-
/** Not yet implemented! */
|
|
2802
|
-
organization?: Maybe<Organization>;
|
|
2803
3110
|
/** The parent Tag of this Tag. */
|
|
2804
3111
|
parent?: Maybe<Tag>;
|
|
2805
3112
|
/** The ID of the parent Tag. Only null when this is a root Tag. */
|
|
@@ -2866,8 +3173,6 @@ export type Theme = {
|
|
|
2866
3173
|
channels: Array<Channel>;
|
|
2867
3174
|
createdAt: Scalars['DateTime']['output'];
|
|
2868
3175
|
name: Scalars['String']['output'];
|
|
2869
|
-
/** Not yet implemented! */
|
|
2870
|
-
organization?: Maybe<Organization>;
|
|
2871
3176
|
prn: Scalars['PRN']['output'];
|
|
2872
3177
|
repositoryUrl: Scalars['String']['output'];
|
|
2873
3178
|
updatedAt: Scalars['DateTime']['output'];
|
|
@@ -2906,6 +3211,21 @@ export type ThemesFilterInput = {
|
|
|
2906
3211
|
updatedAt?: InputMaybe<Array<DateFilter>>;
|
|
2907
3212
|
};
|
|
2908
3213
|
|
|
3214
|
+
export type UpdateAccessibleContentItemInput = {
|
|
3215
|
+
/**
|
|
3216
|
+
* The values of the Content Item.
|
|
3217
|
+
* The keys are the Content Field slugs and the values are either directly the value (only possible if the Content Field has a validation rule that enforces a single type) or an object with valueTypeName and value.
|
|
3218
|
+
* Example value structure: `{ 'title': 'My Title', 'contentTypeField': 'prn:plate-dev:org-id:cms:content-type:123' }`
|
|
3219
|
+
* Example object structure: `{ 'title': { 'valueTypeName': 'STRING', 'value': 'My Title' }, 'contentTypeField': { 'valueTypeName': 'CONTENT_TYPE', 'value': 'prn:plate-dev:org-id:cms:content-type:123' } }`
|
|
3220
|
+
*/
|
|
3221
|
+
content?: InputMaybe<Scalars['JSON']['input']>;
|
|
3222
|
+
/** Whether the Content Item is a draft. Drafts are not validated against the Content Type's validation rules. */
|
|
3223
|
+
isDraft?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3224
|
+
prn: Scalars['String']['input'];
|
|
3225
|
+
/** The paths of the Tags to assign to the Content Item. */
|
|
3226
|
+
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3227
|
+
};
|
|
3228
|
+
|
|
2909
3229
|
export type UpdateAllowedValuesContentValidationRuleInput = {
|
|
2910
3230
|
prn: Scalars['PRN']['input'];
|
|
2911
3231
|
settings: AllowedValuesContentValidationRuleSettingsInput;
|
|
@@ -2917,7 +3237,8 @@ export type UpdateApiTokenInput = {
|
|
|
2917
3237
|
};
|
|
2918
3238
|
|
|
2919
3239
|
export type UpdateAssetInput = {
|
|
2920
|
-
|
|
3240
|
+
/** The alt text of the asset. */
|
|
3241
|
+
altText?: InputMaybe<Scalars['String']['input']>;
|
|
2921
3242
|
prn: Scalars['PRN']['input'];
|
|
2922
3243
|
};
|
|
2923
3244
|
|
|
@@ -2969,7 +3290,12 @@ export type UpdateContentExperienceInput = {
|
|
|
2969
3290
|
/** The PRN of the Path Part to publish this Content Experience to. The Channel the Path Part points to must have the same Theme as the current Path Part's Channel's Theme. */
|
|
2970
3291
|
pathPart?: InputMaybe<Scalars['PRN']['input']>;
|
|
2971
3292
|
preview?: InputMaybe<Scalars['PRN']['input']>;
|
|
3293
|
+
primaryContentItem?: InputMaybe<Scalars['PRN']['input']>;
|
|
2972
3294
|
prn: Scalars['PRN']['input'];
|
|
3295
|
+
/** The SEO description for the Content Experience. */
|
|
3296
|
+
seoDescription?: InputMaybe<Scalars['String']['input']>;
|
|
3297
|
+
/** The SEO title for the Content Experience. */
|
|
3298
|
+
seoTitle?: InputMaybe<Scalars['String']['input']>;
|
|
2973
3299
|
slug?: InputMaybe<Scalars['String']['input']>;
|
|
2974
3300
|
tags?: InputMaybe<Array<Scalars['PRN']['input']>>;
|
|
2975
3301
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2980,6 +3306,7 @@ export type UpdateContentFieldInput = {
|
|
|
2980
3306
|
/** The PRN of the ContentField that this ContentField should manually be sorted after. */
|
|
2981
3307
|
next?: InputMaybe<Scalars['PRN']['input']>;
|
|
2982
3308
|
prn: Scalars['PRN']['input'];
|
|
3309
|
+
slug?: InputMaybe<Scalars['String']['input']>;
|
|
2983
3310
|
};
|
|
2984
3311
|
|
|
2985
3312
|
/** Note that in the near future this input will also allow for changing the ContentItem's ContentValues. */
|
|
@@ -2987,6 +3314,7 @@ export type UpdateContentItemInput = {
|
|
|
2987
3314
|
contentValuesToConnect?: InputMaybe<Array<ConnectContentValueInput>>;
|
|
2988
3315
|
contentValuesToCreate?: InputMaybe<Array<CreateContentValueForContentItemInput>>;
|
|
2989
3316
|
isDraft?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3317
|
+
primaryContentExperience?: InputMaybe<Scalars['PRN']['input']>;
|
|
2990
3318
|
prn: Scalars['PRN']['input'];
|
|
2991
3319
|
tags?: InputMaybe<Array<Scalars['PRN']['input']>>;
|
|
2992
3320
|
};
|
|
@@ -2997,6 +3325,7 @@ export type UpdateContentTypeInput = {
|
|
|
2997
3325
|
displayNameTemplate?: InputMaybe<Scalars['String']['input']>;
|
|
2998
3326
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
2999
3327
|
prn: Scalars['PRN']['input'];
|
|
3328
|
+
slug?: InputMaybe<Scalars['String']['input']>;
|
|
3000
3329
|
};
|
|
3001
3330
|
|
|
3002
3331
|
export type UpdateContentValueInput = {
|
|
@@ -3123,6 +3452,17 @@ export type UpdateValueTypeContentValidationRuleInput = {
|
|
|
3123
3452
|
settings: ValueTypeContentValidationRuleSettingsInput;
|
|
3124
3453
|
};
|
|
3125
3454
|
|
|
3455
|
+
export type User = Subject & {
|
|
3456
|
+
__typename?: 'User';
|
|
3457
|
+
email: Scalars['String']['output'];
|
|
3458
|
+
id: Scalars['String']['output'];
|
|
3459
|
+
isPlateMaintainer: Scalars['Boolean']['output'];
|
|
3460
|
+
/** Can have values 'en' or 'nl'. */
|
|
3461
|
+
language: Scalars['String']['output'];
|
|
3462
|
+
name: Name;
|
|
3463
|
+
roleAssignments: Array<RoleAssignment>;
|
|
3464
|
+
};
|
|
3465
|
+
|
|
3126
3466
|
export type ValueTypeContentValidationRuleSettings = {
|
|
3127
3467
|
__typename?: 'ValueTypeContentValidationRuleSettings';
|
|
3128
3468
|
allowedTypes: Array<ContentValueTypeNames>;
|
|
@@ -3132,17 +3472,274 @@ export type ValueTypeContentValidationRuleSettingsInput = {
|
|
|
3132
3472
|
allowedTypes: Array<ContentValueTypeNames>;
|
|
3133
3473
|
};
|
|
3134
3474
|
|
|
3135
|
-
export type
|
|
3136
|
-
|
|
3475
|
+
export type ContentExperiencesQueryVariables = Exact<{
|
|
3476
|
+
paginate: PaginationOptionsInput;
|
|
3477
|
+
where?: InputMaybe<Array<ContentExperiencesFilterInput> | ContentExperiencesFilterInput>;
|
|
3478
|
+
orderBy?: InputMaybe<OrderOptionsInput>;
|
|
3479
|
+
optionsList: Array<ProcessedAssetOptionsInput> | ProcessedAssetOptionsInput;
|
|
3137
3480
|
}>;
|
|
3138
3481
|
|
|
3139
3482
|
|
|
3140
|
-
export type
|
|
3483
|
+
export type ContentExperiencesQuery = { __typename?: 'Query', contentExperiences: { __typename?: 'ContentExperiencesConnection', totalCount: number, pageInfo: { __typename?: 'PageInfo', endCursor?: string | null, hasNextPage: boolean, hasPreviousPage: boolean, startCursor?: string | null }, edges: Array<{ __typename?: 'ContentExperienceEdge', cursor: string, node: (
|
|
3484
|
+
{ __typename?: 'ContentExperience', preview?: (
|
|
3485
|
+
{ __typename?: 'Asset', processedUrls?: Array<string> | null }
|
|
3486
|
+
& { ' $fragmentRefs'?: { 'AssetFragmentFragment': AssetFragmentFragment } }
|
|
3487
|
+
) | null, pathPart: (
|
|
3488
|
+
{ __typename?: 'PathPart' }
|
|
3489
|
+
& { ' $fragmentRefs'?: { 'PathPartFragmentFragment': PathPartFragmentFragment } }
|
|
3490
|
+
), experienceComponent: (
|
|
3491
|
+
{ __typename?: 'ExperienceComponent', buildingBlock: (
|
|
3492
|
+
{ __typename?: 'BuildingBlock' }
|
|
3493
|
+
& { ' $fragmentRefs'?: { 'BuildingBlockFragmentFragment': BuildingBlockFragmentFragment } }
|
|
3494
|
+
), buildingBlockFieldFulfillments: Array<(
|
|
3495
|
+
{ __typename?: 'BuildingBlockFieldFulfillment', buildingBlockField: (
|
|
3496
|
+
{ __typename?: 'BuildingBlockField' }
|
|
3497
|
+
& { ' $fragmentRefs'?: { 'BuildingBlockFieldFragmentFragment': BuildingBlockFieldFragmentFragment } }
|
|
3498
|
+
), contentValue: (
|
|
3499
|
+
{ __typename?: 'ContentValue', contentItem?: { __typename?: 'ContentItem', prn: any } | null, relatedAsset?: (
|
|
3500
|
+
{ __typename?: 'Asset', processedUrls?: Array<string> | null }
|
|
3501
|
+
& { ' $fragmentRefs'?: { 'AssetFragmentFragment': AssetFragmentFragment } }
|
|
3502
|
+
) | null, linkedGridPlacement?: (
|
|
3503
|
+
{ __typename?: 'GridPlacement', experienceComponent: (
|
|
3504
|
+
{ __typename?: 'ExperienceComponent', buildingBlock: (
|
|
3505
|
+
{ __typename?: 'BuildingBlock' }
|
|
3506
|
+
& { ' $fragmentRefs'?: { 'BuildingBlockFragmentFragment': BuildingBlockFragmentFragment } }
|
|
3507
|
+
) }
|
|
3508
|
+
& { ' $fragmentRefs'?: { 'ExperienceComponentFragmentFragment': ExperienceComponentFragmentFragment } }
|
|
3509
|
+
) }
|
|
3510
|
+
& { ' $fragmentRefs'?: { 'GridPlacementFragmentFragment': GridPlacementFragmentFragment } }
|
|
3511
|
+
) | null, relatedContentItem?: (
|
|
3512
|
+
{ __typename?: 'ContentItem', contentType: (
|
|
3513
|
+
{ __typename?: 'ContentType', contentFields: Array<(
|
|
3514
|
+
{ __typename?: 'ContentField' }
|
|
3515
|
+
& { ' $fragmentRefs'?: { 'ContentFieldFragmentFragment': ContentFieldFragmentFragment } }
|
|
3516
|
+
)> }
|
|
3517
|
+
& { ' $fragmentRefs'?: { 'ContentTypeFragmentFragment': ContentTypeFragmentFragment } }
|
|
3518
|
+
), contentValues: Array<(
|
|
3519
|
+
{ __typename?: 'ContentValue', contentField?: (
|
|
3520
|
+
{ __typename?: 'ContentField' }
|
|
3521
|
+
& { ' $fragmentRefs'?: { 'ContentFieldFragmentFragment': ContentFieldFragmentFragment } }
|
|
3522
|
+
) | null, relatedAsset?: (
|
|
3523
|
+
{ __typename?: 'Asset', processedUrls?: Array<string> | null }
|
|
3524
|
+
& { ' $fragmentRefs'?: { 'AssetFragmentFragment': AssetFragmentFragment } }
|
|
3525
|
+
) | null }
|
|
3526
|
+
& { ' $fragmentRefs'?: { 'ComprehensiveContentValueFragmentFragment': ComprehensiveContentValueFragmentFragment } }
|
|
3527
|
+
)> }
|
|
3528
|
+
& { ' $fragmentRefs'?: { 'ContentItemFragmentFragment': ContentItemFragmentFragment } }
|
|
3529
|
+
) | null }
|
|
3530
|
+
& { ' $fragmentRefs'?: { 'ComprehensiveContentValueFragmentFragment': ComprehensiveContentValueFragmentFragment } }
|
|
3531
|
+
) }
|
|
3532
|
+
& { ' $fragmentRefs'?: { 'BuildingBlockFieldFulfillmentFragmentFragment': BuildingBlockFieldFulfillmentFragmentFragment } }
|
|
3533
|
+
)> }
|
|
3534
|
+
& { ' $fragmentRefs'?: { 'ExperienceComponentFragmentFragment': ExperienceComponentFragmentFragment } }
|
|
3535
|
+
), tags: Array<(
|
|
3536
|
+
{ __typename?: 'Tag' }
|
|
3537
|
+
& { ' $fragmentRefs'?: { 'TagFragmentFragment': TagFragmentFragment } }
|
|
3538
|
+
)> }
|
|
3539
|
+
& { ' $fragmentRefs'?: { 'ContentExperienceFragmentFragment': ContentExperienceFragmentFragment } }
|
|
3540
|
+
) }> } };
|
|
3541
|
+
|
|
3542
|
+
export type ContentItemsQueryVariables = Exact<{
|
|
3543
|
+
paginate: PaginationOptionsInput;
|
|
3544
|
+
where?: InputMaybe<Array<ContentItemsFilterInput> | ContentItemsFilterInput>;
|
|
3545
|
+
orderBy?: InputMaybe<OrderOptionsInput>;
|
|
3546
|
+
optionsList: Array<ProcessedAssetOptionsInput> | ProcessedAssetOptionsInput;
|
|
3547
|
+
}>;
|
|
3548
|
+
|
|
3549
|
+
|
|
3550
|
+
export type ContentItemsQuery = { __typename?: 'Query', contentItems: { __typename?: 'ContentItemsConnection', totalCount: number, pageInfo: { __typename?: 'PageInfo', endCursor?: string | null, hasNextPage: boolean, hasPreviousPage: boolean, startCursor?: string | null }, edges: Array<{ __typename?: 'ContentItemEdge', cursor: string, node: (
|
|
3551
|
+
{ __typename?: 'ContentItem', contentValues: Array<(
|
|
3552
|
+
{ __typename?: 'ContentValue', contentField?: (
|
|
3553
|
+
{ __typename?: 'ContentField' }
|
|
3554
|
+
& { ' $fragmentRefs'?: { 'ContentFieldFragmentFragment': ContentFieldFragmentFragment } }
|
|
3555
|
+
) | null, relatedAsset?: (
|
|
3556
|
+
{ __typename?: 'Asset', processedUrls?: Array<string> | null }
|
|
3557
|
+
& { ' $fragmentRefs'?: { 'AssetFragmentFragment': AssetFragmentFragment } }
|
|
3558
|
+
) | null, relatedContentItem?: (
|
|
3559
|
+
{ __typename?: 'ContentItem', contentValues: Array<(
|
|
3560
|
+
{ __typename?: 'ContentValue' }
|
|
3561
|
+
& { ' $fragmentRefs'?: { 'ContentValueFragmentFragment': ContentValueFragmentFragment } }
|
|
3562
|
+
)> }
|
|
3563
|
+
& { ' $fragmentRefs'?: { 'ContentItemFragmentFragment': ContentItemFragmentFragment } }
|
|
3564
|
+
) | null }
|
|
3565
|
+
& { ' $fragmentRefs'?: { 'ContentValueFragmentFragment': ContentValueFragmentFragment } }
|
|
3566
|
+
)>, contentType: (
|
|
3567
|
+
{ __typename?: 'ContentType', contentFields: Array<(
|
|
3568
|
+
{ __typename?: 'ContentField' }
|
|
3569
|
+
& { ' $fragmentRefs'?: { 'ContentFieldFragmentFragment': ContentFieldFragmentFragment } }
|
|
3570
|
+
)> }
|
|
3571
|
+
& { ' $fragmentRefs'?: { 'ContentTypeFragmentFragment': ContentTypeFragmentFragment } }
|
|
3572
|
+
), tags: Array<(
|
|
3573
|
+
{ __typename?: 'Tag' }
|
|
3574
|
+
& { ' $fragmentRefs'?: { 'TagFragmentFragment': TagFragmentFragment } }
|
|
3575
|
+
)> }
|
|
3576
|
+
& { ' $fragmentRefs'?: { 'ContentItemFragmentFragment': ContentItemFragmentFragment } }
|
|
3577
|
+
) }> } };
|
|
3578
|
+
|
|
3579
|
+
export type AssetFragmentFragment = { __typename?: 'Asset', prn: any, fileName: string, fileSize: number, mimeType: string, url?: string | null, createdAt: any, updatedAt: any, _id: any } & { ' $fragmentName'?: 'AssetFragmentFragment' };
|
|
3580
|
+
|
|
3581
|
+
export type BuildingBlockFieldFulfillmentFragmentFragment = { __typename?: 'BuildingBlockFieldFulfillment', prn: any, createdAt: any, updatedAt: any, _id: any, contentValue: (
|
|
3582
|
+
{ __typename?: 'ContentValue', contentItem?: { __typename?: 'ContentItem', prn: any } | null, relatedAsset?: (
|
|
3583
|
+
{ __typename?: 'Asset' }
|
|
3584
|
+
& { ' $fragmentRefs'?: { 'AssetFragmentFragment': AssetFragmentFragment } }
|
|
3585
|
+
) | null, linkedPathPart?: (
|
|
3586
|
+
{ __typename?: 'PathPart' }
|
|
3587
|
+
& { ' $fragmentRefs'?: { 'PathPartFragmentFragment': PathPartFragmentFragment } }
|
|
3588
|
+
) | null, linkedGridPlacement?: (
|
|
3589
|
+
{ __typename?: 'GridPlacement', experienceComponent: (
|
|
3590
|
+
{ __typename?: 'ExperienceComponent', buildingBlock: (
|
|
3591
|
+
{ __typename?: 'BuildingBlock' }
|
|
3592
|
+
& { ' $fragmentRefs'?: { 'BuildingBlockFragmentFragment': BuildingBlockFragmentFragment } }
|
|
3593
|
+
) }
|
|
3594
|
+
& { ' $fragmentRefs'?: { 'ExperienceComponentFragmentFragment': ExperienceComponentFragmentFragment } }
|
|
3595
|
+
) }
|
|
3596
|
+
& { ' $fragmentRefs'?: { 'GridPlacementFragmentFragment': GridPlacementFragmentFragment } }
|
|
3597
|
+
) | null, relatedContentItem?: (
|
|
3598
|
+
{ __typename?: 'ContentItem', contentType: (
|
|
3599
|
+
{ __typename?: 'ContentType', contentFields: Array<(
|
|
3600
|
+
{ __typename?: 'ContentField' }
|
|
3601
|
+
& { ' $fragmentRefs'?: { 'ContentFieldFragmentFragment': ContentFieldFragmentFragment } }
|
|
3602
|
+
)> }
|
|
3603
|
+
& { ' $fragmentRefs'?: { 'ContentTypeFragmentFragment': ContentTypeFragmentFragment } }
|
|
3604
|
+
), contentValues: Array<(
|
|
3605
|
+
{ __typename?: 'ContentValue', contentField?: (
|
|
3606
|
+
{ __typename?: 'ContentField' }
|
|
3607
|
+
& { ' $fragmentRefs'?: { 'ContentFieldFragmentFragment': ContentFieldFragmentFragment } }
|
|
3608
|
+
) | null, relatedAsset?: (
|
|
3609
|
+
{ __typename?: 'Asset' }
|
|
3610
|
+
& { ' $fragmentRefs'?: { 'AssetFragmentFragment': AssetFragmentFragment } }
|
|
3611
|
+
) | null }
|
|
3612
|
+
& { ' $fragmentRefs'?: { 'ContentValueFragmentFragment': ContentValueFragmentFragment } }
|
|
3613
|
+
)> }
|
|
3614
|
+
& { ' $fragmentRefs'?: { 'ContentItemFragmentFragment': ContentItemFragmentFragment } }
|
|
3615
|
+
) | null }
|
|
3616
|
+
& { ' $fragmentRefs'?: { 'ContentValueFragmentFragment': ContentValueFragmentFragment } }
|
|
3617
|
+
) } & { ' $fragmentName'?: 'BuildingBlockFieldFulfillmentFragmentFragment' };
|
|
3618
|
+
|
|
3619
|
+
export type BuildingBlockFieldFragmentFragment = { __typename?: 'BuildingBlockField', prn: any, slug: string, title: string, createdAt: any, updatedAt: any, _id: any } & { ' $fragmentName'?: 'BuildingBlockFieldFragmentFragment' };
|
|
3620
|
+
|
|
3621
|
+
export type BuildingBlockFragmentFragment = { __typename?: 'BuildingBlock', prn: any, slug: string, title: string, createdAt: any, updatedAt: any, _id: any, preview?: (
|
|
3622
|
+
{ __typename?: 'Asset' }
|
|
3623
|
+
& { ' $fragmentRefs'?: { 'AssetFragmentFragment': AssetFragmentFragment } }
|
|
3624
|
+
) | null } & { ' $fragmentName'?: 'BuildingBlockFragmentFragment' };
|
|
3625
|
+
|
|
3626
|
+
export type ContentExperienceFragmentFragment = { __typename?: 'ContentExperience', slug: string, prn: any, title: string, createdAt: any, updatedAt: any, _id: any } & { ' $fragmentName'?: 'ContentExperienceFragmentFragment' };
|
|
3627
|
+
|
|
3628
|
+
export type ContentFieldFragmentFragment = { __typename?: 'ContentField', prn: any, name: string, createdAt: any, updatedAt: any, _id: any } & { ' $fragmentName'?: 'ContentFieldFragmentFragment' };
|
|
3629
|
+
|
|
3630
|
+
export type ContentItemFragmentFragment = { __typename?: 'ContentItem', prn: any, isDraft: boolean, displayName: string, updatedAt: any, createdAt: any, _id: any, displayImage?: (
|
|
3631
|
+
{ __typename?: 'Asset' }
|
|
3632
|
+
& { ' $fragmentRefs'?: { 'AssetFragmentFragment': AssetFragmentFragment } }
|
|
3633
|
+
) | null } & { ' $fragmentName'?: 'ContentItemFragmentFragment' };
|
|
3634
|
+
|
|
3635
|
+
export type ContentTypeFragmentFragment = { __typename?: 'ContentType', prn: any, name: string, displayNameTemplate: string, createdAt: any, updatedAt: any, _id: any, displayImageField?: (
|
|
3636
|
+
{ __typename?: 'ContentField' }
|
|
3637
|
+
& { ' $fragmentRefs'?: { 'ContentFieldFragmentFragment': ContentFieldFragmentFragment } }
|
|
3638
|
+
) | null } & { ' $fragmentName'?: 'ContentTypeFragmentFragment' };
|
|
3639
|
+
|
|
3640
|
+
export type ContentValueFragmentFragment = { __typename?: 'ContentValue', prn: any, primitiveValue?: any | null, interpolatedSmartText?: any | null, createdAt: any, updatedAt: any, _id: any } & { ' $fragmentName'?: 'ContentValueFragmentFragment' };
|
|
3641
|
+
|
|
3642
|
+
export type ComprehensiveContentValueFragmentFragment = (
|
|
3643
|
+
{ __typename?: 'ContentValue', contentField?: (
|
|
3644
|
+
{ __typename?: 'ContentField' }
|
|
3645
|
+
& { ' $fragmentRefs'?: { 'ContentFieldFragmentFragment': ContentFieldFragmentFragment } }
|
|
3646
|
+
) | null, relatedAsset?: (
|
|
3647
|
+
{ __typename?: 'Asset' }
|
|
3648
|
+
& { ' $fragmentRefs'?: { 'AssetFragmentFragment': AssetFragmentFragment } }
|
|
3649
|
+
) | null, linkedPathPart?: (
|
|
3650
|
+
{ __typename?: 'PathPart' }
|
|
3651
|
+
& { ' $fragmentRefs'?: { 'PathPartFragmentFragment': PathPartFragmentFragment } }
|
|
3652
|
+
) | null, linkedGridPlacement?: (
|
|
3653
|
+
{ __typename?: 'GridPlacement' }
|
|
3654
|
+
& { ' $fragmentRefs'?: { 'GridPlacementFragmentFragment': GridPlacementFragmentFragment } }
|
|
3655
|
+
) | null, linkedContentType?: (
|
|
3656
|
+
{ __typename?: 'ContentType' }
|
|
3657
|
+
& { ' $fragmentRefs'?: { 'ContentTypeFragmentFragment': ContentTypeFragmentFragment } }
|
|
3658
|
+
) | null, linkedTag?: (
|
|
3141
3659
|
{ __typename?: 'Tag' }
|
|
3142
3660
|
& { ' $fragmentRefs'?: { 'TagFragmentFragment': TagFragmentFragment } }
|
|
3143
|
-
)
|
|
3661
|
+
) | null, relatedContentItem?: (
|
|
3662
|
+
{ __typename?: 'ContentItem' }
|
|
3663
|
+
& { ' $fragmentRefs'?: { 'ContentItemFragmentFragment': ContentItemFragmentFragment } }
|
|
3664
|
+
) | null }
|
|
3665
|
+
& { ' $fragmentRefs'?: { 'ContentValueFragmentFragment': ContentValueFragmentFragment } }
|
|
3666
|
+
) & { ' $fragmentName'?: 'ComprehensiveContentValueFragmentFragment' };
|
|
3667
|
+
|
|
3668
|
+
export type ExperienceComponentFragmentFragment = { __typename?: 'ExperienceComponent', prn: any, stage: Stage, name?: string | null, isDraft: boolean, isGlobal: boolean, createdAt: any, updatedAt: any, _id: any, preview?: (
|
|
3669
|
+
{ __typename?: 'Asset' }
|
|
3670
|
+
& { ' $fragmentRefs'?: { 'AssetFragmentFragment': AssetFragmentFragment } }
|
|
3671
|
+
) | null } & { ' $fragmentName'?: 'ExperienceComponentFragmentFragment' };
|
|
3672
|
+
|
|
3673
|
+
export type GridPlacementFragmentFragment = { __typename?: 'GridPlacement', prn: any, row: number, updatedAt: any, createdAt: any, _id: any } & { ' $fragmentName'?: 'GridPlacementFragmentFragment' };
|
|
3674
|
+
|
|
3675
|
+
export type PathPartFragmentFragment = { __typename?: 'PathPart', prn: any, slug: string, path: string, createdAt: any, updatedAt: any, _id: any } & { ' $fragmentName'?: 'PathPartFragmentFragment' };
|
|
3144
3676
|
|
|
3145
3677
|
export type TagFragmentFragment = { __typename?: 'Tag', prn: any, name: string, path: string, color?: string | null, visibility: TagVisibility, forceVisibilityOnDescendants: boolean, stage: Stage, amountOfChildren: number, amountOfContentExperiences: number, amountOfContentItems: number, hasForcedVisibility: boolean, nestingLevel: number, createdAt: any, updatedAt: any, _id: any } & { ' $fragmentName'?: 'TagFragmentFragment' };
|
|
3146
3678
|
|
|
3679
|
+
export type PathPartsQueryVariables = Exact<{
|
|
3680
|
+
paginate: PaginationOptionsInput;
|
|
3681
|
+
where?: InputMaybe<Array<PathPartsFilterInput> | PathPartsFilterInput>;
|
|
3682
|
+
orderBy?: InputMaybe<OrderOptionsInput>;
|
|
3683
|
+
optionsList: Array<ProcessedAssetOptionsInput> | ProcessedAssetOptionsInput;
|
|
3684
|
+
}>;
|
|
3685
|
+
|
|
3686
|
+
|
|
3687
|
+
export type PathPartsQuery = { __typename?: 'Query', pathParts: { __typename?: 'PathPartsConnection', totalCount: number, pageInfo: { __typename?: 'PageInfo', endCursor?: string | null, hasNextPage: boolean, hasPreviousPage: boolean, startCursor?: string | null }, edges: Array<{ __typename?: 'PathPartEdge', cursor: string, node: (
|
|
3688
|
+
{ __typename?: 'PathPart', contentExperience?: (
|
|
3689
|
+
{ __typename?: 'ContentExperience', preview?: (
|
|
3690
|
+
{ __typename?: 'Asset', processedUrls?: Array<string> | null }
|
|
3691
|
+
& { ' $fragmentRefs'?: { 'AssetFragmentFragment': AssetFragmentFragment } }
|
|
3692
|
+
) | null, experienceComponent: (
|
|
3693
|
+
{ __typename?: 'ExperienceComponent', buildingBlock: (
|
|
3694
|
+
{ __typename?: 'BuildingBlock' }
|
|
3695
|
+
& { ' $fragmentRefs'?: { 'BuildingBlockFragmentFragment': BuildingBlockFragmentFragment } }
|
|
3696
|
+
), buildingBlockFieldFulfillments: Array<{ __typename?: 'BuildingBlockFieldFulfillment', buildingBlockField: (
|
|
3697
|
+
{ __typename?: 'BuildingBlockField' }
|
|
3698
|
+
& { ' $fragmentRefs'?: { 'BuildingBlockFieldFragmentFragment': BuildingBlockFieldFragmentFragment } }
|
|
3699
|
+
), contentValue: (
|
|
3700
|
+
{ __typename?: 'ContentValue', contentItem?: { __typename?: 'ContentItem', prn: any } | null, relatedAsset?: (
|
|
3701
|
+
{ __typename?: 'Asset' }
|
|
3702
|
+
& { ' $fragmentRefs'?: { 'AssetFragmentFragment': AssetFragmentFragment } }
|
|
3703
|
+
) | null }
|
|
3704
|
+
& { ' $fragmentRefs'?: { 'ContentValueFragmentFragment': ContentValueFragmentFragment } }
|
|
3705
|
+
) }> }
|
|
3706
|
+
& { ' $fragmentRefs'?: { 'ExperienceComponentFragmentFragment': ExperienceComponentFragmentFragment } }
|
|
3707
|
+
) }
|
|
3708
|
+
& { ' $fragmentRefs'?: { 'ContentExperienceFragmentFragment': ContentExperienceFragmentFragment } }
|
|
3709
|
+
) | null, children: Array<(
|
|
3710
|
+
{ __typename?: 'PathPart' }
|
|
3711
|
+
& { ' $fragmentRefs'?: { 'PathPartFragmentFragment': PathPartFragmentFragment } }
|
|
3712
|
+
)> }
|
|
3713
|
+
& { ' $fragmentRefs'?: { 'PathPartFragmentFragment': PathPartFragmentFragment } }
|
|
3714
|
+
) }> } };
|
|
3715
|
+
|
|
3716
|
+
export type TagsQueryVariables = Exact<{
|
|
3717
|
+
paginate: PaginationOptionsInput;
|
|
3718
|
+
where?: InputMaybe<Array<TagsFilterInput> | TagsFilterInput>;
|
|
3719
|
+
orderBy?: InputMaybe<OrderOptionsInput>;
|
|
3720
|
+
}>;
|
|
3721
|
+
|
|
3722
|
+
|
|
3723
|
+
export type TagsQuery = { __typename?: 'Query', tags: { __typename?: 'TagsConnection', totalCount: number, pageInfo: { __typename?: 'PageInfo', endCursor?: string | null, hasNextPage: boolean, hasPreviousPage: boolean, startCursor?: string | null }, edges: Array<{ __typename?: 'TagEdge', cursor: string, node: (
|
|
3724
|
+
{ __typename?: 'Tag' }
|
|
3725
|
+
& { ' $fragmentRefs'?: { 'TagFragmentFragment': TagFragmentFragment } }
|
|
3726
|
+
) }> } };
|
|
3727
|
+
|
|
3728
|
+
export const ContentValueFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"contentValueFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContentValue"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"primitiveValue"}},{"kind":"Field","name":{"kind":"Name","value":"interpolatedSmartText"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]} as unknown as DocumentNode<ContentValueFragmentFragment, unknown>;
|
|
3729
|
+
export const AssetFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"assetFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Asset"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"fileName"}},{"kind":"Field","name":{"kind":"Name","value":"fileSize"}},{"kind":"Field","name":{"kind":"Name","value":"mimeType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]} as unknown as DocumentNode<AssetFragmentFragment, unknown>;
|
|
3730
|
+
export const PathPartFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"pathPartFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PathPart"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"path"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]} as unknown as DocumentNode<PathPartFragmentFragment, unknown>;
|
|
3731
|
+
export const GridPlacementFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"gridPlacementFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"GridPlacement"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"row"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}}]}}]} as unknown as DocumentNode<GridPlacementFragmentFragment, unknown>;
|
|
3732
|
+
export const ExperienceComponentFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"experienceComponentFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ExperienceComponent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"stage"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"isDraft"}},{"kind":"Field","name":{"kind":"Name","value":"preview"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"assetFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isGlobal"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"assetFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Asset"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"fileName"}},{"kind":"Field","name":{"kind":"Name","value":"fileSize"}},{"kind":"Field","name":{"kind":"Name","value":"mimeType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]} as unknown as DocumentNode<ExperienceComponentFragmentFragment, unknown>;
|
|
3733
|
+
export const BuildingBlockFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"buildingBlockFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"BuildingBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"preview"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"assetFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"assetFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Asset"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"fileName"}},{"kind":"Field","name":{"kind":"Name","value":"fileSize"}},{"kind":"Field","name":{"kind":"Name","value":"mimeType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]} as unknown as DocumentNode<BuildingBlockFragmentFragment, unknown>;
|
|
3734
|
+
export const ContentItemFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"contentItemFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContentItem"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"isDraft"}},{"kind":"Field","name":{"kind":"Name","value":"displayName"}},{"kind":"Field","name":{"kind":"Name","value":"displayImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"assetFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"assetFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Asset"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"fileName"}},{"kind":"Field","name":{"kind":"Name","value":"fileSize"}},{"kind":"Field","name":{"kind":"Name","value":"mimeType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]} as unknown as DocumentNode<ContentItemFragmentFragment, unknown>;
|
|
3735
|
+
export const ContentFieldFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"contentFieldFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContentField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]} as unknown as DocumentNode<ContentFieldFragmentFragment, unknown>;
|
|
3736
|
+
export const ContentTypeFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"contentTypeFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContentType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"displayNameTemplate"}},{"kind":"Field","name":{"kind":"Name","value":"displayImageField"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentFieldFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"contentFieldFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContentField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]} as unknown as DocumentNode<ContentTypeFragmentFragment, unknown>;
|
|
3737
|
+
export const BuildingBlockFieldFulfillmentFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"buildingBlockFieldFulfillmentFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"BuildingBlockFieldFulfillment"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"contentValue"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentValueFragment"}},{"kind":"Field","name":{"kind":"Name","value":"contentItem"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"prn"}}]}},{"kind":"Field","name":{"kind":"Name","value":"relatedAsset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"assetFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"linkedPathPart"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"pathPartFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"linkedGridPlacement"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"gridPlacementFragment"}},{"kind":"Field","name":{"kind":"Name","value":"experienceComponent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"experienceComponentFragment"}},{"kind":"Field","name":{"kind":"Name","value":"buildingBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"buildingBlockFragment"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"relatedContentItem"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentItemFragment"}},{"kind":"Field","name":{"kind":"Name","value":"contentType"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentTypeFragment"}},{"kind":"Field","name":{"kind":"Name","value":"contentFields"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentFieldFragment"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"contentValues"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentValueFragment"}},{"kind":"Field","name":{"kind":"Name","value":"contentField"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentFieldFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"relatedAsset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"assetFragment"}}]}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"assetFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Asset"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"fileName"}},{"kind":"Field","name":{"kind":"Name","value":"fileSize"}},{"kind":"Field","name":{"kind":"Name","value":"mimeType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"contentFieldFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContentField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"contentValueFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContentValue"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"primitiveValue"}},{"kind":"Field","name":{"kind":"Name","value":"interpolatedSmartText"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"pathPartFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PathPart"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"path"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"gridPlacementFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"GridPlacement"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"row"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"experienceComponentFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ExperienceComponent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"stage"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"isDraft"}},{"kind":"Field","name":{"kind":"Name","value":"preview"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"assetFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isGlobal"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"buildingBlockFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"BuildingBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"preview"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"assetFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"contentItemFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContentItem"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"isDraft"}},{"kind":"Field","name":{"kind":"Name","value":"displayName"}},{"kind":"Field","name":{"kind":"Name","value":"displayImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"assetFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"contentTypeFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContentType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"displayNameTemplate"}},{"kind":"Field","name":{"kind":"Name","value":"displayImageField"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentFieldFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]} as unknown as DocumentNode<BuildingBlockFieldFulfillmentFragmentFragment, unknown>;
|
|
3738
|
+
export const BuildingBlockFieldFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"buildingBlockFieldFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"BuildingBlockField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]} as unknown as DocumentNode<BuildingBlockFieldFragmentFragment, unknown>;
|
|
3739
|
+
export const ContentExperienceFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"contentExperienceFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContentExperience"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]} as unknown as DocumentNode<ContentExperienceFragmentFragment, unknown>;
|
|
3147
3740
|
export const TagFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"tagFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Tag"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"path"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"visibility"}},{"kind":"Field","name":{"kind":"Name","value":"forceVisibilityOnDescendants"}},{"kind":"Field","name":{"kind":"Name","value":"stage"}},{"kind":"Field","name":{"kind":"Name","value":"amountOfChildren"}},{"kind":"Field","name":{"kind":"Name","value":"amountOfContentExperiences"}},{"kind":"Field","name":{"kind":"Name","value":"amountOfContentItems"}},{"kind":"Field","name":{"kind":"Name","value":"hasForcedVisibility"}},{"kind":"Field","name":{"kind":"Name","value":"nestingLevel"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]} as unknown as DocumentNode<TagFragmentFragment, unknown>;
|
|
3148
|
-
export const
|
|
3741
|
+
export const ComprehensiveContentValueFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"comprehensiveContentValueFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContentValue"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentValueFragment"}},{"kind":"Field","name":{"kind":"Name","value":"contentField"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentFieldFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"relatedAsset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"assetFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"linkedPathPart"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"pathPartFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"linkedGridPlacement"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"gridPlacementFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"linkedContentType"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentTypeFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"linkedTag"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"tagFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"relatedContentItem"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentItemFragment"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"contentFieldFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContentField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"assetFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Asset"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"fileName"}},{"kind":"Field","name":{"kind":"Name","value":"fileSize"}},{"kind":"Field","name":{"kind":"Name","value":"mimeType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"contentValueFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContentValue"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"primitiveValue"}},{"kind":"Field","name":{"kind":"Name","value":"interpolatedSmartText"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"pathPartFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PathPart"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"path"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"gridPlacementFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"GridPlacement"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"row"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"contentTypeFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContentType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"displayNameTemplate"}},{"kind":"Field","name":{"kind":"Name","value":"displayImageField"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentFieldFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"tagFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Tag"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"path"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"visibility"}},{"kind":"Field","name":{"kind":"Name","value":"forceVisibilityOnDescendants"}},{"kind":"Field","name":{"kind":"Name","value":"stage"}},{"kind":"Field","name":{"kind":"Name","value":"amountOfChildren"}},{"kind":"Field","name":{"kind":"Name","value":"amountOfContentExperiences"}},{"kind":"Field","name":{"kind":"Name","value":"amountOfContentItems"}},{"kind":"Field","name":{"kind":"Name","value":"hasForcedVisibility"}},{"kind":"Field","name":{"kind":"Name","value":"nestingLevel"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"contentItemFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContentItem"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"isDraft"}},{"kind":"Field","name":{"kind":"Name","value":"displayName"}},{"kind":"Field","name":{"kind":"Name","value":"displayImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"assetFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}}]}}]} as unknown as DocumentNode<ComprehensiveContentValueFragmentFragment, unknown>;
|
|
3742
|
+
export const ContentExperiencesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"contentExperiences"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"paginate"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PaginationOptionsInput"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"where"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ContentExperiencesFilterInput"}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"orderBy"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"OrderOptionsInput"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"optionsList"}},"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ProcessedAssetOptionsInput"}}}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentExperiences"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"paginate"},"value":{"kind":"Variable","name":{"kind":"Name","value":"paginate"}}},{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"Variable","name":{"kind":"Name","value":"where"}}},{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"Variable","name":{"kind":"Name","value":"orderBy"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"pageInfo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"endCursor"}},{"kind":"Field","name":{"kind":"Name","value":"hasNextPage"}},{"kind":"Field","name":{"kind":"Name","value":"hasPreviousPage"}},{"kind":"Field","name":{"kind":"Name","value":"startCursor"}}]}},{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"edges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cursor"}},{"kind":"Field","name":{"kind":"Name","value":"node"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentExperienceFragment"}},{"kind":"Field","name":{"kind":"Name","value":"preview"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"assetFragment"}},{"kind":"Field","name":{"kind":"Name","value":"processedUrls"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"optionsList"},"value":{"kind":"Variable","name":{"kind":"Name","value":"optionsList"}}}]}]}},{"kind":"Field","name":{"kind":"Name","value":"pathPart"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"pathPartFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"experienceComponent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"experienceComponentFragment"}},{"kind":"Field","name":{"kind":"Name","value":"buildingBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"buildingBlockFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buildingBlockFieldFulfillments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"buildingBlockFieldFulfillmentFragment"}},{"kind":"Field","name":{"kind":"Name","value":"buildingBlockField"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"buildingBlockFieldFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"contentValue"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"comprehensiveContentValueFragment"}},{"kind":"Field","name":{"kind":"Name","value":"contentItem"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"prn"}}]}},{"kind":"Field","name":{"kind":"Name","value":"relatedAsset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"assetFragment"}},{"kind":"Field","name":{"kind":"Name","value":"processedUrls"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"optionsList"},"value":{"kind":"Variable","name":{"kind":"Name","value":"optionsList"}}}]}]}},{"kind":"Field","name":{"kind":"Name","value":"linkedGridPlacement"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"gridPlacementFragment"}},{"kind":"Field","name":{"kind":"Name","value":"experienceComponent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"experienceComponentFragment"}},{"kind":"Field","name":{"kind":"Name","value":"buildingBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"buildingBlockFragment"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"relatedContentItem"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentItemFragment"}},{"kind":"Field","name":{"kind":"Name","value":"contentType"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentTypeFragment"}},{"kind":"Field","name":{"kind":"Name","value":"contentFields"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentFieldFragment"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"contentValues"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"comprehensiveContentValueFragment"}},{"kind":"Field","name":{"kind":"Name","value":"contentField"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentFieldFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"relatedAsset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"assetFragment"}},{"kind":"Field","name":{"kind":"Name","value":"processedUrls"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"optionsList"},"value":{"kind":"Variable","name":{"kind":"Name","value":"optionsList"}}}]}]}}]}}]}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tags"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"tagFragment"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"assetFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Asset"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"fileName"}},{"kind":"Field","name":{"kind":"Name","value":"fileSize"}},{"kind":"Field","name":{"kind":"Name","value":"mimeType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"contentValueFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContentValue"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"primitiveValue"}},{"kind":"Field","name":{"kind":"Name","value":"interpolatedSmartText"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"pathPartFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PathPart"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"path"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"gridPlacementFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"GridPlacement"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"row"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"experienceComponentFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ExperienceComponent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"stage"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"isDraft"}},{"kind":"Field","name":{"kind":"Name","value":"preview"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"assetFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isGlobal"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"buildingBlockFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"BuildingBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"preview"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"assetFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"contentItemFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContentItem"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"isDraft"}},{"kind":"Field","name":{"kind":"Name","value":"displayName"}},{"kind":"Field","name":{"kind":"Name","value":"displayImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"assetFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"contentFieldFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContentField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"contentTypeFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContentType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"displayNameTemplate"}},{"kind":"Field","name":{"kind":"Name","value":"displayImageField"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentFieldFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"tagFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Tag"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"path"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"visibility"}},{"kind":"Field","name":{"kind":"Name","value":"forceVisibilityOnDescendants"}},{"kind":"Field","name":{"kind":"Name","value":"stage"}},{"kind":"Field","name":{"kind":"Name","value":"amountOfChildren"}},{"kind":"Field","name":{"kind":"Name","value":"amountOfContentExperiences"}},{"kind":"Field","name":{"kind":"Name","value":"amountOfContentItems"}},{"kind":"Field","name":{"kind":"Name","value":"hasForcedVisibility"}},{"kind":"Field","name":{"kind":"Name","value":"nestingLevel"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"contentExperienceFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContentExperience"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"buildingBlockFieldFulfillmentFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"BuildingBlockFieldFulfillment"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"contentValue"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentValueFragment"}},{"kind":"Field","name":{"kind":"Name","value":"contentItem"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"prn"}}]}},{"kind":"Field","name":{"kind":"Name","value":"relatedAsset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"assetFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"linkedPathPart"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"pathPartFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"linkedGridPlacement"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"gridPlacementFragment"}},{"kind":"Field","name":{"kind":"Name","value":"experienceComponent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"experienceComponentFragment"}},{"kind":"Field","name":{"kind":"Name","value":"buildingBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"buildingBlockFragment"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"relatedContentItem"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentItemFragment"}},{"kind":"Field","name":{"kind":"Name","value":"contentType"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentTypeFragment"}},{"kind":"Field","name":{"kind":"Name","value":"contentFields"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentFieldFragment"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"contentValues"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentValueFragment"}},{"kind":"Field","name":{"kind":"Name","value":"contentField"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentFieldFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"relatedAsset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"assetFragment"}}]}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"buildingBlockFieldFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"BuildingBlockField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"comprehensiveContentValueFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContentValue"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentValueFragment"}},{"kind":"Field","name":{"kind":"Name","value":"contentField"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentFieldFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"relatedAsset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"assetFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"linkedPathPart"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"pathPartFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"linkedGridPlacement"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"gridPlacementFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"linkedContentType"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentTypeFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"linkedTag"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"tagFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"relatedContentItem"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentItemFragment"}}]}}]}}]} as unknown as DocumentNode<ContentExperiencesQuery, ContentExperiencesQueryVariables>;
|
|
3743
|
+
export const ContentItemsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"contentItems"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"paginate"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PaginationOptionsInput"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"where"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ContentItemsFilterInput"}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"orderBy"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"OrderOptionsInput"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"optionsList"}},"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ProcessedAssetOptionsInput"}}}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contentItems"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"paginate"},"value":{"kind":"Variable","name":{"kind":"Name","value":"paginate"}}},{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"Variable","name":{"kind":"Name","value":"where"}}},{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"Variable","name":{"kind":"Name","value":"orderBy"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"pageInfo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"endCursor"}},{"kind":"Field","name":{"kind":"Name","value":"hasNextPage"}},{"kind":"Field","name":{"kind":"Name","value":"hasPreviousPage"}},{"kind":"Field","name":{"kind":"Name","value":"startCursor"}}]}},{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"edges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cursor"}},{"kind":"Field","name":{"kind":"Name","value":"node"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentItemFragment"}},{"kind":"Field","name":{"kind":"Name","value":"contentValues"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentValueFragment"}},{"kind":"Field","name":{"kind":"Name","value":"contentField"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentFieldFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"relatedAsset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"assetFragment"}},{"kind":"Field","name":{"kind":"Name","value":"processedUrls"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"optionsList"},"value":{"kind":"Variable","name":{"kind":"Name","value":"optionsList"}}}]}]}},{"kind":"Field","name":{"kind":"Name","value":"relatedContentItem"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentItemFragment"}},{"kind":"Field","name":{"kind":"Name","value":"contentValues"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentValueFragment"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"contentType"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentTypeFragment"}},{"kind":"Field","name":{"kind":"Name","value":"contentFields"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentFieldFragment"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tags"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"tagFragment"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"assetFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Asset"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"fileName"}},{"kind":"Field","name":{"kind":"Name","value":"fileSize"}},{"kind":"Field","name":{"kind":"Name","value":"mimeType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"contentFieldFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContentField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"contentItemFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContentItem"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"isDraft"}},{"kind":"Field","name":{"kind":"Name","value":"displayName"}},{"kind":"Field","name":{"kind":"Name","value":"displayImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"assetFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"contentValueFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContentValue"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"primitiveValue"}},{"kind":"Field","name":{"kind":"Name","value":"interpolatedSmartText"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"contentTypeFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContentType"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"displayNameTemplate"}},{"kind":"Field","name":{"kind":"Name","value":"displayImageField"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentFieldFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"tagFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Tag"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"path"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"visibility"}},{"kind":"Field","name":{"kind":"Name","value":"forceVisibilityOnDescendants"}},{"kind":"Field","name":{"kind":"Name","value":"stage"}},{"kind":"Field","name":{"kind":"Name","value":"amountOfChildren"}},{"kind":"Field","name":{"kind":"Name","value":"amountOfContentExperiences"}},{"kind":"Field","name":{"kind":"Name","value":"amountOfContentItems"}},{"kind":"Field","name":{"kind":"Name","value":"hasForcedVisibility"}},{"kind":"Field","name":{"kind":"Name","value":"nestingLevel"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]} as unknown as DocumentNode<ContentItemsQuery, ContentItemsQueryVariables>;
|
|
3744
|
+
export const PathPartsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"pathParts"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"paginate"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PaginationOptionsInput"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"where"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PathPartsFilterInput"}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"orderBy"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"OrderOptionsInput"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"optionsList"}},"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ProcessedAssetOptionsInput"}}}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"pathParts"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"paginate"},"value":{"kind":"Variable","name":{"kind":"Name","value":"paginate"}}},{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"Variable","name":{"kind":"Name","value":"where"}}},{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"Variable","name":{"kind":"Name","value":"orderBy"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"pageInfo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"endCursor"}},{"kind":"Field","name":{"kind":"Name","value":"hasNextPage"}},{"kind":"Field","name":{"kind":"Name","value":"hasPreviousPage"}},{"kind":"Field","name":{"kind":"Name","value":"startCursor"}}]}},{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"edges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cursor"}},{"kind":"Field","name":{"kind":"Name","value":"node"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"pathPartFragment"}},{"kind":"Field","name":{"kind":"Name","value":"contentExperience"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentExperienceFragment"}},{"kind":"Field","name":{"kind":"Name","value":"preview"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"assetFragment"}},{"kind":"Field","name":{"kind":"Name","value":"processedUrls"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"optionsList"},"value":{"kind":"Variable","name":{"kind":"Name","value":"optionsList"}}}]}]}},{"kind":"Field","name":{"kind":"Name","value":"experienceComponent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"experienceComponentFragment"}},{"kind":"Field","name":{"kind":"Name","value":"buildingBlock"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"buildingBlockFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buildingBlockFieldFulfillments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buildingBlockField"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"buildingBlockFieldFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"contentValue"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"contentValueFragment"}},{"kind":"Field","name":{"kind":"Name","value":"contentItem"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"prn"}}]}},{"kind":"Field","name":{"kind":"Name","value":"relatedAsset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"assetFragment"}}]}}]}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"children"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"pathPartFragment"}}]}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"assetFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Asset"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"fileName"}},{"kind":"Field","name":{"kind":"Name","value":"fileSize"}},{"kind":"Field","name":{"kind":"Name","value":"mimeType"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"pathPartFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PathPart"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"path"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"contentExperienceFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContentExperience"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"experienceComponentFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ExperienceComponent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"stage"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"isDraft"}},{"kind":"Field","name":{"kind":"Name","value":"preview"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"assetFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isGlobal"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"buildingBlockFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"BuildingBlock"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"preview"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"assetFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"buildingBlockFieldFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"BuildingBlockField"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"contentValueFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContentValue"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"primitiveValue"}},{"kind":"Field","name":{"kind":"Name","value":"interpolatedSmartText"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]} as unknown as DocumentNode<PathPartsQuery, PathPartsQueryVariables>;
|
|
3745
|
+
export const TagsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"tags"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"paginate"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PaginationOptionsInput"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"where"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TagsFilterInput"}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"orderBy"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"OrderOptionsInput"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tags"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"paginate"},"value":{"kind":"Variable","name":{"kind":"Name","value":"paginate"}}},{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"Variable","name":{"kind":"Name","value":"where"}}},{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"Variable","name":{"kind":"Name","value":"orderBy"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"pageInfo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"endCursor"}},{"kind":"Field","name":{"kind":"Name","value":"hasNextPage"}},{"kind":"Field","name":{"kind":"Name","value":"hasPreviousPage"}},{"kind":"Field","name":{"kind":"Name","value":"startCursor"}}]}},{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"edges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cursor"}},{"kind":"Field","name":{"kind":"Name","value":"node"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"tagFragment"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"tagFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Tag"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"path"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"visibility"}},{"kind":"Field","name":{"kind":"Name","value":"forceVisibilityOnDescendants"}},{"kind":"Field","name":{"kind":"Name","value":"stage"}},{"kind":"Field","name":{"kind":"Name","value":"amountOfChildren"}},{"kind":"Field","name":{"kind":"Name","value":"amountOfContentExperiences"}},{"kind":"Field","name":{"kind":"Name","value":"amountOfContentItems"}},{"kind":"Field","name":{"kind":"Name","value":"hasForcedVisibility"}},{"kind":"Field","name":{"kind":"Name","value":"nestingLevel"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]} as unknown as DocumentNode<TagsQuery, TagsQueryVariables>;
|