@platecms/delta-client 1.6.1 → 1.8.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.
@@ -22,7 +22,7 @@ export type Scalars = {
22
22
  DateTime: { input: any; output: any; }
23
23
  /** The `JSON` scalar type represents JSON values as specified by [ECMA-404](https://ecma-international.org/wp-content/uploads/ECMA-404_2nd_edition_december_2017.pdf). */
24
24
  JSON: { input: any; output: any; }
25
- /** A string representing the PRN object. Must match '^prn(:[A-Za-z0-9-_]+){5}$'. */
25
+ /** PRN identifier as a string */
26
26
  PRN: { input: any; output: any; }
27
27
  /** A generic Primitive value. */
28
28
  PrimitiveValue: { input: any; output: any; }
@@ -56,6 +56,7 @@ export type ApiToken = Subject & {
56
56
  createdAt: Scalars['DateTime']['output'];
57
57
  id: Scalars['String']['output'];
58
58
  name: Scalars['String']['output'];
59
+ organization?: Maybe<Organization>;
59
60
  prn: Scalars['PRN']['output'];
60
61
  roleAssignment: RoleAssignment;
61
62
  stage: Stage;
@@ -71,6 +72,7 @@ export type Asset = {
71
72
  /** The size of the file in bytes. */
72
73
  fileSize: Scalars['Int']['output'];
73
74
  mimeType: Scalars['String']['output'];
75
+ organization?: Maybe<Organization>;
74
76
  prn: Scalars['PRN']['output'];
75
77
  /** Generate urls for processed assets, only relevant for images. Is null if the Asset is not uploaded yet. */
76
78
  processedUrls?: Maybe<Array<Scalars['String']['output']>>;
@@ -87,13 +89,14 @@ export type AssetProcessedUrlsArgs = {
87
89
  export type Blueprint = {
88
90
  __typename?: 'Blueprint';
89
91
  channel: Channel;
90
- /** The ID of the Channel this Blueprint belongs to. */
91
- channelId?: Maybe<Scalars['String']['output']>;
92
+ /** The PRN of the Channel this Blueprint belongs to. */
93
+ channelPrn?: Maybe<Scalars['PRN']['output']>;
92
94
  createdAt: Scalars['DateTime']['output'];
93
95
  /** The Experience Component which defines this Blueprint. */
94
96
  definedBy: ExperienceComponent;
95
97
  isFixed: Scalars['Boolean']['output'];
96
98
  name: Scalars['String']['output'];
99
+ organization?: Maybe<Organization>;
97
100
  /** The preview image of the Blueprint. */
98
101
  preview?: Maybe<Asset>;
99
102
  prn: Scalars['PRN']['output'];
@@ -117,7 +120,7 @@ export type BlueprintsConnection = {
117
120
  /** The filter input type for 'Blueprints'. Objects/maps are treated as AND, while arrays are treated as OR. */
118
121
  export type BlueprintsFilterInput = {
119
122
  _not?: InputMaybe<Array<BlueprintsFilterInput>>;
120
- channelId?: InputMaybe<Array<StringFilter>>;
123
+ channelPrn?: InputMaybe<Array<PrnFilter>>;
121
124
  createdAt?: InputMaybe<Array<DateFilter>>;
122
125
  isFixed?: InputMaybe<Array<BooleanFilter>>;
123
126
  name?: InputMaybe<Array<StringFilter>>;
@@ -142,9 +145,14 @@ export type BuildingBlock = {
142
145
  createdAt: Scalars['DateTime']['output'];
143
146
  experienceComponents: Array<ExperienceComponent>;
144
147
  gridDefinition?: Maybe<GridDefinition>;
148
+ /** The successor in manual sort order for Building Blocks of the same Theme and Organization. Null if this is the last. */
145
149
  next?: Maybe<BuildingBlock>;
150
+ organization?: Maybe<Organization>;
151
+ /** The position of the Building Block in manual sort order within the same Theme and Organization. This uses Fractional Indexing and can be lexicographically sorted. */
152
+ position: Scalars['String']['output'];
146
153
  /** The preview image of the Building Block. */
147
154
  preview?: Maybe<Asset>;
155
+ /** The predecessor in manual sort order for Building Blocks of the same Theme and Organization. Null if this is the first. */
148
156
  previous?: Maybe<BuildingBlock>;
149
157
  prn: Scalars['PRN']['output'];
150
158
  slug: Scalars['String']['output'];
@@ -169,7 +177,12 @@ export type BuildingBlockField = {
169
177
  /** Validation rules that apply to this building block field. */
170
178
  contentValidationRules: Array<ContentValidationRule>;
171
179
  createdAt: Scalars['DateTime']['output'];
180
+ /** The successor in manual sort order for fields of the same Building Block and Organization. Null if this is the last. */
172
181
  next?: Maybe<BuildingBlockField>;
182
+ organization?: Maybe<Organization>;
183
+ /** The position of the Building Block Field in manual sort order within the same Building Block and Organization. This uses Fractional Indexing and can be lexicographically sorted. */
184
+ position: Scalars['String']['output'];
185
+ /** The predecessor in manual sort order for fields of the same Building Block and Organization. Null if this is the first. */
173
186
  previous?: Maybe<BuildingBlockField>;
174
187
  prn: Scalars['PRN']['output'];
175
188
  slug: Scalars['String']['output'];
@@ -198,7 +211,12 @@ export type BuildingBlockFieldFulfillment = {
198
211
  contentValue: ContentValue;
199
212
  createdAt: Scalars['DateTime']['output'];
200
213
  experienceComponent: ExperienceComponent;
214
+ /** The successor in manual sort order for fulfillments of the same Building Block Field within the same Experience Component, Organization, and Stage. Null if this is the last. */
201
215
  next?: Maybe<BuildingBlockFieldFulfillment>;
216
+ organization?: Maybe<Organization>;
217
+ /** The position of the Building Block Field Fulfillment in manual sort order within the same Building Block Field, Experience Component, Organization, and Stage. This uses Fractional Indexing and can be lexicographically sorted. */
218
+ position: Scalars['String']['output'];
219
+ /** The predecessor in manual sort order for fulfillments of the same Building Block Field within the same Experience Component, Organization, and Stage. Null if this is the first. */
202
220
  previous?: Maybe<BuildingBlockFieldFulfillment>;
203
221
  prn: Scalars['PRN']['output'];
204
222
  stage: Stage;
@@ -302,6 +320,7 @@ export type Channel = {
302
320
  defaultBlueprint?: Maybe<Blueprint>;
303
321
  domain: Scalars['String']['output'];
304
322
  name: Scalars['String']['output'];
323
+ organization?: Maybe<Organization>;
305
324
  pathParts: Array<PathPart>;
306
325
  prn: Scalars['PRN']['output'];
307
326
  rootPathPart: PathPart;
@@ -354,28 +373,25 @@ export type Content = {
354
373
 
355
374
  export type ContentExperience = {
356
375
  __typename?: 'ContentExperience';
357
- /** The ID of the Channel this ContentExperience belongs to. */
358
- channelId?: Maybe<Scalars['String']['output']>;
376
+ /** The PRN of the Channel this ContentExperience belongs to. */
377
+ channelPrn?: Maybe<Scalars['PRN']['output']>;
359
378
  createdAt: Scalars['DateTime']['output'];
360
379
  experienceComponent: ExperienceComponent;
361
380
  /** The issues that this Content Experience is a subject of */
362
381
  issues: Array<Issue>;
382
+ organization?: Maybe<Organization>;
363
383
  pathPart: PathPart;
364
- /** An array of path part ids from the current path part up to the root, ordered from root to current. */
365
- pathPartsToRootIds: Array<Scalars['String']['output']>;
384
+ /** An array of path part PRNs from the root PathPart to the current PathPart. */
385
+ pathPartsToRootPrns: Array<Scalars['String']['output']>;
366
386
  /** The preview image of the Content Experience. */
367
387
  preview?: Maybe<Asset>;
368
388
  primaryContentItem?: Maybe<ContentItem>;
369
389
  prn: Scalars['PRN']['output'];
370
- /** The Content Values that use this Content Experience as an referenced value. Reverse relation of referencedContentExperiences. */
371
- referencedBySmartTextContentValues: Array<ContentValue>;
372
390
  seoDescription?: Maybe<Scalars['String']['output']>;
373
391
  seoTitle?: Maybe<Scalars['String']['output']>;
374
392
  slug: Scalars['String']['output'];
375
393
  stage: Stage;
376
- /** The ids of the tags this Content Experience are tagged with, including all ancestor tags. Should only be used for filtering. */
377
- tagIds: Array<Scalars['String']['output']>;
378
- /** The tags this Content Experience are tagged with. */
394
+ /** The Tags assigned to this Content Experience. */
379
395
  tags: Array<Tag>;
380
396
  title: Scalars['String']['output'];
381
397
  updatedAt: Scalars['DateTime']['output'];
@@ -386,6 +402,11 @@ export type ContentExperienceIssuesArgs = {
386
402
  where?: InputMaybe<Array<IssuesFilterInput>>;
387
403
  };
388
404
 
405
+
406
+ export type ContentExperiencePathPartArgs = {
407
+ where?: InputMaybe<Array<PathPartsFilterInput>>;
408
+ };
409
+
389
410
  export type ContentExperienceEdge = {
390
411
  __typename?: 'ContentExperienceEdge';
391
412
  cursor: Scalars['String']['output'];
@@ -402,13 +423,13 @@ export type ContentExperiencesConnection = {
402
423
  /** The filter input type for 'ContentExperiences'. Objects/maps are treated as AND, while arrays are treated as OR. */
403
424
  export type ContentExperiencesFilterInput = {
404
425
  _not?: InputMaybe<Array<ContentExperiencesFilterInput>>;
405
- channelId?: InputMaybe<Array<StringFilter>>;
426
+ channelPrn?: InputMaybe<Array<PrnFilter>>;
406
427
  createdAt?: InputMaybe<Array<DateFilter>>;
407
428
  prn?: InputMaybe<Array<PrnFilter>>;
408
429
  seoDescription?: InputMaybe<Array<StringFilter>>;
409
430
  seoTitle?: InputMaybe<Array<StringFilter>>;
410
431
  slug?: InputMaybe<Array<StringFilter>>;
411
- tagIds?: InputMaybe<Array<StringArrayFilter>>;
432
+ tagPrns?: InputMaybe<Array<PrnArrayFilter>>;
412
433
  title?: InputMaybe<Array<StringFilter>>;
413
434
  updatedAt?: InputMaybe<Array<DateFilter>>;
414
435
  };
@@ -421,7 +442,12 @@ export type ContentField = {
421
442
  contentValues: Array<ContentValue>;
422
443
  createdAt: Scalars['DateTime']['output'];
423
444
  name: Scalars['String']['output'];
445
+ /** The successor in manual sort order for Content Fields of the same Content Type and Organization. Null if this is the last. */
424
446
  next?: Maybe<ContentField>;
447
+ organization?: Maybe<Organization>;
448
+ /** The position of the Content Field in manual sort order within the same Content Type and Organization. This uses Fractional Indexing and can be lexicographically sorted. */
449
+ position: Scalars['String']['output'];
450
+ /** The predecessor in manual sort order for Content Fields of the same Content Type and Organization. Null if this is the first. */
425
451
  previous?: Maybe<ContentField>;
426
452
  prn: Scalars['PRN']['output'];
427
453
  slug: Scalars['String']['output'];
@@ -464,9 +490,9 @@ export type ContentFieldsFilterInput = {
464
490
  export type ContentItem = {
465
491
  __typename?: 'ContentItem';
466
492
  contentType: ContentType;
467
- /** The id of the Content Type this Content Item belongs to. This is computed from the contentType relation. */
468
- contentTypeId: Scalars['String']['output'];
469
- /** The slug of the Content Type this Content Item belongs to. This is computed from the contentType relation. */
493
+ /** The PRN of the Content Type this Content Item belongs to. */
494
+ contentTypePrn: Scalars['PRN']['output'];
495
+ /** The slug of the Content Type this Content Item belongs to. */
470
496
  contentTypeSlug: Scalars['String']['output'];
471
497
  contentValues: Array<ContentValue>;
472
498
  createdAt: Scalars['DateTime']['output'];
@@ -477,13 +503,12 @@ export type ContentItem = {
477
503
  isDraft: Scalars['Boolean']['output'];
478
504
  /** The issues that this Content Item is a subject of */
479
505
  issues: Array<Issue>;
506
+ organization?: Maybe<Organization>;
480
507
  primaryContentExperience?: Maybe<ContentExperience>;
481
508
  prn: Scalars['PRN']['output'];
482
509
  relatingContentValues: Array<ContentValue>;
483
510
  stage: Stage;
484
- /** The ids of the tags this Content Item are tagged with, including all ancestor tags. Should only be used for filtering. */
485
- tagIds: Array<Scalars['String']['output']>;
486
- /** The tags this Content Item are tagged with. */
511
+ /** The Tags assigned to this Content Item. */
487
512
  tags: Array<Tag>;
488
513
  updatedAt: Scalars['DateTime']['output'];
489
514
  };
@@ -519,13 +544,13 @@ export type ContentItemsConnection = {
519
544
  /** The filter input type for 'ContentItems'. Objects/maps are treated as AND, while arrays are treated as OR. */
520
545
  export type ContentItemsFilterInput = {
521
546
  _not?: InputMaybe<Array<ContentItemsFilterInput>>;
522
- contentTypeId?: InputMaybe<Array<StringFilter>>;
547
+ contentTypePrn?: InputMaybe<Array<PrnFilter>>;
523
548
  contentTypeSlug?: InputMaybe<Array<StringFilter>>;
524
549
  createdAt?: InputMaybe<Array<DateFilter>>;
525
550
  displayName?: InputMaybe<Array<StringFilter>>;
526
551
  isDraft?: InputMaybe<Array<BooleanFilter>>;
527
552
  prn?: InputMaybe<Array<PrnFilter>>;
528
- tagIds?: InputMaybe<Array<StringArrayFilter>>;
553
+ tagPrns?: InputMaybe<Array<PrnArrayFilter>>;
529
554
  updatedAt?: InputMaybe<Array<DateFilter>>;
530
555
  };
531
556
 
@@ -539,6 +564,7 @@ export type ContentType = {
539
564
  /** The display name template for the content type. Use {{contentFieldPrn}} to reference Content Fields. */
540
565
  displayNameTemplate: Scalars['String']['output'];
541
566
  name: Scalars['String']['output'];
567
+ organization?: Maybe<Organization>;
542
568
  prn: Scalars['PRN']['output'];
543
569
  slug: Scalars['String']['output'];
544
570
  updatedAt: Scalars['DateTime']['output'];
@@ -581,6 +607,7 @@ export type ContentTypesFilterInput = {
581
607
  export type ContentValidationRule = {
582
608
  __typename?: 'ContentValidationRule';
583
609
  createdAt: Scalars['DateTime']['output'];
610
+ organization?: Maybe<Organization>;
584
611
  prn: Scalars['PRN']['output'];
585
612
  ruleType: RuleType;
586
613
  settings: ExistingContentValidationRulesSettings;
@@ -600,8 +627,9 @@ export type ContentValue = {
600
627
  buildingBlockFieldFulfillments: Array<BuildingBlockFieldFulfillment>;
601
628
  contentField?: Maybe<ContentField>;
602
629
  contentItem?: Maybe<ContentItem>;
630
+ contentItemPrn?: Maybe<Scalars['PRN']['output']>;
603
631
  createdAt: Scalars['DateTime']['output'];
604
- /** Whether the ContentValue is structured in a Content Item. */
632
+ /** Whether the Content Value is structured in a Content Item. */
605
633
  hasContentItem: Scalars['Boolean']['output'];
606
634
  /** The CAST tree for the smart text with all Content Values interpolated. */
607
635
  interpolatedSmartText?: Maybe<Scalars['CAST']['output']>;
@@ -613,9 +641,14 @@ export type ContentValue = {
613
641
  linkedGridPlacement?: Maybe<GridPlacement>;
614
642
  linkedPathPart?: Maybe<PathPart>;
615
643
  linkedTag?: Maybe<Tag>;
644
+ /** The successor in manual sort order for Content Values with the same Content Item, Content Field, Organization, and Stage. Null if this is the last. */
616
645
  next?: Maybe<ContentValue>;
646
+ organization?: Maybe<Organization>;
617
647
  /** 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. */
618
648
  plainText?: Maybe<Scalars['String']['output']>;
649
+ /** The position of the Content Value in manual sort order within the same Content Item, Content Field, Organization, and Stage. This uses Fractional Indexing and can be lexicographically sorted. Null if the Content Value is not part of a Content Item. */
650
+ position?: Maybe<Scalars['String']['output']>;
651
+ /** The predecessor in manual sort order for Content Values with the same Content Item, Content Field, Organization, and Stage. Null if this is the first. */
619
652
  previous?: Maybe<ContentValue>;
620
653
  /** !!!Warning!!! The filter generated for this field is a hardcoded StringFilter. This means all primitiveValues will be converted to and compared as a string! */
621
654
  primitiveValue?: Maybe<Scalars['PrimitiveValue']['output']>;
@@ -642,7 +675,7 @@ export type ContentValue = {
642
675
  smartText?: Maybe<Scalars['CAST']['output']>;
643
676
  stage: Stage;
644
677
  updatedAt: Scalars['DateTime']['output'];
645
- /** 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. */
678
+ /** The value type name of the Content Value. Filtered using a StringFilter. */
646
679
  valueTypeName: ContentValueTypeNames;
647
680
  };
648
681
 
@@ -687,8 +720,8 @@ export type ContentValuesConnection = {
687
720
  /** The filter input type for 'ContentValues'. Objects/maps are treated as AND, while arrays are treated as OR. */
688
721
  export type ContentValuesFilterInput = {
689
722
  _not?: InputMaybe<Array<ContentValuesFilterInput>>;
723
+ contentItemPrn?: InputMaybe<Array<PrnFilter>>;
690
724
  createdAt?: InputMaybe<Array<DateFilter>>;
691
- hasContentItem?: InputMaybe<Array<BooleanFilter>>;
692
725
  isReusable?: InputMaybe<Array<BooleanFilter>>;
693
726
  plainText?: InputMaybe<Array<StringFilter>>;
694
727
  primitiveValue?: InputMaybe<Array<StringFilter>>;
@@ -750,6 +783,7 @@ export type CreateApiTokenResponse = Subject & {
750
783
  createdAt: Scalars['DateTime']['output'];
751
784
  id: Scalars['String']['output'];
752
785
  name: Scalars['String']['output'];
786
+ organization?: Maybe<Organization>;
753
787
  prn: Scalars['PRN']['output'];
754
788
  roleAssignment: RoleAssignment;
755
789
  stage: Stage;
@@ -767,14 +801,13 @@ export type CreateBlueprintFromContentExperienceInput = {
767
801
 
768
802
  export type CreateBlueprintInput = {
769
803
  channel: Scalars['PRN']['input'];
770
- initialRowCount?: Scalars['Int']['input'];
771
804
  isFixed: Scalars['Boolean']['input'];
772
805
  name: Scalars['String']['input'];
773
806
  preview?: InputMaybe<Scalars['PRN']['input']>;
774
807
  };
775
808
 
776
809
  export type CreateBuildingBlockFieldForBuildingBlockInput = {
777
- /** The PRN of the BuildingBlockField that this BuildingBlockField should manually be sorted after. Null means it should be the last. */
810
+ /** The PRN of the Building Block Field that should come immediately after this one in manual sort order within the same Building Block and Organization. Null appends to the end. */
778
811
  next?: InputMaybe<Scalars['PRN']['input']>;
779
812
  slug: Scalars['String']['input'];
780
813
  title: Scalars['String']['input'];
@@ -782,29 +815,29 @@ export type CreateBuildingBlockFieldForBuildingBlockInput = {
782
815
 
783
816
  export type CreateBuildingBlockFieldFulfillmentForExperienceComponentInput = {
784
817
  buildingBlockField: Scalars['PRN']['input'];
785
- /** The PRN of the Content Value which this BuildingBlockFieldFulfillment is filled by. */
818
+ /** The PRN of the Content Value which this Building Block Field Fulfillment is filled by. */
786
819
  contentValueToConnect?: InputMaybe<Scalars['PRN']['input']>;
787
- /** Create a new Content Value for this Building Block Field Fulfillment. Exactly one of contentValue or createContentValue must be provided. */
820
+ /** Create a new Content Value for this Building Block Field Fulfillment. Exactly one of contentValueToConnect and contentValueToCreate must be provided. */
788
821
  contentValueToCreate?: InputMaybe<CreateContentValueInput>;
789
- /** The PRN of the BuildingBlockFieldFulfillment that this BuildingBlockFieldFulfillment should manually be sorted after. Null means it should be the last. */
822
+ /** The PRN of the Building Block Field Fulfillment that should come immediately after this one in manual sort order within the same Experience Component, Building Block Field, Organization, and Stage. Null appends to the end. */
790
823
  next?: InputMaybe<Scalars['PRN']['input']>;
791
824
  };
792
825
 
793
826
  export type CreateBuildingBlockFieldFulfillmentInput = {
794
827
  buildingBlockField: Scalars['PRN']['input'];
795
- /** The PRN of the Content Value which this BuildingBlockFieldFulfillment is filled by. */
828
+ /** The PRN of the Content Value which this Building Block Field Fulfillment is filled by. */
796
829
  contentValueToConnect?: InputMaybe<Scalars['PRN']['input']>;
797
- /** Create a new Content Value for this Building Block Field Fulfillment. Exactly one of contentValue or createContentValue must be provided. */
830
+ /** Create a new Content Value for this Building Block Field Fulfillment. Exactly one of contentValueToConnect and contentValueToCreate must be provided. */
798
831
  contentValueToCreate?: InputMaybe<CreateContentValueInput>;
799
- /** The PRN of the Experience Component which this Building Block Field Fulfillment fulfills. */
832
+ /** The PRN of the Experience Component which this Building Block Field Fulfillment fulfills. */
800
833
  experienceComponent: Scalars['PRN']['input'];
801
- /** The PRN of the BuildingBlockFieldFulfillment that this BuildingBlockFieldFulfillment should manually be sorted after. Null means it should be the last. */
834
+ /** The PRN of the Building Block Field Fulfillment that should come immediately after this one in manual sort order within the same Experience Component, Building Block Field, Organization, and Stage. Null appends to the end. */
802
835
  next?: InputMaybe<Scalars['PRN']['input']>;
803
836
  };
804
837
 
805
838
  export type CreateBuildingBlockFieldInput = {
806
839
  buildingBlock: Scalars['PRN']['input'];
807
- /** The PRN of the BuildingBlockField that this BuildingBlockField should manually be sorted after. Null means it should be the last. */
840
+ /** The PRN of the Building Block Field that should come immediately after this one in manual sort order within the same Building Block and Organization. Null appends to the end. */
808
841
  next?: InputMaybe<Scalars['PRN']['input']>;
809
842
  slug: Scalars['String']['input'];
810
843
  title: Scalars['String']['input'];
@@ -813,7 +846,7 @@ export type CreateBuildingBlockFieldInput = {
813
846
  export type CreateBuildingBlockForThemeInput = {
814
847
  buildingBlockFields: Array<CreateBuildingBlockFieldForBuildingBlockInput>;
815
848
  gridDefinition?: InputMaybe<CreateGridDefinitionInput>;
816
- /** The PRN of the BuildingBlock that this BuildingBlock should manually be sorted after. Null means it should be the last. */
849
+ /** The PRN of the Building Block that should come immediately after this one in manual sort order within the same Theme and Organization. Null appends to the end. */
817
850
  next?: InputMaybe<Scalars['PRN']['input']>;
818
851
  preview?: InputMaybe<Scalars['PRN']['input']>;
819
852
  slug: Scalars['String']['input'];
@@ -823,7 +856,7 @@ export type CreateBuildingBlockForThemeInput = {
823
856
  export type CreateBuildingBlockInput = {
824
857
  buildingBlockFields: Array<CreateBuildingBlockFieldForBuildingBlockInput>;
825
858
  gridDefinition?: InputMaybe<CreateGridDefinitionInput>;
826
- /** The PRN of the BuildingBlock that this BuildingBlock should manually be sorted after. Null means it should be the last. */
859
+ /** The PRN of the Building Block that should come immediately after this one in manual sort order within the same Theme and Organization. Null appends to the end. */
827
860
  next?: InputMaybe<Scalars['PRN']['input']>;
828
861
  preview?: InputMaybe<Scalars['PRN']['input']>;
829
862
  slug: Scalars['String']['input'];
@@ -841,7 +874,6 @@ export type CreateChannelInput = {
841
874
  export type CreateContentExperienceWithExistingPathPartInput = {
842
875
  /** The PRN of the Blueprint to create a Content Experience from. If not provided, an empty Content Experience will be created. */
843
876
  fromBlueprint?: InputMaybe<Scalars['PRN']['input']>;
844
- initialRowCount?: InputMaybe<Scalars['Int']['input']>;
845
877
  pathPart: Scalars['PRN']['input'];
846
878
  preview?: InputMaybe<Scalars['PRN']['input']>;
847
879
  primaryContentItem?: InputMaybe<Scalars['PRN']['input']>;
@@ -859,7 +891,6 @@ export type CreateContentExperienceWithNewPathPartInput = {
859
891
  createPathPartFromPath?: InputMaybe<CreatePathPartFromPathInput>;
860
892
  /** The PRN of the Blueprint to create a Content Experience from. If not provided, an empty Content Experience will be created. */
861
893
  fromBlueprint?: InputMaybe<Scalars['PRN']['input']>;
862
- initialRowCount?: InputMaybe<Scalars['Int']['input']>;
863
894
  preview?: InputMaybe<Scalars['PRN']['input']>;
864
895
  primaryContentItem?: InputMaybe<Scalars['PRN']['input']>;
865
896
  /** The SEO description for the Content Experience. */
@@ -873,7 +904,7 @@ export type CreateContentExperienceWithNewPathPartInput = {
873
904
 
874
905
  export type CreateContentFieldForContentTypeInput = {
875
906
  name: Scalars['String']['input'];
876
- /** The PRN of the ContentField that this ContentField should manually be sorted after. Null means it should be the last. */
907
+ /** The PRN of the Content Field that should come immediately after this one in manual sort order within the same Content Type and Organization. Null appends to the end. */
877
908
  next?: InputMaybe<Scalars['PRN']['input']>;
878
909
  slug: Scalars['String']['input'];
879
910
  };
@@ -881,7 +912,7 @@ export type CreateContentFieldForContentTypeInput = {
881
912
  export type CreateContentFieldInput = {
882
913
  contentType: Scalars['PRN']['input'];
883
914
  name: Scalars['String']['input'];
884
- /** The PRN of the ContentField that this ContentField should manually be sorted after. Null means it should be the last. */
915
+ /** The PRN of the Content Field that should come immediately after this one in manual sort order within the same Content Type and Organization. Null appends to the end. */
885
916
  next?: InputMaybe<Scalars['PRN']['input']>;
886
917
  slug: Scalars['String']['input'];
887
918
  };
@@ -931,7 +962,7 @@ export type CreateContentValueInput = {
931
962
  linkedGridPlacement?: InputMaybe<Scalars['PRN']['input']>;
932
963
  linkedPathPart?: InputMaybe<Scalars['PRN']['input']>;
933
964
  linkedTag?: InputMaybe<Scalars['PRN']['input']>;
934
- /** The PRN of the ContentValue that this ContentValue should manually be sorted after. Null means it should be the last. */
965
+ /** The PRN of the Content Value that should come immediately after this one in manual sort order within the same Content Item, Content Field, Organization, and Stage. Null appends to the end. */
935
966
  next?: InputMaybe<Scalars['PRN']['input']>;
936
967
  /** !!!Warning!!! The filter generated for this field is a hardcoded StringFilter. This means all primitiveValues will be converted to and compared as a string! */
937
968
  primitiveValue?: InputMaybe<Scalars['PrimitiveValue']['input']>;
@@ -989,19 +1020,20 @@ export type CreateGridInput = {
989
1020
  /** !!!WARNING!!! This is currently not validated. Set this if you are creating a Grid for an existing Experience Component. Leave null if creating with an Experience Component. */
990
1021
  experienceComponent?: InputMaybe<Scalars['PRN']['input']>;
991
1022
  gridDefinition: Scalars['PRN']['input'];
992
- rows: Scalars['Int']['input'];
993
1023
  };
994
1024
 
995
1025
  export type CreateGridPlacementForExperienceComponentInput = {
996
1026
  grid: Scalars['PRN']['input'];
997
- row: Scalars['Int']['input'];
1027
+ /** The PRN of the Grid Placement that should come immediately after this one in manual sort order within the same Grid and Organization. Null appends to the end. */
1028
+ next?: InputMaybe<Scalars['PRN']['input']>;
998
1029
  };
999
1030
 
1000
1031
  export type CreateGridPlacementInput = {
1001
1032
  /** The PRN of the Experience Component to place in this Grid Placement. */
1002
1033
  experienceComponent: Scalars['PRN']['input'];
1003
1034
  grid: Scalars['PRN']['input'];
1004
- row: Scalars['Int']['input'];
1035
+ /** The PRN of the Grid Placement that should come immediately after this one in manual sort order within the same Grid and Organization. Null appends to the end. */
1036
+ next?: InputMaybe<Scalars['PRN']['input']>;
1005
1037
  };
1006
1038
 
1007
1039
  export type CreateInvitationInput = {
@@ -1151,6 +1183,7 @@ export type ExperienceComponent = {
1151
1183
  isGlobal: Scalars['Boolean']['output'];
1152
1184
  /** The name of the Experience Component. Only applicable for global Experience Components. */
1153
1185
  name?: Maybe<Scalars['String']['output']>;
1186
+ organization?: Maybe<Organization>;
1154
1187
  /** The preview image of the Experience Component. */
1155
1188
  preview?: Maybe<Asset>;
1156
1189
  prn: Scalars['PRN']['output'];
@@ -1198,7 +1231,7 @@ export type ExperienceComponentsFilterInput = {
1198
1231
  };
1199
1232
 
1200
1233
  export type FindPathPartByPathInput = {
1201
- /** The Channel of the new Path Part. */
1234
+ /** The Channel of the Path Part. */
1202
1235
  channel: Scalars['PRN']['input'];
1203
1236
  /** The path of the Path Part. Must contain a leading '/'. */
1204
1237
  path: Scalars['String']['input'];
@@ -1245,8 +1278,8 @@ export type Grid = {
1245
1278
  experienceComponent: ExperienceComponent;
1246
1279
  gridDefinition: GridDefinition;
1247
1280
  gridPlacements: Array<GridPlacement>;
1281
+ organization?: Maybe<Organization>;
1248
1282
  prn: Scalars['PRN']['output'];
1249
- rows: Scalars['Int']['output'];
1250
1283
  stage: Stage;
1251
1284
  updatedAt: Scalars['DateTime']['output'];
1252
1285
  };
@@ -1265,7 +1298,9 @@ export type GridDefinition = {
1265
1298
  __typename?: 'GridDefinition';
1266
1299
  buildingBlock: BuildingBlock;
1267
1300
  createdAt: Scalars['DateTime']['output'];
1301
+ grids: Array<Grid>;
1268
1302
  maxRows: Scalars['Int']['output'];
1303
+ organization?: Maybe<Organization>;
1269
1304
  prn: Scalars['PRN']['output'];
1270
1305
  updatedAt: Scalars['DateTime']['output'];
1271
1306
  };
@@ -1279,10 +1314,14 @@ export type GridPlacement = {
1279
1314
  createdAt: Scalars['DateTime']['output'];
1280
1315
  experienceComponent: ExperienceComponent;
1281
1316
  grid: Grid;
1317
+ /** The successor in manual sort order for placements of the same Grid, Organization, and Stage. Null if this is the last. */
1318
+ next?: Maybe<GridPlacement>;
1319
+ organization?: Maybe<Organization>;
1320
+ /** The position of the Grid Placement in manual sort order within the same Grid, Experience Component, Organization, and Stage. This uses Fractional Indexing and can be lexicographically sorted. */
1321
+ position: Scalars['String']['output'];
1322
+ /** The predecessor in manual sort order for placements of the same Grid, Organization, and Stage. Null if this is the first. */
1323
+ previous?: Maybe<GridPlacement>;
1282
1324
  prn: Scalars['PRN']['output'];
1283
- /** The Content Values that use this Grid Placement as an referenced value. Reverse relation of referencedGridPlacements. */
1284
- referencedBySmartTextContentValues: Array<ContentValue>;
1285
- row: Scalars['Int']['output'];
1286
1325
  stage: Stage;
1287
1326
  updatedAt: Scalars['DateTime']['output'];
1288
1327
  };
@@ -1310,7 +1349,6 @@ export type GridPlacementsFilterInput = {
1310
1349
  _not?: InputMaybe<Array<GridPlacementsFilterInput>>;
1311
1350
  createdAt?: InputMaybe<Array<DateFilter>>;
1312
1351
  prn?: InputMaybe<Array<PrnFilter>>;
1313
- row?: InputMaybe<Array<IntFilter>>;
1314
1352
  updatedAt?: InputMaybe<Array<DateFilter>>;
1315
1353
  };
1316
1354
 
@@ -1319,7 +1357,6 @@ export type GridsFilterInput = {
1319
1357
  _not?: InputMaybe<Array<GridsFilterInput>>;
1320
1358
  createdAt?: InputMaybe<Array<DateFilter>>;
1321
1359
  prn?: InputMaybe<Array<PrnFilter>>;
1322
- rows?: InputMaybe<Array<IntFilter>>;
1323
1360
  updatedAt?: InputMaybe<Array<DateFilter>>;
1324
1361
  };
1325
1362
 
@@ -1360,6 +1397,7 @@ export type InterpolatedContentValue = {
1360
1397
  export type Invitation = {
1361
1398
  __typename?: 'Invitation';
1362
1399
  createdAt: Scalars['DateTime']['output'];
1400
+ organization?: Maybe<Organization>;
1363
1401
  prn: Scalars['PRN']['output'];
1364
1402
  role: Role;
1365
1403
  updatedAt: Scalars['DateTime']['output'];
@@ -1371,6 +1409,7 @@ export type Issue = {
1371
1409
  context: IssueContext;
1372
1410
  createdAt: Scalars['DateTime']['output'];
1373
1411
  lastSeenAt: Scalars['DateTime']['output'];
1412
+ organization?: Maybe<Organization>;
1374
1413
  prn: Scalars['PRN']['output'];
1375
1414
  stage: Stage;
1376
1415
  status: IssueStatus;
@@ -1445,6 +1484,8 @@ export type Mutation = {
1445
1484
  addPlateMaintainer: User;
1446
1485
  /** Archives one or many Issues. Throws NotFoundError when no Issues could be found. */
1447
1486
  archiveIssues: Array<Issue>;
1487
+ /** Bootstrap the first PlateMaintainer on a fresh deployment using a shared secret. */
1488
+ bootstrapPlateMaintainer: Scalars['Boolean']['output'];
1448
1489
  /** Set the image hash for an asset in the Platform Service database. */
1449
1490
  casAnalyzeAsset: SuccessResponse;
1450
1491
  /** Confirm an Asset upload. Unconfirmed Assets are deleted. */
@@ -1509,7 +1550,6 @@ export type Mutation = {
1509
1550
  createGridDefinition: Array<GridDefinition>;
1510
1551
  /**
1511
1552
  * Creates a new Grid Placement.
1512
- * Moves Grid Placements below the new Grid Placement down by one.
1513
1553
  * Throws BadRequestException when no Experience Component PRN is given.
1514
1554
  */
1515
1555
  createGridPlacement: Array<GridPlacement>;
@@ -1577,7 +1617,9 @@ export type Mutation = {
1577
1617
  removeBuildingBlockFieldFulfillment: Array<BuildingBlockFieldFulfillment>;
1578
1618
  /**
1579
1619
  * Removes one or many Channels.
1580
- * Throws NotFoundException when no Channels could be found.
1620
+ * Throws NotFoundException when no Channel could be found.
1621
+ * Throws UnprocessableContentError when force is false and the Channel still has Blueprints.
1622
+ * Throws UnprocessableContentError when force is false and any Path Part has a Content Experience.
1581
1623
  */
1582
1624
  removeChannel: Array<Channel>;
1583
1625
  /**
@@ -1738,11 +1780,6 @@ export type Mutation = {
1738
1780
  * Throws NotFoundException when no ExperienceComponent could be found.
1739
1781
  */
1740
1782
  updateExperienceComponent: Array<ExperienceComponent>;
1741
- /**
1742
- * Updates one or many Grid with new values.
1743
- * Throws NotFoundException when no Grid could be found.
1744
- */
1745
- updateGrid: Array<Grid>;
1746
1783
  /**
1747
1784
  * Updates one or many GridDefinitions with new values.
1748
1785
  * Throws NotFoundException when no GridDefinition could be found.
@@ -1750,7 +1787,6 @@ export type Mutation = {
1750
1787
  updateGridDefinition: Array<GridDefinition>;
1751
1788
  /**
1752
1789
  * Updates a Grid Placement with new values.
1753
- * Updates the Grid Placements between the old row and the new row to move accordingly.
1754
1790
  * Throws NotFoundException when no Grid Placement could be found.
1755
1791
  */
1756
1792
  updateGridPlacement: Array<GridPlacement>;
@@ -1801,6 +1837,11 @@ export type MutationArchiveIssuesArgs = {
1801
1837
  };
1802
1838
 
1803
1839
 
1840
+ export type MutationBootstrapPlateMaintainerArgs = {
1841
+ secret: Scalars['String']['input'];
1842
+ };
1843
+
1844
+
1804
1845
  export type MutationCasAnalyzeAssetArgs = {
1805
1846
  assetPrnString: Scalars['String']['input'];
1806
1847
  };
@@ -2042,7 +2083,7 @@ export type MutationRemoveBuildingBlockFieldFulfillmentArgs = {
2042
2083
 
2043
2084
 
2044
2085
  export type MutationRemoveChannelArgs = {
2045
- prn: Array<Scalars['PRN']['input']>;
2086
+ input: Array<RemoveChannelInput>;
2046
2087
  };
2047
2088
 
2048
2089
 
@@ -2237,11 +2278,6 @@ export type MutationUpdateExperienceComponentArgs = {
2237
2278
  };
2238
2279
 
2239
2280
 
2240
- export type MutationUpdateGridArgs = {
2241
- input: Array<UpdateGridInput>;
2242
- };
2243
-
2244
-
2245
2281
  export type MutationUpdateGridDefinitionArgs = {
2246
2282
  input: Array<UpdateGridDefinitionInput>;
2247
2283
  };
@@ -2370,17 +2406,18 @@ export type PathPart = {
2370
2406
  amountOfDescendantsWithContentExperiences: Scalars['Int']['output'];
2371
2407
  /** All Path Parts in a "family" (ancestors and decendents) are connected to the same Channel. This does not make sense semantically, but makes it much easier to access the Channel from any Path Part. */
2372
2408
  channel: Channel;
2373
- /** The ID of the Channel this PathPart belongs to. */
2374
- channelId?: Maybe<Scalars['String']['output']>;
2409
+ /** The PRN of the Channel this PathPart belongs to. */
2410
+ channelPrn: Scalars['PRN']['output'];
2375
2411
  children: Array<PathPart>;
2376
2412
  contentExperience?: Maybe<ContentExperience>;
2413
+ contentExperiencePrn?: Maybe<Scalars['PRN']['output']>;
2377
2414
  createdAt: Scalars['DateTime']['output'];
2378
2415
  /** Whether this Path Part has a Content Experience. */
2379
2416
  hasContentExperience: Scalars['Boolean']['output'];
2417
+ organization?: Maybe<Organization>;
2380
2418
  /** The parent Path Part. Only null when this is the root PathPart. */
2381
2419
  parent?: Maybe<PathPart>;
2382
- /** The ID of the parent Path Part. Only null when this is the root PathPart. */
2383
- parentId?: Maybe<Scalars['String']['output']>;
2420
+ parentPrn?: Maybe<Scalars['PRN']['output']>;
2384
2421
  /** The full path of this Path Part, starting from the root. */
2385
2422
  path: Scalars['String']['output'];
2386
2423
  prn: Scalars['PRN']['output'];
@@ -2415,10 +2452,10 @@ export type PathPartsFilterInput = {
2415
2452
  amountOfChildrenWithContentExperiences?: InputMaybe<Array<IntFilter>>;
2416
2453
  amountOfDescendants?: InputMaybe<Array<IntFilter>>;
2417
2454
  amountOfDescendantsWithContentExperiences?: InputMaybe<Array<IntFilter>>;
2418
- channelId?: InputMaybe<Array<StringFilter>>;
2455
+ channelPrn?: InputMaybe<Array<PrnFilter>>;
2456
+ contentExperiencePrn?: InputMaybe<Array<PrnFilter>>;
2419
2457
  createdAt?: InputMaybe<Array<DateFilter>>;
2420
- hasContentExperience?: InputMaybe<Array<BooleanFilter>>;
2421
- parentId?: InputMaybe<Array<StringFilter>>;
2458
+ parentPrn?: InputMaybe<Array<PrnFilter>>;
2422
2459
  path?: InputMaybe<Array<StringFilter>>;
2423
2460
  prn?: InputMaybe<Array<PrnFilter>>;
2424
2461
  slug?: InputMaybe<Array<StringFilter>>;
@@ -2430,6 +2467,17 @@ export type PatternFlag = {
2430
2467
  name: Scalars['String']['input'];
2431
2468
  };
2432
2469
 
2470
+ export type PrnArrayFilter = {
2471
+ /** Contains */
2472
+ _contains?: InputMaybe<Array<Scalars['PRN']['input']>>;
2473
+ /** Equals (values match exactly) */
2474
+ _eq?: InputMaybe<Array<Scalars['PRN']['input']>>;
2475
+ /** Not equals (values do not match exactly) */
2476
+ _neq?: InputMaybe<Array<Scalars['PRN']['input']>>;
2477
+ /** Not contains */
2478
+ _not_contains?: InputMaybe<Array<Scalars['PRN']['input']>>;
2479
+ };
2480
+
2433
2481
  export type PrnFilter = {
2434
2482
  /** Equals */
2435
2483
  _eq?: InputMaybe<Scalars['PRN']['input']>;
@@ -2482,6 +2530,8 @@ export type Query = {
2482
2530
  buildingBlockFieldFulfillments: BuildingBlockFieldFulfillmentsConnection;
2483
2531
  /** Orders and paginates all BuildingBlockFields. */
2484
2532
  buildingBlockFields: BuildingBlockFieldsConnection;
2533
+ /** True when no Plate maintainers exist yet and bootstrap is allowed. */
2534
+ canBootstrapMaintainer: Scalars['Boolean']['output'];
2485
2535
  /** Detect CAST matches with database reusable entries and return an array with the suggestions, Ordered by occurrence in the text. Matches are based on plaintext. */
2486
2536
  castSuggestions: Array<CastSuggestion>;
2487
2537
  /** Detect CAST matches with database reusable entries and return the CAST with suggestions inserted. Matches are based on plaintext. */
@@ -2886,13 +2936,14 @@ export enum RemoveBlueprintInstanceMode {
2886
2936
  export type RemoveBlueprintResponse = {
2887
2937
  __typename?: 'RemoveBlueprintResponse';
2888
2938
  channel: Channel;
2889
- /** The ID of the Channel this Blueprint belongs to. */
2890
- channelId?: Maybe<Scalars['String']['output']>;
2939
+ /** The PRN of the Channel this Blueprint belongs to. */
2940
+ channelPrn?: Maybe<Scalars['PRN']['output']>;
2891
2941
  createdAt: Scalars['DateTime']['output'];
2892
2942
  /** The Experience Component which defines this Blueprint. */
2893
2943
  definedBy: ExperienceComponent;
2894
2944
  isFixed: Scalars['Boolean']['output'];
2895
2945
  name: Scalars['String']['output'];
2946
+ organization?: Maybe<Organization>;
2896
2947
  prn: Scalars['PRN']['output'];
2897
2948
  stage: Stage;
2898
2949
  updatedAt: Scalars['DateTime']['output'];
@@ -2904,7 +2955,12 @@ export type RemoveBuildingBlockResponse = {
2904
2955
  createdAt: Scalars['DateTime']['output'];
2905
2956
  experienceComponents: Array<ExperienceComponent>;
2906
2957
  gridDefinition?: Maybe<GridDefinition>;
2958
+ /** The successor in manual sort order for Building Blocks of the same Theme and Organization. Null if this is the last. */
2907
2959
  next?: Maybe<BuildingBlock>;
2960
+ organization?: Maybe<Organization>;
2961
+ /** The position of the Building Block in manual sort order within the same Theme and Organization. This uses Fractional Indexing and can be lexicographically sorted. */
2962
+ position: Scalars['String']['output'];
2963
+ /** The predecessor in manual sort order for Building Blocks of the same Theme and Organization. Null if this is the first. */
2908
2964
  previous?: Maybe<BuildingBlock>;
2909
2965
  prn: Scalars['PRN']['output'];
2910
2966
  slug: Scalars['String']['output'];
@@ -2913,28 +2969,29 @@ export type RemoveBuildingBlockResponse = {
2913
2969
  updatedAt: Scalars['DateTime']['output'];
2914
2970
  };
2915
2971
 
2972
+ export type RemoveChannelInput = {
2973
+ /** When true, deletes all related Content Experiences, Blueprints, and Path Parts. When false, removal fails if Blueprints or Content Experiences exist. */
2974
+ force?: InputMaybe<Scalars['Boolean']['input']>;
2975
+ prn: Scalars['PRN']['input'];
2976
+ };
2977
+
2916
2978
  export type RemoveContentExperienceResponse = {
2917
2979
  __typename?: 'RemoveContentExperienceResponse';
2918
- /** The ID of the Channel this ContentExperience belongs to. */
2919
- channelId?: Maybe<Scalars['String']['output']>;
2980
+ /** The PRN of the Channel this ContentExperience belongs to. */
2981
+ channelPrn?: Maybe<Scalars['PRN']['output']>;
2920
2982
  createdAt: Scalars['DateTime']['output'];
2921
2983
  experienceComponent: ExperienceComponent;
2922
2984
  /** The issues that this Content Experience is a subject of */
2923
2985
  issues: Array<Issue>;
2986
+ organization?: Maybe<Organization>;
2924
2987
  pathPart: PathPart;
2925
- /** An array of path part ids from the current path part up to the root, ordered from root to current. */
2926
- pathPartsToRootIds: Array<Scalars['String']['output']>;
2927
2988
  primaryContentItem?: Maybe<ContentItem>;
2928
2989
  prn: Scalars['PRN']['output'];
2929
- /** The Content Values that use this Content Experience as an referenced value. Reverse relation of referencedContentExperiences. */
2930
- referencedBySmartTextContentValues: Array<ContentValue>;
2931
2990
  seoDescription?: Maybe<Scalars['String']['output']>;
2932
2991
  seoTitle?: Maybe<Scalars['String']['output']>;
2933
2992
  slug: Scalars['String']['output'];
2934
2993
  stage: Stage;
2935
- /** The ids of the tags this Content Experience are tagged with, including all ancestor tags. Should only be used for filtering. */
2936
- tagIds: Array<Scalars['String']['output']>;
2937
- /** The tags this Content Experience are tagged with. */
2994
+ /** The Tags assigned to this Content Experience. */
2938
2995
  tags: Array<Tag>;
2939
2996
  title: Scalars['String']['output'];
2940
2997
  updatedAt: Scalars['DateTime']['output'];
@@ -2945,9 +3002,9 @@ export type RemoveContentValueResponse = {
2945
3002
  buildingBlockFieldFulfillments: Array<BuildingBlockFieldFulfillment>;
2946
3003
  contentField?: Maybe<ContentField>;
2947
3004
  contentItem?: Maybe<ContentItem>;
3005
+ /** The PRN of the Content Item structuring this Content Value, if it belongs to one. */
3006
+ contentItemPrn?: Maybe<Scalars['PRN']['output']>;
2948
3007
  createdAt: Scalars['DateTime']['output'];
2949
- /** Whether the ContentValue is structured in a Content Item. */
2950
- hasContentItem: Scalars['Boolean']['output'];
2951
3008
  /** The CAST tree for the smart text with all Content Values interpolated. */
2952
3009
  interpolatedSmartText?: Maybe<Scalars['CAST']['output']>;
2953
3010
  /** Whether the ContentValue is reusable. Defaults to false. */
@@ -2958,9 +3015,14 @@ export type RemoveContentValueResponse = {
2958
3015
  linkedGridPlacement?: Maybe<GridPlacement>;
2959
3016
  linkedPathPart?: Maybe<PathPart>;
2960
3017
  linkedTag?: Maybe<Tag>;
3018
+ /** The successor in manual sort order for Content Values with the same Content Item, Content Field, Organization, and Stage. Null if this is the last. */
2961
3019
  next?: Maybe<ContentValue>;
3020
+ organization?: Maybe<Organization>;
2962
3021
  /** 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. */
2963
3022
  plainText?: Maybe<Scalars['String']['output']>;
3023
+ /** The position of the Content Value in manual sort order within the same Content Item, Content Field, Organization, and Stage. This uses Fractional Indexing and can be lexicographically sorted. Null if the Content Value is not part of a Content Item. */
3024
+ position?: Maybe<Scalars['String']['output']>;
3025
+ /** The predecessor in manual sort order for Content Values with the same Content Item, Content Field, Organization, and Stage. Null if this is the first. */
2964
3026
  previous?: Maybe<ContentValue>;
2965
3027
  /** !!!Warning!!! The filter generated for this field is a hardcoded StringFilter. This means all primitiveValues will be converted to and compared as a string! */
2966
3028
  primitiveValue?: Maybe<Scalars['PrimitiveValue']['output']>;
@@ -2986,7 +3048,7 @@ export type RemoveContentValueResponse = {
2986
3048
  smartText?: Maybe<Scalars['CAST']['output']>;
2987
3049
  stage: Stage;
2988
3050
  updatedAt: Scalars['DateTime']['output'];
2989
- /** 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. */
3051
+ /** The value type name of the Content Value. Filtered using a StringFilter. */
2990
3052
  valueTypeName: ContentValueTypeNames;
2991
3053
  };
2992
3054
 
@@ -3010,6 +3072,7 @@ export type RemoveExperienceComponentResponse = {
3010
3072
  isGlobal: Scalars['Boolean']['output'];
3011
3073
  /** The name of the Experience Component. Only applicable for global Experience Components. */
3012
3074
  name?: Maybe<Scalars['String']['output']>;
3075
+ organization?: Maybe<Organization>;
3013
3076
  prn: Scalars['PRN']['output'];
3014
3077
  stage: Stage;
3015
3078
  updatedAt: Scalars['DateTime']['output'];
@@ -3032,7 +3095,7 @@ export type Role = {
3032
3095
  createdAt: Scalars['DateTime']['output'];
3033
3096
  invitations: Array<Invitation>;
3034
3097
  name: DefaultRoleName;
3035
- organization: Organization;
3098
+ organization?: Maybe<Organization>;
3036
3099
  prn: Scalars['PRN']['output'];
3037
3100
  roleAssignments: Array<RoleAssignment>;
3038
3101
  updatedAt: Scalars['DateTime']['output'];
@@ -3041,6 +3104,7 @@ export type Role = {
3041
3104
  export type RoleAssignment = {
3042
3105
  __typename?: 'RoleAssignment';
3043
3106
  createdAt: Scalars['DateTime']['output'];
3107
+ organization?: Maybe<Organization>;
3044
3108
  prn: Scalars['PRN']['output'];
3045
3109
  role: Role;
3046
3110
  subject: Subject;
@@ -3060,6 +3124,7 @@ export enum RuleType {
3060
3124
 
3061
3125
  export enum SeedStatus {
3062
3126
  Completed = 'COMPLETED',
3127
+ Error = 'ERROR',
3063
3128
  InProgress = 'IN_PROGRESS',
3064
3129
  NotStarted = 'NOT_STARTED'
3065
3130
  }
@@ -3083,17 +3148,6 @@ export enum Stage {
3083
3148
  Production = 'PRODUCTION'
3084
3149
  }
3085
3150
 
3086
- export type StringArrayFilter = {
3087
- /** Contains */
3088
- _contains?: InputMaybe<Array<Scalars['String']['input']>>;
3089
- /** Equals (values match exactly) */
3090
- _eq?: InputMaybe<Array<Scalars['String']['input']>>;
3091
- /** Not equals (values do not match exactly) */
3092
- _neq?: InputMaybe<Array<Scalars['String']['input']>>;
3093
- /** Not contains */
3094
- _not_contains?: InputMaybe<Array<Scalars['String']['input']>>;
3095
- };
3096
-
3097
3151
  export type StringFilter = {
3098
3152
  /** Equals */
3099
3153
  _eq?: InputMaybe<Scalars['String']['input']>;
@@ -3149,13 +3203,12 @@ export type Tag = {
3149
3203
  amountOfContentExperiences: Scalars['Int']['output'];
3150
3204
  /** The amount of Content Items that are tagged with this Tag. */
3151
3205
  amountOfContentItems: Scalars['Int']['output'];
3152
- /** The child Tags of this Tag. */
3153
3206
  children: Array<Tag>;
3154
- /** The color of the Tag. This is the color of the nearest ancestor that has a color, or if no ancestor has a color, the Tag's own color. */
3207
+ /** The color of the Tag. This is the color of the root-most ancestor that has a color, or if no ancestor has a color, the Tag's own color. */
3155
3208
  color?: Maybe<Scalars['String']['output']>;
3156
- /** The Content Experiences that are tagged with this Tag. */
3209
+ /** The Content Experiences assigned to this Tag. */
3157
3210
  contentExperiences: Array<ContentExperience>;
3158
- /** The Content Items that are tagged with this Tag. */
3211
+ /** The Content Items assigned to this Tag. */
3159
3212
  contentItems: Array<ContentItem>;
3160
3213
  createdAt: Scalars['DateTime']['output'];
3161
3214
  /** Whether to force the visibility of the Tag on its descendants. */
@@ -3166,10 +3219,11 @@ export type Tag = {
3166
3219
  name: Scalars['String']['output'];
3167
3220
  /** The nesting level of the Tag. */
3168
3221
  nestingLevel: Scalars['Int']['output'];
3169
- /** The parent Tag of this Tag. */
3222
+ organization?: Maybe<Organization>;
3223
+ /** The parent Tag. Only null when this is a root Tag. */
3170
3224
  parent?: Maybe<Tag>;
3171
- /** The ID of the parent Tag. Only null when this is a root Tag. */
3172
- parentId?: Maybe<Scalars['String']['output']>;
3225
+ /** The PRN of the parent Tag. Only null when this is a root Tag. */
3226
+ parentPrn?: Maybe<Scalars['PRN']['output']>;
3173
3227
  /** The path of this Tag. */
3174
3228
  path: Scalars['String']['output'];
3175
3229
  prn: Scalars['PRN']['output'];
@@ -3184,11 +3238,6 @@ export type TagChildrenArgs = {
3184
3238
  where?: InputMaybe<Array<TagsFilterInput>>;
3185
3239
  };
3186
3240
 
3187
-
3188
- export type TagParentArgs = {
3189
- where?: InputMaybe<Array<TagsFilterInput>>;
3190
- };
3191
-
3192
3241
  export type TagEdge = {
3193
3242
  __typename?: 'TagEdge';
3194
3243
  cursor: Scalars['String']['output'];
@@ -3225,7 +3274,7 @@ export type TagsFilterInput = {
3225
3274
  hasForcedVisibility?: InputMaybe<Array<BooleanFilter>>;
3226
3275
  name?: InputMaybe<Array<StringFilter>>;
3227
3276
  nestingLevel?: InputMaybe<Array<IntFilter>>;
3228
- parentId?: InputMaybe<Array<StringFilter>>;
3277
+ parentPrn?: InputMaybe<Array<PrnFilter>>;
3229
3278
  path?: InputMaybe<Array<StringFilter>>;
3230
3279
  prn?: InputMaybe<Array<PrnFilter>>;
3231
3280
  updatedAt?: InputMaybe<Array<DateFilter>>;
@@ -3238,6 +3287,7 @@ export type Theme = {
3238
3287
  channels: Array<Channel>;
3239
3288
  createdAt: Scalars['DateTime']['output'];
3240
3289
  name: Scalars['String']['output'];
3290
+ organization?: Maybe<Organization>;
3241
3291
  prn: Scalars['PRN']['output'];
3242
3292
  repositoryUrl: Scalars['String']['output'];
3243
3293
  updatedAt: Scalars['DateTime']['output'];
@@ -3315,15 +3365,15 @@ export type UpdateBlueprintInput = {
3315
3365
  };
3316
3366
 
3317
3367
  export type UpdateBuildingBlockFieldFulfillmentInput = {
3318
- /** The PRNs of the Content Value which this BuildingBlockFieldFulfillment is filled by. */
3368
+ /** The PRN of the Content Value which this Building Block Field Fulfillment is filled by. */
3319
3369
  contentValue?: InputMaybe<Scalars['PRN']['input']>;
3320
- /** The PRN of the BuildingBlockFieldFulfillment that this BuildingBlockFieldFulfillment should manually be sorted after. */
3370
+ /** The PRN of the Building Block Field Fulfillment that should come immediately after this one in manual sort order within the same Experience Component, Building Block Field, Organization, and Stage. Null appends to the end. */
3321
3371
  next?: InputMaybe<Scalars['PRN']['input']>;
3322
3372
  prn: Scalars['PRN']['input'];
3323
3373
  };
3324
3374
 
3325
3375
  export type UpdateBuildingBlockFieldInput = {
3326
- /** The PRN of the BuildingBlockField that this BuildingBlockField should manually be sorted after. */
3376
+ /** The PRN of the Building Block Field that should come immediately after this one in manual sort order within the same Building Block and Organization. Null appends to the end. */
3327
3377
  next?: InputMaybe<Scalars['PRN']['input']>;
3328
3378
  prn: Scalars['PRN']['input'];
3329
3379
  slug?: InputMaybe<Scalars['String']['input']>;
@@ -3331,7 +3381,7 @@ export type UpdateBuildingBlockFieldInput = {
3331
3381
  };
3332
3382
 
3333
3383
  export type UpdateBuildingBlockInput = {
3334
- /** The PRN of the BuildingBlock that this BuildingBlock should manually be sorted after. */
3384
+ /** The PRN of the Building Block that should come immediately after this one in manual sort order within the same Theme and Organization. Null appends to the end. */
3335
3385
  next?: InputMaybe<Scalars['PRN']['input']>;
3336
3386
  preview?: InputMaybe<Scalars['PRN']['input']>;
3337
3387
  prn: Scalars['PRN']['input'];
@@ -3368,7 +3418,7 @@ export type UpdateContentExperienceInput = {
3368
3418
 
3369
3419
  export type UpdateContentFieldInput = {
3370
3420
  name?: InputMaybe<Scalars['String']['input']>;
3371
- /** The PRN of the ContentField that this ContentField should manually be sorted after. */
3421
+ /** The PRN of the Content Field that should come immediately after this one in manual sort order within the same Content Type and Organization. Null appends to the end. */
3372
3422
  next?: InputMaybe<Scalars['PRN']['input']>;
3373
3423
  prn: Scalars['PRN']['input'];
3374
3424
  slug?: InputMaybe<Scalars['String']['input']>;
@@ -3402,7 +3452,7 @@ export type UpdateContentValueInput = {
3402
3452
  linkedGridPlacement?: InputMaybe<Scalars['PRN']['input']>;
3403
3453
  linkedPathPart?: InputMaybe<Scalars['PRN']['input']>;
3404
3454
  linkedTag?: InputMaybe<Scalars['PRN']['input']>;
3405
- /** The PRN of the ContentValue that this ContentValue should manually be sorted after. */
3455
+ /** The PRN of the Content Value that should come immediately after this one in manual sort order within the same Content Item, Content Field, Organization, and Stage. Null appends to the end. */
3406
3456
  next?: InputMaybe<Scalars['PRN']['input']>;
3407
3457
  /** !!!Warning!!! The filter generated for this field is a hardcoded StringFilter. This means all primitiveValues will be converted to and compared as a string! */
3408
3458
  primitiveValue?: InputMaybe<Scalars['PrimitiveValue']['input']>;
@@ -3446,14 +3496,10 @@ export type UpdateGridDefinitionInput = {
3446
3496
  prn: Scalars['PRN']['input'];
3447
3497
  };
3448
3498
 
3449
- export type UpdateGridInput = {
3450
- prn: Scalars['PRN']['input'];
3451
- rows?: InputMaybe<Scalars['Int']['input']>;
3452
- };
3453
-
3454
3499
  export type UpdateGridPlacementInput = {
3500
+ /** The PRN of the Grid Placement that should come immediately after this one in manual sort order within the same Grid, Organization, and Stage. Null appends to the end. */
3501
+ next?: InputMaybe<Scalars['PRN']['input']>;
3455
3502
  prn: Scalars['PRN']['input'];
3456
- row?: InputMaybe<Scalars['Int']['input']>;
3457
3503
  };
3458
3504
 
3459
3505
  export type UpdateNumberBetweenContentValidationRuleInput = {
@@ -3646,10 +3692,7 @@ export type ContentItemsQuery = { __typename?: 'Query', contentItems: { __typena
3646
3692
  export type AssetFragmentFragment = { __typename?: 'Asset', prn: any, fileName: string, fileSize: number, mimeType: string, url?: string | null, createdAt: any, updatedAt: any, _id: any } & { ' $fragmentName'?: 'AssetFragmentFragment' };
3647
3693
 
3648
3694
  export type BuildingBlockFieldFulfillmentFragmentFragment = { __typename?: 'BuildingBlockFieldFulfillment', prn: any, createdAt: any, updatedAt: any, _id: any, contentValue: (
3649
- { __typename?: 'ContentValue', contentItem?: { __typename?: 'ContentItem', prn: any } | null, relatedAsset?: (
3650
- { __typename?: 'Asset' }
3651
- & { ' $fragmentRefs'?: { 'AssetFragmentFragment': AssetFragmentFragment } }
3652
- ) | null, linkedPathPart?: (
3695
+ { __typename?: 'ContentValue', contentItem?: { __typename?: 'ContentItem', prn: any } | null, linkedPathPart?: (
3653
3696
  { __typename?: 'PathPart' }
3654
3697
  & { ' $fragmentRefs'?: { 'PathPartFragmentFragment': PathPartFragmentFragment } }
3655
3698
  ) | null, linkedGridPlacement?: (
@@ -3672,15 +3715,12 @@ export type BuildingBlockFieldFulfillmentFragmentFragment = { __typename?: 'Buil
3672
3715
  { __typename?: 'ContentValue', contentField?: (
3673
3716
  { __typename?: 'ContentField' }
3674
3717
  & { ' $fragmentRefs'?: { 'ContentFieldFragmentFragment': ContentFieldFragmentFragment } }
3675
- ) | null, relatedAsset?: (
3676
- { __typename?: 'Asset' }
3677
- & { ' $fragmentRefs'?: { 'AssetFragmentFragment': AssetFragmentFragment } }
3678
3718
  ) | null }
3679
- & { ' $fragmentRefs'?: { 'ContentValueFragmentFragment': ContentValueFragmentFragment } }
3719
+ & { ' $fragmentRefs'?: { 'ContentValueFragmentFragment': ContentValueFragmentFragment;'RelatedAssetFragmentFragment': RelatedAssetFragmentFragment } }
3680
3720
  )> }
3681
3721
  & { ' $fragmentRefs'?: { 'ContentItemFragmentFragment': ContentItemFragmentFragment } }
3682
3722
  ) | null }
3683
- & { ' $fragmentRefs'?: { 'ContentValueFragmentFragment': ContentValueFragmentFragment } }
3723
+ & { ' $fragmentRefs'?: { 'ContentValueFragmentFragment': ContentValueFragmentFragment;'RelatedAssetFragmentFragment': RelatedAssetFragmentFragment } }
3684
3724
  ) } & { ' $fragmentName'?: 'BuildingBlockFieldFulfillmentFragmentFragment' };
3685
3725
 
3686
3726
  export type BuildingBlockFieldFragmentFragment = { __typename?: 'BuildingBlockField', prn: any, slug: string, title: string, createdAt: any, updatedAt: any, _id: any } & { ' $fragmentName'?: 'BuildingBlockFieldFragmentFragment' };
@@ -3737,10 +3777,15 @@ export type ExperienceComponentFragmentFragment = { __typename?: 'ExperienceComp
3737
3777
  & { ' $fragmentRefs'?: { 'AssetFragmentFragment': AssetFragmentFragment } }
3738
3778
  ) | null } & { ' $fragmentName'?: 'ExperienceComponentFragmentFragment' };
3739
3779
 
3740
- export type GridPlacementFragmentFragment = { __typename?: 'GridPlacement', prn: any, row: number, updatedAt: any, createdAt: any, _id: any } & { ' $fragmentName'?: 'GridPlacementFragmentFragment' };
3780
+ export type GridPlacementFragmentFragment = { __typename?: 'GridPlacement', prn: any, updatedAt: any, createdAt: any, _id: any } & { ' $fragmentName'?: 'GridPlacementFragmentFragment' };
3741
3781
 
3742
3782
  export type PathPartFragmentFragment = { __typename?: 'PathPart', prn: any, slug: string, path: string, createdAt: any, updatedAt: any, _id: any } & { ' $fragmentName'?: 'PathPartFragmentFragment' };
3743
3783
 
3784
+ export type RelatedAssetFragmentFragment = { __typename?: 'ContentValue', relatedAssetFileName?: string | null, relatedAssetSize?: number | null, relatedAssetFileType?: string | null, relatedAsset?: (
3785
+ { __typename?: 'Asset' }
3786
+ & { ' $fragmentRefs'?: { 'AssetFragmentFragment': AssetFragmentFragment } }
3787
+ ) | null } & { ' $fragmentName'?: 'RelatedAssetFragmentFragment' };
3788
+
3744
3789
  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' };
3745
3790
 
3746
3791
  export type PathPartsQueryVariables = Exact<{
@@ -3765,7 +3810,7 @@ export type PathPartsQuery = { __typename?: 'Query', pathParts: { __typename?: '
3765
3810
  & { ' $fragmentRefs'?: { 'BuildingBlockFieldFragmentFragment': BuildingBlockFieldFragmentFragment } }
3766
3811
  ), contentValue: (
3767
3812
  { __typename?: 'ContentValue', contentItem?: { __typename?: 'ContentItem', prn: any } | null, relatedAsset?: (
3768
- { __typename?: 'Asset' }
3813
+ { __typename?: 'Asset', processedUrls?: Array<string> | null }
3769
3814
  & { ' $fragmentRefs'?: { 'AssetFragmentFragment': AssetFragmentFragment } }
3770
3815
  ) | null }
3771
3816
  & { ' $fragmentRefs'?: { 'ContentValueFragmentFragment': ContentValueFragmentFragment } }
@@ -3794,19 +3839,20 @@ export type TagsQuery = { __typename?: 'Query', tags: { __typename?: 'TagsConnec
3794
3839
 
3795
3840
  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>;
3796
3841
  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>;
3842
+ export const RelatedAssetFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"relatedAssetFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContentValue"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"relatedAssetFileName"}},{"kind":"Field","name":{"kind":"Name","value":"relatedAssetSize"}},{"kind":"Field","name":{"kind":"Name","value":"relatedAssetFileType"}},{"kind":"Field","name":{"kind":"Name","value":"relatedAsset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"assetFragment"}}]}}]}},{"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<RelatedAssetFragmentFragment, unknown>;
3797
3843
  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>;
3798
- 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>;
3844
+ 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":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}}]}}]} as unknown as DocumentNode<GridPlacementFragmentFragment, unknown>;
3799
3845
  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>;
3800
3846
  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>;
3801
3847
  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>;
3802
3848
  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>;
3803
3849
  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>;
3804
- 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>;
3850
+ 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":"FragmentSpread","name":{"kind":"Name","value":"relatedAssetFragment"}},{"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":"FragmentSpread","name":{"kind":"Name","value":"relatedAssetFragment"}}]}}]}}]}},{"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":"relatedAssetFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContentValue"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"relatedAssetFileName"}},{"kind":"Field","name":{"kind":"Name","value":"relatedAssetSize"}},{"kind":"Field","name":{"kind":"Name","value":"relatedAssetFileType"}},{"kind":"Field","name":{"kind":"Name","value":"relatedAsset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"assetFragment"}}]}}]}},{"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":"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>;
3805
3851
  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>;
3806
3852
  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>;
3807
3853
  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>;
3808
- 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>;
3809
- 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>;
3854
+ 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":"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>;
3855
+ 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":"relatedAssetFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ContentValue"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"relatedAssetFileName"}},{"kind":"Field","name":{"kind":"Name","value":"relatedAssetSize"}},{"kind":"Field","name":{"kind":"Name","value":"relatedAssetFileType"}},{"kind":"Field","name":{"kind":"Name","value":"relatedAsset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"assetFragment"}}]}}]}},{"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":"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":"FragmentSpread","name":{"kind":"Name","value":"relatedAssetFragment"}},{"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":"FragmentSpread","name":{"kind":"Name","value":"relatedAssetFragment"}}]}}]}}]}},{"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>;
3810
3856
  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>;
3811
- 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>;
3857
+ 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":"processedUrls"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"optionsList"},"value":{"kind":"Variable","name":{"kind":"Name","value":"optionsList"}}}]}]}}]}}]}}]}}]}},{"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>;
3812
3858
  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>;