@platecms/delta-client 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +16 -16
- package/src/__generated__/fragment-masking.d.ts +2 -2
- package/src/__generated__/gql.d.ts +306 -1
- package/src/__generated__/gql.js +154 -1
- package/src/__generated__/gql.js.map +1 -1
- package/src/__generated__/graphql.d.ts +4557 -35
- package/src/__generated__/graphql.js +163 -1
- package/src/__generated__/graphql.js.map +1 -1
- package/src/schema/lib/utils.js +10 -5
- package/src/schema/lib/utils.js.map +1 -1
- package/src/slate/index.d.ts +12 -2
|
@@ -1,3 +1,308 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as types from './graphql';
|
|
2
|
+
import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';
|
|
3
|
+
type Documents = {
|
|
4
|
+
"query ApiToken($prn: [PRN!]!) {\n apiToken(prn: $prn) {\n ...apiTokenFragment\n channel {\n ...channelFragment\n }\n }\n}": typeof types.ApiTokenDocument;
|
|
5
|
+
"fragment apiTokenFragment on ApiToken {\n _id: prn\n prn\n name\n stage\n createdAt\n updatedAt\n}": typeof types.ApiTokenFragmentFragmentDoc;
|
|
6
|
+
"query ApiTokens($orderBy: OrderOptionsInput) {\n apiTokens(orderBy: $orderBy) {\n ...apiTokenFragment\n channel {\n ...channelFragment\n }\n }\n}": typeof types.ApiTokensDocument;
|
|
7
|
+
"mutation CreateApiToken($input: [CreateApiTokenInput!]!) {\n createApiToken(input: $input) {\n _id: prn\n prn\n name\n stage\n channel {\n ...channelFragment\n }\n createdAt\n updatedAt\n token\n }\n}": typeof types.CreateApiTokenDocument;
|
|
8
|
+
"mutation RemoveApiToken($prn: [PRN!]!) {\n removeApiToken(prn: $prn) {\n prn\n }\n}": typeof types.RemoveApiTokenDocument;
|
|
9
|
+
"mutation UpdateApiToken($input: [UpdateApiTokenInput!]!) {\n updateApiToken(input: $input) {\n ...apiTokenFragment\n }\n}": typeof types.UpdateApiTokenDocument;
|
|
10
|
+
"fragment assetFragment on Asset {\n _id: prn\n prn\n fileName\n fileSize\n mimeType\n url\n createdAt\n updatedAt\n}": typeof types.AssetFragmentFragmentDoc;
|
|
11
|
+
"mutation ConfirmAssetUpload($prn: [PRN!]!) {\n confirmAssetUpload(prn: $prn) {\n createdAt\n fileName\n fileSize\n mimeType\n prn\n updatedAt\n url\n }\n}": typeof types.ConfirmAssetUploadDocument;
|
|
12
|
+
"mutation GenerateAssetUploadUrl($input: [GenerateAssetUploadUrlInput!]!) {\n generateAssetUploadUrl(input: $input) {\n prn\n url\n }\n}": typeof types.GenerateAssetUploadUrlDocument;
|
|
13
|
+
"fragment blueprintFragment on Blueprint {\n _id: prn\n prn\n name\n definedBy {\n prn\n createdAt\n updatedAt\n grid {\n ...gridFragment\n gridPlacements {\n ...gridPlacementFragment\n experienceComponent {\n ...experienceComponentFragment\n buildingBlock {\n ...buildingBlockFragment\n buildingBlockFields {\n ...buildingBlockFieldFragment\n }\n }\n buildingBlockFieldFulfillments {\n ...buildingBlockFieldFulfillmentFragment\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n contentValue {\n ...contentValueFragment\n relatedAsset {\n ...assetFragment\n }\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n }\n }\n contentItem {\n prn\n }\n }\n }\n }\n }\n }\n }\n isFixed\n createdAt\n updatedAt\n}": typeof types.BlueprintFragmentFragmentDoc;
|
|
14
|
+
"query Blueprints($paginate: PaginationOptionsInput!, $orderBy: OrderOptionsInput, $where: [BlueprintsFilterInput!]) {\n blueprints(paginate: $paginate, orderBy: $orderBy, where: $where) {\n totalCount\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n edges {\n cursor\n node {\n ...blueprintFragment\n channel {\n defaultBlueprint {\n prn\n }\n ...channelFragment\n }\n }\n }\n }\n}": typeof types.BlueprintsDocument;
|
|
15
|
+
"mutation CopyBlueprint($input: [CopyBlueprintInput!]!) {\n copyBlueprint(input: $input) {\n prn\n }\n}": typeof types.CopyBlueprintDocument;
|
|
16
|
+
"mutation CreateBlueprint($input: [CreateBlueprintInput!]!) {\n createBlueprint(input: $input) {\n ...blueprintFragment\n channel {\n ...channelFragment\n defaultBlueprint {\n prn\n }\n }\n }\n}": typeof types.CreateBlueprintDocument;
|
|
17
|
+
"mutation CreateBlueprintFromContentExperience($input: [CreateBlueprintFromContentExperienceInput!]!) {\n createBlueprintFromContentExperience(input: $input) {\n ...blueprintFragment\n }\n}": typeof types.CreateBlueprintFromContentExperienceDocument;
|
|
18
|
+
"mutation RemoveBlueprint($input: [RemoveBlueprintInput!]!) {\n removeBlueprint(input: $input) {\n _id: prn\n prn\n name\n isFixed\n createdAt\n updatedAt\n }\n}": typeof types.RemoveBlueprintDocument;
|
|
19
|
+
"query SingleBlueprint($prn: [PRN!]!) {\n blueprint(prn: $prn) {\n _id: prn\n prn\n isFixed\n name\n createdAt\n updatedAt\n channel {\n ...channelFragment\n theme {\n ...themeFragment\n }\n rootPathPart {\n ...pathPartFragment\n }\n }\n definedBy {\n blueprintedInstances {\n contentExperience {\n prn\n title\n slug\n }\n }\n prn\n createdAt\n updatedAt\n grid {\n ...gridFragment\n gridPlacements {\n ...gridPlacementFragment\n experienceComponent {\n ...experienceComponentFragment\n buildingBlock {\n ...buildingBlockFragment\n buildingBlockFields {\n ...buildingBlockFieldFragment\n }\n }\n buildingBlockFieldFulfillments {\n ...buildingBlockFieldFulfillmentFragment\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n contentValue {\n ...contentValueFragment\n relatedAsset {\n ...assetFragment\n }\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n }\n }\n contentItem {\n prn\n }\n }\n }\n }\n }\n }\n }\n }\n}": typeof types.SingleBlueprintDocument;
|
|
20
|
+
"mutation SyncBlueprint($prn: [PRN!]!) {\n syncBlueprint(prn: $prn)\n}": typeof types.SyncBlueprintDocument;
|
|
21
|
+
"mutation UpdateBlueprint($input: [UpdateBlueprintInput!]!) {\n updateBlueprint(input: $input) {\n ...blueprintFragment\n }\n}": typeof types.UpdateBlueprintDocument;
|
|
22
|
+
"fragment buildingBlockFieldFulfillmentFragment on BuildingBlockFieldFulfillment {\n _id: prn\n prn\n createdAt\n updatedAt\n}": typeof types.BuildingBlockFieldFulfillmentFragmentFragmentDoc;
|
|
23
|
+
"mutation CreateBuildingBlockFieldFulfillments($input: [CreateBuildingBlockFieldFulfillmentInput!]!) {\n createBuildingBlockFieldFulfillment(input: $input) {\n ...buildingBlockFieldFulfillmentFragment\n contentValue {\n ...contentValueFragment\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n relatedAsset {\n ...assetFragment\n }\n }\n }\n contentItem {\n prn\n }\n }\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n }\n}": typeof types.CreateBuildingBlockFieldFulfillmentsDocument;
|
|
24
|
+
"mutation RemoveBuildingBlockFieldFulfillment($input: [PRN!]!) {\n removeBuildingBlockFieldFulfillment(prn: $input) {\n ...buildingBlockFieldFulfillmentFragment\n contentValue {\n ...contentValueFragment\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n relatedAsset {\n ...assetFragment\n }\n }\n }\n contentItem {\n prn\n }\n }\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n }\n}": typeof types.RemoveBuildingBlockFieldFulfillmentDocument;
|
|
25
|
+
"mutation UpdateBuildingBlockFieldFulfillment($input: [UpdateBuildingBlockFieldFulfillmentInput!]!) {\n updateBuildingBlockFieldFulfillment(input: $input) {\n ...buildingBlockFieldFulfillmentFragment\n contentValue {\n ...contentValueFragment\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n relatedAsset {\n ...assetFragment\n }\n }\n }\n contentItem {\n prn\n }\n }\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n }\n}": typeof types.UpdateBuildingBlockFieldFulfillmentDocument;
|
|
26
|
+
"fragment buildingBlockFieldFragment on BuildingBlockField {\n _id: prn\n prn\n slug\n title\n createdAt\n updatedAt\n contentValidationRules {\n ...contentValidationRuleFragment\n }\n}": typeof types.BuildingBlockFieldFragmentFragmentDoc;
|
|
27
|
+
"mutation CreateBuildingBlockField($input: [CreateBuildingBlockFieldInput!]!) {\n createBuildingBlockField(input: $input) {\n ...buildingBlockFieldFragment\n }\n}": typeof types.CreateBuildingBlockFieldDocument;
|
|
28
|
+
"mutation RemoveBuildingBlockField($prn: [PRN!]!) {\n removeBuildingBlockField(prn: $prn) {\n ...buildingBlockFieldFragment\n }\n}": typeof types.RemoveBuildingBlockFieldDocument;
|
|
29
|
+
"mutation UpdateBuildingBlockField($input: [UpdateBuildingBlockFieldInput!]!) {\n updateBuildingBlockField(input: $input) {\n ...buildingBlockFieldFragment\n }\n}": typeof types.UpdateBuildingBlockFieldDocument;
|
|
30
|
+
"query BuildingBlock($prn: [PRN!]!) {\n buildingBlock(prn: $prn) {\n ...buildingBlockFragment\n buildingBlockFields {\n ...buildingBlockFieldFragment\n }\n }\n}": typeof types.BuildingBlockDocument;
|
|
31
|
+
"fragment buildingBlockFragment on BuildingBlock {\n _id: prn\n prn\n slug\n title\n preview {\n ...assetFragment\n }\n createdAt\n updatedAt\n}": typeof types.BuildingBlockFragmentFragmentDoc;
|
|
32
|
+
"mutation CreateBuildingBlock($input: [CreateBuildingBlockInput!]!) {\n createBuildingBlock(input: $input) {\n ...buildingBlockFragment\n }\n}": typeof types.CreateBuildingBlockDocument;
|
|
33
|
+
"mutation RemoveBuildingBlock($prn: [PRN!]!) {\n removeBuildingBlock(prn: $prn) {\n prn\n }\n}": typeof types.RemoveBuildingBlockDocument;
|
|
34
|
+
"mutation UpdateBuildingBlock($input: [UpdateBuildingBlockInput!]!) {\n updateBuildingBlock(input: $input) {\n ...buildingBlockFragment\n }\n}": typeof types.UpdateBuildingBlockDocument;
|
|
35
|
+
"query CasStringMatches($inputText: String!, $limit: Int!, $matchConfig: DatabaseMatchConfig) {\n casStringMatches(\n inputText: $inputText\n limit: $limit\n matchConfig: $matchConfig\n ) {\n confidence\n contentValue {\n prn\n interpolatedSmartText\n primitiveValue\n isReusable\n contentItem {\n displayName\n }\n }\n endIndex\n extractionMethod\n startIndex\n }\n}": typeof types.CasStringMatchesDocument;
|
|
36
|
+
"query allChannels($paginate: PaginationOptionsInput!, $where: [ChannelsFilterInput!], $orderBy: OrderOptionsInput) {\n channels(paginate: $paginate, where: $where, orderBy: $orderBy) {\n pageInfo {\n ...pagination\n }\n totalCount\n edges {\n cursor\n node {\n ...channelFragment\n rootPathPart {\n ...pathPartFragment\n }\n defaultBlueprint {\n prn\n name\n }\n theme {\n ...themeFragment\n }\n apiTokens {\n ...apiTokenFragment\n }\n }\n }\n }\n}": typeof types.AllChannelsDocument;
|
|
37
|
+
"fragment channelFragment on Channel {\n _id: prn\n name\n domain\n slug\n prn\n updatedAt\n createdAt\n}": typeof types.ChannelFragmentFragmentDoc;
|
|
38
|
+
"mutation createChannel($createChannelInput: [CreateChannelInput!]!) {\n createChannel(input: $createChannelInput) {\n ...channelFragment\n }\n}": typeof types.CreateChannelDocument;
|
|
39
|
+
"mutation removeChannel($prn: [PRN!]!) {\n removeChannel(prn: $prn) {\n ...channelFragment\n }\n}": typeof types.RemoveChannelDocument;
|
|
40
|
+
"query singleChannel($prn: [PRN!]!) {\n channel(prn: $prn) {\n ...channelFragment\n rootPathPart {\n ...pathPartFragment\n }\n }\n}": typeof types.SingleChannelDocument;
|
|
41
|
+
"query singleChannelWithBlueprints($prn: [PRN!]!) {\n channel(prn: $prn) {\n ...channelFragment\n defaultBlueprint {\n prn\n name\n }\n blueprints {\n ...blueprintFragment\n channel {\n ...channelFragment\n }\n }\n }\n}": typeof types.SingleChannelWithBlueprintsDocument;
|
|
42
|
+
"mutation updateChannel($updateChannelInput: [UpdateChannelInput!]!) {\n updateChannel(input: $updateChannelInput) {\n ...channelFragment\n defaultBlueprint {\n prn\n name\n }\n }\n}": typeof types.UpdateChannelDocument;
|
|
43
|
+
"query allContentExperiences($paginate: PaginationOptionsInput!, $where: [ContentExperiencesFilterInput!], $orderBy: OrderOptionsInput, $optionsList: [ProcessedAssetOptionsInput!]!) {\n contentExperiences(paginate: $paginate, where: $where, orderBy: $orderBy) {\n pageInfo {\n ...pagination\n }\n totalCount\n edges {\n cursor\n node {\n ...contentExperienceFragment\n tags {\n ...tagFragment\n }\n experienceComponent {\n grid {\n gridPlacements {\n experienceComponent {\n buildingBlockFieldFulfillments {\n contentValue {\n relatedAsset {\n prn\n url\n processedUrls(optionsList: $optionsList)\n }\n }\n }\n }\n }\n }\n }\n pathPart {\n ...pathPartFragment\n }\n }\n }\n }\n}": typeof types.AllContentExperiencesDocument;
|
|
44
|
+
"fragment contentExperienceFragment on ContentExperience {\n _id: prn\n slug\n prn\n tags {\n ...tagFragment\n }\n title\n createdAt\n updatedAt\n preview {\n ...assetFragment\n }\n}": typeof types.ContentExperienceFragmentFragmentDoc;
|
|
45
|
+
"mutation createContentExperienceWithExistingPathPart($input: [CreateContentExperienceWithExistingPathPartInput!]!) {\n createContentExperienceWithExistingPathPart(input: $input) {\n ...contentExperienceFragment\n pathPart {\n ...pathPartFragment\n }\n }\n}": typeof types.CreateContentExperienceWithExistingPathPartDocument;
|
|
46
|
+
"mutation createContentExperienceWithNewPathPart($input: [CreateContentExperienceWithNewPathPartInput!]!) {\n createContentExperienceWithNewPathPart(input: $input) {\n ...contentExperienceFragment\n pathPart {\n ...pathPartFragment\n }\n }\n}": typeof types.CreateContentExperienceWithNewPathPartDocument;
|
|
47
|
+
"mutation removeContentExperience($prn: [PRN!]!) {\n removeContentExperience(prn: $prn) {\n _id: prn\n slug\n prn\n title\n createdAt\n updatedAt\n }\n}": typeof types.RemoveContentExperienceDocument;
|
|
48
|
+
"query singleContentExperience($prn: [PRN!]!) {\n contentExperience(prn: $prn) {\n ...contentExperienceFragment\n pathPart {\n ...pathPartFragment\n channel {\n ...channelFragment\n theme {\n ...themeFragment\n }\n }\n }\n tags {\n ...tagFragment\n }\n experienceComponent {\n ...experienceComponentFragment\n blueprintedBy {\n prn\n blueprint {\n ...blueprintFragment\n }\n }\n buildingBlock {\n ...buildingBlockFragment\n buildingBlockFields {\n ...buildingBlockFieldFragment\n }\n }\n buildingBlockFieldFulfillments {\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n contentValue {\n ...contentValueFragment\n contentItem {\n prn\n }\n relatedAsset {\n ...assetFragment\n }\n linkedPathPart {\n ...pathPartFragment\n }\n linkedGridPlacement {\n ...gridPlacementFragment\n experienceComponent {\n ...experienceComponentFragment\n buildingBlock {\n ...buildingBlockFragment\n }\n }\n }\n relatedContentItem {\n ...contentItemFragment\n contentType {\n ...contentTypeFragment\n contentFields {\n ...contentFieldFragment\n }\n }\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n relatedAsset {\n ...assetFragment\n }\n }\n }\n }\n }\n grid {\n ...gridFragment\n gridPlacements {\n ...gridPlacementFragment\n experienceComponent {\n ...experienceComponentFragment\n buildingBlock {\n ...buildingBlockFragment\n buildingBlockFields {\n ...buildingBlockFieldFragment\n }\n }\n buildingBlockFieldFulfillments {\n ...buildingBlockFieldFulfillmentFragment\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n contentValue {\n ...contentValueFragment\n contentItem {\n prn\n }\n relatedAsset {\n ...assetFragment\n }\n linkedPathPart {\n ...pathPartFragment\n }\n linkedGridPlacement {\n ...gridPlacementFragment\n experienceComponent {\n ...experienceComponentFragment\n buildingBlock {\n ...buildingBlockFragment\n }\n }\n }\n relatedContentItem {\n ...contentItemFragment\n contentType {\n ...contentTypeFragment\n contentFields {\n ...contentFieldFragment\n }\n }\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n relatedAsset {\n ...assetFragment\n }\n }\n }\n }\n }\n }\n }\n }\n }\n }\n}": typeof types.SingleContentExperienceDocument;
|
|
49
|
+
"query singleContentExperienceWithPathPart($prn: [PRN!]!) {\n contentExperience(prn: $prn) {\n ...contentExperienceFragment\n pathPart {\n ...pathPartFragment\n channel {\n ...channelFragment\n theme {\n ...themeFragment\n }\n }\n }\n }\n}": typeof types.SingleContentExperienceWithPathPartDocument;
|
|
50
|
+
"mutation updateContentExperience($input: [UpdateContentExperienceInput!]!) {\n updateContentExperience(input: $input) {\n ...contentExperienceFragment\n tags {\n ...tagFragment\n }\n pathPart {\n ...pathPartFragment\n }\n }\n}": typeof types.UpdateContentExperienceDocument;
|
|
51
|
+
"fragment contentFieldFragment on ContentField {\n _id: prn\n prn\n name\n createdAt\n updatedAt\n}": typeof types.ContentFieldFragmentFragmentDoc;
|
|
52
|
+
"query contentFields($paginate: PaginationOptionsInput!, $where: [ContentFieldsFilterInput!], $orderBy: OrderOptionsInput!) {\n contentFields(paginate: $paginate, where: $where, orderBy: $orderBy) {\n pageInfo {\n ...pagination\n }\n totalCount\n edges {\n cursor\n node {\n ...contentFieldFragment\n }\n }\n }\n}": typeof types.ContentFieldsDocument;
|
|
53
|
+
"mutation CreateContentField($input: [CreateContentFieldInput!]!) {\n createContentField(input: $input) {\n ...contentFieldFragment\n }\n}": typeof types.CreateContentFieldDocument;
|
|
54
|
+
"mutation RemoveContentField($prn: [PRN!]!) {\n removeContentField(prn: $prn) {\n prn\n }\n}": typeof types.RemoveContentFieldDocument;
|
|
55
|
+
"mutation updateContentField($input: [UpdateContentFieldInput!]!) {\n updateContentField(input: $input) {\n ...contentFieldFragment\n }\n}": typeof types.UpdateContentFieldDocument;
|
|
56
|
+
"query allContentItems($paginate: PaginationOptionsInput!, $where: [ContentItemsFilterInput!], $orderBy: OrderOptionsInput, $optionsList: [ProcessedAssetOptionsInput!]!) {\n contentItems(paginate: $paginate, where: $where, orderBy: $orderBy) {\n pageInfo {\n ...pagination\n }\n totalCount\n edges {\n cursor\n node {\n ...contentItemFragment\n displayImage {\n processedUrls(optionsList: $optionsList)\n ...assetFragment\n }\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n contentValidationRules {\n ...contentValidationRuleFragment\n }\n }\n relatedAsset {\n ...assetFragment\n }\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n }\n }\n }\n contentType {\n ...contentTypeFragment\n contentFields {\n ...contentFieldFragment\n }\n }\n tags {\n ...tagFragment\n }\n }\n }\n }\n}": typeof types.AllContentItemsDocument;
|
|
57
|
+
"fragment contentItemFragment on ContentItem {\n _id: prn\n prn\n isDraft\n displayName\n displayImage {\n ...assetFragment\n }\n updatedAt\n createdAt\n}": typeof types.ContentItemFragmentFragmentDoc;
|
|
58
|
+
"mutation createContentItem($createContentItemInput: [CreateContentItemInput!]!) {\n createContentItem(input: $createContentItemInput) {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n }\n }\n }\n contentType {\n ...contentTypeFragment\n contentFields {\n ...contentFieldFragment\n contentValidationRules {\n prn\n ruleType\n settings {\n ... on CountContentValidationRuleSettings {\n min\n max\n }\n ... on ValueTypeContentValidationRuleSettings {\n allowedTypes\n }\n ... on AllowedValuesContentValidationRuleSettings {\n allowedValues\n }\n ... on DateBetweenContentValidationRuleSettings {\n start\n end\n }\n ... on DecimalCountContentValidationRuleSettings {\n max\n }\n ... on NumberBetweenContentValidationRuleSettings {\n min\n max\n }\n ... on RelatableContentTypesContentValidationRuleSettings {\n allowedContentTypes\n }\n ... on StringFormatContentValidationRuleSettings {\n allowedFormat\n }\n }\n }\n }\n }\n }\n}": typeof types.CreateContentItemDocument;
|
|
59
|
+
"mutation removeContentItem($prn: [PRN!]!) {\n removeContentItem(prn: $prn) {\n ...contentItemFragment\n }\n}": typeof types.RemoveContentItemDocument;
|
|
60
|
+
"query singleContentItem($prn: [PRN!]!) {\n contentItem(prn: $prn) {\n ...contentItemFragment\n tags {\n ...tagFragment\n }\n contentValues {\n ...contentValueFragment\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n }\n }\n relatedAsset {\n ...assetFragment\n }\n contentField {\n ...contentFieldFragment\n }\n linkedPathPart {\n ...pathPartFragment\n }\n linkedGridPlacement {\n ...gridPlacementFragment\n experienceComponent {\n ...experienceComponentFragment\n buildingBlock {\n ...buildingBlockFragment\n }\n }\n }\n }\n contentType {\n ...contentTypeFragment\n contentFields {\n ...contentFieldFragment\n contentValidationRules {\n prn\n ruleType\n settings {\n ... on CountContentValidationRuleSettings {\n min\n max\n }\n ... on ValueTypeContentValidationRuleSettings {\n allowedTypes\n }\n ... on AllowedValuesContentValidationRuleSettings {\n allowedValues\n }\n ... on DateBetweenContentValidationRuleSettings {\n start\n end\n }\n ... on DecimalCountContentValidationRuleSettings {\n max\n }\n ... on NumberBetweenContentValidationRuleSettings {\n min\n max\n }\n ... on RelatableContentTypesContentValidationRuleSettings {\n allowedContentTypes\n }\n ... on StringFormatContentValidationRuleSettings {\n allowedFormat\n }\n }\n }\n }\n }\n }\n}": typeof types.SingleContentItemDocument;
|
|
61
|
+
"mutation updateContentItem($updateContentItemInput: [UpdateContentItemInput!]!) {\n updateContentItem(input: $updateContentItemInput) {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n }\n }\n }\n tags {\n ...tagFragment\n }\n contentType {\n ...contentTypeFragment\n contentFields {\n ...contentFieldFragment\n contentValidationRules {\n prn\n ruleType\n settings {\n ... on CountContentValidationRuleSettings {\n min\n max\n }\n ... on ValueTypeContentValidationRuleSettings {\n allowedTypes\n }\n ... on AllowedValuesContentValidationRuleSettings {\n allowedValues\n }\n ... on DateBetweenContentValidationRuleSettings {\n start\n end\n }\n ... on DecimalCountContentValidationRuleSettings {\n max\n }\n ... on NumberBetweenContentValidationRuleSettings {\n min\n max\n }\n ... on RelatableContentTypesContentValidationRuleSettings {\n allowedContentTypes\n }\n ... on StringFormatContentValidationRuleSettings {\n allowedFormat\n }\n }\n }\n }\n }\n }\n}": typeof types.UpdateContentItemDocument;
|
|
62
|
+
"query allContentTypes($paginate: PaginationOptionsInput!, $where: [ContentTypesFilterInput!], $orderBy: OrderOptionsInput!) {\n contentTypes(paginate: $paginate, where: $where, orderBy: $orderBy) {\n pageInfo {\n ...pagination\n }\n totalCount\n edges {\n cursor\n node {\n ...contentTypeFragment\n contentFields {\n ...contentFieldFragment\n contentValidationRules {\n ...contentValidationRuleFragment\n }\n }\n }\n }\n }\n}": typeof types.AllContentTypesDocument;
|
|
63
|
+
"query ContentType($prn: [PRN!]!) {\n contentType(prn: $prn) {\n ...contentTypeFragment\n contentFields {\n ...contentFieldFragment\n contentValidationRules {\n ...contentValidationRuleFragment\n }\n }\n }\n}": typeof types.ContentTypeDocument;
|
|
64
|
+
"query ContentTypeWithContentItems($prn: [PRN!]!) {\n contentType(prn: $prn) {\n ...contentTypeFragment\n contentItems {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n smartText\n contentField {\n prn\n name\n createdAt\n updatedAt\n contentValidationRules {\n ruleType\n settings {\n ... on ValueTypeContentValidationRuleSettings {\n allowedTypes\n }\n }\n }\n }\n relatedContentItem {\n ...contentItemFragment\n }\n relatedAsset {\n ...assetFragment\n }\n linkedPathPart {\n ...pathPartFragment\n }\n linkedGridPlacement {\n ...gridPlacementFragment\n experienceComponent {\n name\n }\n }\n }\n }\n }\n}": typeof types.ContentTypeWithContentItemsDocument;
|
|
65
|
+
"fragment contentTypeFragment on ContentType {\n _id: prn\n prn\n name\n displayNameTemplate\n displayImageField {\n ...contentFieldFragment\n }\n createdAt\n updatedAt\n}": typeof types.ContentTypeFragmentFragmentDoc;
|
|
66
|
+
"mutation createContentType($input: [CreateContentTypeInput!]!) {\n createContentType(input: $input) {\n ...contentTypeFragment\n }\n}": typeof types.CreateContentTypeDocument;
|
|
67
|
+
"mutation RemoveContentType($prn: [PRN!]!) {\n removeContentType(prn: $prn) {\n prn\n }\n}": typeof types.RemoveContentTypeDocument;
|
|
68
|
+
"mutation updateContentType($input: [UpdateContentTypeInput!]!) {\n updateContentType(input: $input) {\n ...contentTypeFragment\n }\n}": typeof types.UpdateContentTypeDocument;
|
|
69
|
+
"fragment contentValidationRuleFragment on ContentValidationRule {\n _id: prn\n prn\n ruleType\n settings {\n __typename\n ... on CountContentValidationRuleSettings {\n min\n max\n }\n ... on ValueTypeContentValidationRuleSettings {\n allowedTypes\n }\n ... on AllowedValuesContentValidationRuleSettings {\n allowedValues\n }\n ... on DateBetweenContentValidationRuleSettings {\n start\n end\n }\n ... on DecimalCountContentValidationRuleSettings {\n max\n }\n ... on NumberBetweenContentValidationRuleSettings {\n min\n max\n }\n ... on RelatableContentTypesContentValidationRuleSettings {\n allowedContentTypes\n }\n ... on StringFormatContentValidationRuleSettings {\n allowedFormat\n }\n }\n}": typeof types.ContentValidationRuleFragmentFragmentDoc;
|
|
70
|
+
"mutation createAllowedValuesContentValidationRule($createAllowedValuesContentValidationRuleInput: CreateAllowedValuesContentValidationRuleInput!) {\n createAllowedValuesContentValidationRule(\n input: $createAllowedValuesContentValidationRuleInput\n ) {\n ...contentValidationRuleFragment\n }\n}": typeof types.CreateAllowedValuesContentValidationRuleDocument;
|
|
71
|
+
"mutation createCountContentValidationRule($createCountContentValidationRuleInput: CreateCountContentValidationRuleInput!) {\n createCountContentValidationRule(input: $createCountContentValidationRuleInput) {\n ...contentValidationRuleFragment\n }\n}": typeof types.CreateCountContentValidationRuleDocument;
|
|
72
|
+
"mutation createDateBetweenContentValidationRule($createDateBetweenContentValidationRuleInput: CreateDateBetweenContentValidationRuleInput!) {\n createDateBetweenContentValidationRule(\n input: $createDateBetweenContentValidationRuleInput\n ) {\n ...contentValidationRuleFragment\n }\n}": typeof types.CreateDateBetweenContentValidationRuleDocument;
|
|
73
|
+
"mutation createDecimalCountContentValidationRule($createDecimalCountContentValidationRuleInput: CreateDecimalCountContentValidationRuleInput!) {\n createDecimalCountContentValidationRule(\n input: $createDecimalCountContentValidationRuleInput\n ) {\n ...contentValidationRuleFragment\n }\n}": typeof types.CreateDecimalCountContentValidationRuleDocument;
|
|
74
|
+
"mutation createNumberBetweenContentValidationRule($createNumberBetweenContentValidationRuleInput: CreateNumberBetweenContentValidationRuleInput!) {\n createNumberBetweenContentValidationRule(\n input: $createNumberBetweenContentValidationRuleInput\n ) {\n ...contentValidationRuleFragment\n }\n}": typeof types.CreateNumberBetweenContentValidationRuleDocument;
|
|
75
|
+
"mutation createRelatableContentTypesContentValidationRule($createRelatableContentTypesContentValidationRuleInput: CreateRelatableContentTypesContentValidationRuleInput!) {\n createRelatableContentTypesContentValidationRule(\n input: $createRelatableContentTypesContentValidationRuleInput\n ) {\n ...contentValidationRuleFragment\n }\n}": typeof types.CreateRelatableContentTypesContentValidationRuleDocument;
|
|
76
|
+
"mutation createStringFormatContentValidationRule($createStringFormatContentValidationRuleInput: CreateStringFormatContentValidationRuleInput!) {\n createStringFormatContentValidationRule(\n input: $createStringFormatContentValidationRuleInput\n ) {\n ...contentValidationRuleFragment\n }\n}": typeof types.CreateStringFormatContentValidationRuleDocument;
|
|
77
|
+
"mutation createValueTypeContentValidationRule($createValueTypeContentValidationRuleInput: CreateValueTypeContentValidationRuleInput!) {\n createValueTypeContentValidationRule(\n input: $createValueTypeContentValidationRuleInput\n ) {\n ...contentValidationRuleFragment\n }\n}": typeof types.CreateValueTypeContentValidationRuleDocument;
|
|
78
|
+
"mutation RemoveContentValidationRule($prn: [PRN!]!) {\n removeContentValidationRule(prn: $prn) {\n prn\n }\n}": typeof types.RemoveContentValidationRuleDocument;
|
|
79
|
+
"mutation updateAllowedValuesContentValidationRule($input: UpdateAllowedValuesContentValidationRuleInput!) {\n updateAllowedValuesContentValidationRule(input: $input) {\n ...contentValidationRuleFragment\n }\n}": typeof types.UpdateAllowedValuesContentValidationRuleDocument;
|
|
80
|
+
"mutation updateCountValidationRule($input: UpdateCountContentValidationRuleInput!) {\n updateCountContentValidationRule(input: $input) {\n ...contentValidationRuleFragment\n }\n}": typeof types.UpdateCountValidationRuleDocument;
|
|
81
|
+
"mutation updateDateBetweenContentValidationRule($input: UpdateDateBetweenContentValidationRuleInput!) {\n updateDateBetweenContentValidationRule(input: $input) {\n ...contentValidationRuleFragment\n }\n}": typeof types.UpdateDateBetweenContentValidationRuleDocument;
|
|
82
|
+
"mutation updateDecimalCountContentValidationRule($input: UpdateDecimalCountContentValidationRuleInput!) {\n updateDecimalCountContentValidationRule(input: $input) {\n ...contentValidationRuleFragment\n }\n}": typeof types.UpdateDecimalCountContentValidationRuleDocument;
|
|
83
|
+
"mutation updateNumberBetweenContentValidationRule($input: UpdateNumberBetweenContentValidationRuleInput!) {\n updateNumberBetweenContentValidationRule(input: $input) {\n ...contentValidationRuleFragment\n }\n}": typeof types.UpdateNumberBetweenContentValidationRuleDocument;
|
|
84
|
+
"mutation updateRelatableContentTypesContentValidationRule($input: UpdateRelatableContentTypesContentValidationRuleInput!) {\n updateRelatableContentTypesContentValidationRule(input: $input) {\n ...contentValidationRuleFragment\n }\n}": typeof types.UpdateRelatableContentTypesContentValidationRuleDocument;
|
|
85
|
+
"mutation updateStringFormatContentValidationRule($input: UpdateStringFormatContentValidationRuleInput!) {\n updateStringFormatContentValidationRule(input: $input) {\n ...contentValidationRuleFragment\n }\n}": typeof types.UpdateStringFormatContentValidationRuleDocument;
|
|
86
|
+
"mutation updateValueTypeValidationRule($input: UpdateValueTypeContentValidationRuleInput!) {\n updateValueTypeContentValidationRule(input: $input) {\n ...contentValidationRuleFragment\n }\n}": typeof types.UpdateValueTypeValidationRuleDocument;
|
|
87
|
+
"query allContentValues($paginate: PaginationOptionsInput!, $where: [ContentValuesFilterInput!], $orderBy: OrderOptionsInput) {\n contentValues(paginate: $paginate, where: $where, orderBy: $orderBy) {\n pageInfo {\n ...pagination\n }\n totalCount\n edges {\n cursor\n node {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n contentItem {\n ...contentItemFragment\n contentType {\n ...contentTypeFragment\n }\n }\n relatedAsset {\n ...assetFragment\n }\n linkedGridPlacement {\n ...gridPlacementFragment\n }\n linkedPathPart {\n ...pathPartFragment\n }\n relatedContentItem {\n ...contentItemFragment\n }\n }\n }\n }\n}": typeof types.AllContentValuesDocument;
|
|
88
|
+
"fragment contentValueFragment on ContentValue {\n _id: prn\n prn\n primitiveValue\n interpolatedSmartText\n isReusable\n createdAt\n updatedAt\n}": typeof types.ContentValueFragmentFragmentDoc;
|
|
89
|
+
"mutation createContentValue($createContentValueInput: [CreateContentValueInput!]!) {\n createContentValue(input: $createContentValueInput) {\n ...contentValueFragment\n relatedAsset {\n ...assetFragment\n }\n relatedContentItem {\n ...contentItemFragment\n }\n linkedGridPlacement {\n ...gridPlacementFragment\n }\n linkedPathPart {\n ...pathPartFragment\n }\n }\n}": typeof types.CreateContentValueDocument;
|
|
90
|
+
"mutation removeContentValue($prn: [PRN!]!) {\n removeContentValue(prn: $prn) {\n _id: prn\n prn\n primitiveValue\n interpolatedSmartText\n isReusable\n createdAt\n updatedAt\n }\n}": typeof types.RemoveContentValueDocument;
|
|
91
|
+
"mutation updateContentValue($updateContentValueInput: [UpdateContentValueInput!]!) {\n updateContentValue(input: $updateContentValueInput) {\n ...contentValueFragment\n }\n}": typeof types.UpdateContentValueDocument;
|
|
92
|
+
"mutation createExperienceComponent($input: [CreateExperienceComponentInput!]!) {\n createExperienceComponent(input: $input) {\n ...experienceComponentFragment\n buildingBlock {\n ...buildingBlockFragment\n buildingBlockFields {\n ...buildingBlockFieldFragment\n }\n }\n buildingBlockFieldFulfillments {\n ...buildingBlockFieldFulfillmentFragment\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n contentValue {\n ...contentValueFragment\n relatedAsset {\n ...assetFragment\n }\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n }\n }\n }\n }\n }\n}": typeof types.CreateExperienceComponentDocument;
|
|
93
|
+
"mutation createGlobalExperienceComponent($input: [CreateGlobalExperienceComponentInput!]!) {\n createGlobalExperienceComponent(input: $input) {\n ...experienceComponentFragment\n buildingBlock {\n ...buildingBlockFragment\n }\n }\n}": typeof types.CreateGlobalExperienceComponentDocument;
|
|
94
|
+
"fragment experienceComponentFragment on ExperienceComponent {\n _id: prn\n prn\n stage\n name\n isDraft\n preview {\n ...assetFragment\n }\n isGlobal\n createdAt\n updatedAt\n}": typeof types.ExperienceComponentFragmentFragmentDoc;
|
|
95
|
+
"query ExperienceComponent($prn: [PRN!]!) {\n experienceComponent(prn: $prn) {\n ...experienceComponentFragment\n gridPlacements {\n grid {\n experienceComponent {\n contentExperience {\n ...contentExperienceFragment\n }\n }\n }\n }\n buildingBlock {\n ...buildingBlockFragment\n buildingBlockFields {\n ...buildingBlockFieldFragment\n }\n }\n buildingBlockFieldFulfillments {\n ...buildingBlockFieldFulfillmentFragment\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n contentValue {\n ...contentValueFragment\n relatedAsset {\n ...assetFragment\n }\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n }\n }\n contentItem {\n prn\n }\n }\n }\n }\n}": typeof types.ExperienceComponentDocument;
|
|
96
|
+
"query ExperienceComponents($paginate: PaginationOptionsInput!, $where: [ExperienceComponentsFilterInput!]) {\n experienceComponents(paginate: $paginate, where: $where) {\n totalCount\n edges {\n cursor\n node {\n ...experienceComponentFragment\n gridPlacements {\n grid {\n experienceComponent {\n contentExperience {\n ...contentExperienceFragment\n }\n }\n }\n }\n buildingBlock {\n ...buildingBlockFragment\n }\n }\n }\n pageInfo {\n ...pagination\n }\n }\n}": typeof types.ExperienceComponentsDocument;
|
|
97
|
+
"mutation RemoveExperienceComponent($prn: [PRN!]!) {\n removeExperienceComponent(prn: $prn) {\n _id: prn\n prn\n stage\n name\n isDraft\n isGlobal\n createdAt\n updatedAt\n }\n}": typeof types.RemoveExperienceComponentDocument;
|
|
98
|
+
"mutation updateExperienceComponent($input: [UpdateExperienceComponentInput!]!) {\n updateExperienceComponent(input: $input) {\n ...experienceComponentFragment\n buildingBlock {\n ...buildingBlockFragment\n buildingBlockFields {\n ...buildingBlockFieldFragment\n }\n }\n buildingBlockFieldFulfillments {\n ...buildingBlockFieldFulfillmentFragment\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n contentValue {\n ...contentValueFragment\n relatedAsset {\n ...assetFragment\n }\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n }\n }\n contentItem {\n prn\n }\n }\n }\n }\n}": typeof types.UpdateExperienceComponentDocument;
|
|
99
|
+
"fragment pagination on PageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n}": typeof types.PaginationFragmentDoc;
|
|
100
|
+
"mutation createGridDefinition($input: [CreateGridDefinitionInput!]!) {\n createGridDefinition(input: $input) {\n ...gridDefinitionFragment\n }\n}": typeof types.CreateGridDefinitionDocument;
|
|
101
|
+
"fragment gridDefinitionFragment on GridDefinition {\n _id: prn\n prn\n maxRows\n}": typeof types.GridDefinitionFragmentFragmentDoc;
|
|
102
|
+
"mutation createGridPlacement($input: [CreateGridPlacementInput!]!) {\n createGridPlacement(input: $input) {\n ...gridPlacementFragment\n experienceComponent {\n ...experienceComponentFragment\n buildingBlock {\n ...buildingBlockFragment\n buildingBlockFields {\n ...buildingBlockFieldFragment\n }\n }\n buildingBlockFieldFulfillments {\n ...buildingBlockFieldFulfillmentFragment\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n contentValue {\n ...contentValueFragment\n relatedAsset {\n ...assetFragment\n }\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n }\n }\n }\n }\n }\n }\n}": typeof types.CreateGridPlacementDocument;
|
|
103
|
+
"fragment gridPlacementFragment on GridPlacement {\n _id: prn\n prn\n row\n updatedAt\n createdAt\n}": typeof types.GridPlacementFragmentFragmentDoc;
|
|
104
|
+
"mutation RemoveGridPlacement($prn: [PRN!]!) {\n removeGridPlacement(prn: $prn) {\n ...gridPlacementFragment\n }\n}": typeof types.RemoveGridPlacementDocument;
|
|
105
|
+
"mutation UpdateGridPlacement($input: [UpdateGridPlacementInput!]!) {\n updateGridPlacement(input: $input) {\n ...gridPlacementFragment\n experienceComponent {\n ...experienceComponentFragment\n }\n }\n}": typeof types.UpdateGridPlacementDocument;
|
|
106
|
+
"fragment gridFragment on Grid {\n _id: prn\n prn\n rows\n updatedAt\n createdAt\n}": typeof types.GridFragmentFragmentDoc;
|
|
107
|
+
"mutation acceptInvitation($handleInvitationInput: HandleInvitationInput!) {\n acceptInvitation(input: $handleInvitationInput) {\n ...roleAssignmentFragment\n role {\n createdAt\n name\n prn\n updatedAt\n }\n }\n}": typeof types.AcceptInvitationDocument;
|
|
108
|
+
"mutation createInvitation($createInvitationInput: [CreateInvitationInput!]!) {\n createInvitation(input: $createInvitationInput) {\n ...invitationFragment\n role {\n ...roleFragment\n organization {\n ...organizationFragment\n }\n }\n }\n}": typeof types.CreateInvitationDocument;
|
|
109
|
+
"mutation declineInvitation($handleInvitationInput: HandleInvitationInput!) {\n declineInvitation(input: $handleInvitationInput) {\n ...invitationFragment\n }\n}": typeof types.DeclineInvitationDocument;
|
|
110
|
+
"fragment invitationFragment on Invitation {\n _id: prn\n prn\n userEmail\n createdAt\n updatedAt\n}": typeof types.InvitationFragmentFragmentDoc;
|
|
111
|
+
"query invitationsForCurrentSubject {\n invitationsForCurrentSubject {\n ...invitationFragment\n role {\n ...roleFragment\n organization {\n ...organizationFragment\n }\n }\n }\n}": typeof types.InvitationsForCurrentSubjectDocument;
|
|
112
|
+
"query invitationsForOrganization {\n invitationsForOrganization {\n ...invitationFragment\n role {\n ...roleFragment\n }\n }\n}": typeof types.InvitationsForOrganizationDocument;
|
|
113
|
+
"mutation removeInvitation($prn: [PRN!]!) {\n removeInvitation(prn: $prn) {\n ...invitationFragment\n }\n}": typeof types.RemoveInvitationDocument;
|
|
114
|
+
"mutation createOrganization($createOrganizationInput: CreateOrganizationInput!) {\n createOrganization(input: $createOrganizationInput) {\n ...organizationFragment\n }\n}": typeof types.CreateOrganizationDocument;
|
|
115
|
+
"query isOrganizationSeeding($prn: [PRN!]!) {\n organization(prn: $prn) {\n seedStatus\n }\n}": typeof types.IsOrganizationSeedingDocument;
|
|
116
|
+
"fragment organizationFragment on Organization {\n _id: prn\n prn\n name\n slug\n logo {\n ...assetFragment\n processedUrls(optionsList: [{width: 32, height: 32}])\n }\n logoUrl\n seedStatus\n createdAt\n updatedAt\n}": typeof types.OrganizationFragmentFragmentDoc;
|
|
117
|
+
"mutation removeOrganization($prn: [PRN!]!) {\n removeOrganization(prn: $prn) {\n _id: prn\n prn\n name\n slug\n logoUrl\n seedStatus\n createdAt\n updatedAt\n }\n}": typeof types.RemoveOrganizationDocument;
|
|
118
|
+
"query rolesOfOrganization($prn: [PRN!]!) {\n organization(prn: $prn) {\n prn\n roles {\n ...roleFragment\n }\n }\n}": typeof types.RolesOfOrganizationDocument;
|
|
119
|
+
"query organization($prn: [PRN!]!) {\n organization(prn: $prn) {\n ...organizationFragment\n roles {\n ...roleFragment\n roleAssignments {\n ...roleAssignmentFragment\n subject {\n ...subjectFields\n }\n }\n invitations {\n ...invitationFragment\n }\n }\n }\n}": typeof types.OrganizationDocument;
|
|
120
|
+
"mutation updateOrganization($updateOrganizationInput: [UpdateOrganizationInput!]!) {\n updateOrganization(input: $updateOrganizationInput) {\n ...organizationFragment\n }\n}": typeof types.UpdateOrganizationDocument;
|
|
121
|
+
"mutation createPathPartFromParent($input: [CreatePathPartFromParentInput!]!) {\n createPathPartFromParent(input: $input) {\n ...pathPartFragment\n }\n}": typeof types.CreatePathPartFromParentDocument;
|
|
122
|
+
"mutation createPathPartFromPath($input: [CreatePathPartFromPathInput!]!) {\n createPathPartFromPath(input: $input) {\n ...pathPartFragment\n }\n}": typeof types.CreatePathPartFromPathDocument;
|
|
123
|
+
"query detailedPathPart($prn: [PRN!]!) {\n pathPart(prn: $prn) {\n ...pathPartFragment\n contentExperience {\n prn\n }\n parent {\n ...pathPartFragment\n }\n children {\n ...pathPartFragment\n parent {\n prn\n }\n }\n }\n}": typeof types.DetailedPathPartDocument;
|
|
124
|
+
"query pathPart($prn: [PRN!]!) {\n pathPart(prn: $prn) {\n ...pathPartFragment\n contentExperience {\n prn\n }\n parent {\n ...pathPartFragment\n }\n }\n}": typeof types.PathPartDocument;
|
|
125
|
+
"fragment pathPartFragment on PathPart {\n _id: prn\n prn\n slug\n path\n createdAt\n updatedAt\n channel {\n prn\n }\n hasContentExperience\n amountOfChildren\n amountOfChildrenWithContentExperiences\n amountOfDescendants\n amountOfDescendantsWithContentExperiences\n contentExperience {\n prn\n }\n}": typeof types.PathPartFragmentFragmentDoc;
|
|
126
|
+
"query pathParts($paginate: PaginationOptionsInput!, $where: [PathPartsFilterInput!], $orderBy: OrderOptionsInput, $optionsList: [ProcessedAssetOptionsInput!]!) {\n pathParts(paginate: $paginate, where: $where, orderBy: $orderBy) {\n pageInfo {\n ...pagination\n }\n totalCount\n edges {\n cursor\n node {\n ...pathPartFragment\n channel {\n ...channelFragment\n }\n contentExperience {\n ...contentExperienceFragment\n preview {\n ...assetFragment\n processedUrls(optionsList: $optionsList)\n }\n }\n }\n }\n }\n}": typeof types.PathPartsDocument;
|
|
127
|
+
"mutation removePathPart($prn: [PRN!]!) {\n removePathPart(prn: $prn) {\n ...pathPartFragment\n }\n}": typeof types.RemovePathPartDocument;
|
|
128
|
+
"mutation updatePathPart($input: [UpdatePathPartInput!]!) {\n updatePathPart(input: $input) {\n ...pathPartFragment\n }\n}": typeof types.UpdatePathPartDocument;
|
|
129
|
+
"mutation updatePathPartFromPath($input: [UpdatePathPartByPathInput!]!) {\n updatePathPartFromPath(input: $input) {\n ...pathPartFragment\n }\n}": typeof types.UpdatePathPartFromPathDocument;
|
|
130
|
+
"mutation addPlateMaintainer($email: String!) {\n addPlateMaintainer(email: $email) {\n ...plateMaintainerFragment\n }\n}": typeof types.AddPlateMaintainerDocument;
|
|
131
|
+
"query allPlateMaintainers {\n plateMaintainers {\n ...plateMaintainerFragment\n }\n}": typeof types.AllPlateMaintainersDocument;
|
|
132
|
+
"fragment plateMaintainerFragment on Subject {\n _id: id\n id\n name {\n first\n last\n }\n language\n email\n}": typeof types.PlateMaintainerFragmentFragmentDoc;
|
|
133
|
+
"mutation removePlateMaintainer($removePlateMaintainerId: String!) {\n removePlateMaintainer(id: $removePlateMaintainerId) {\n id\n }\n}": typeof types.RemovePlateMaintainerDocument;
|
|
134
|
+
"mutation removeRoleAssignment($prn: [PRN!]!) {\n removeRoleAssignment(prn: $prn) {\n ...roleAssignmentFragment\n role {\n createdAt\n name\n prn\n updatedAt\n }\n }\n}": typeof types.RemoveRoleAssignmentDocument;
|
|
135
|
+
"fragment roleAssignmentFragment on RoleAssignment {\n _id: prn\n prn\n subject {\n id\n }\n createdAt\n updatedAt\n}": typeof types.RoleAssignmentFragmentFragmentDoc;
|
|
136
|
+
"query RoleAssignmentsForCurrentSubject {\n roleAssignmentsForCurrentSubject {\n ...roleAssignmentFragment\n role {\n ...roleFragment\n organization {\n ...organizationFragment\n }\n }\n }\n}": typeof types.RoleAssignmentsForCurrentSubjectDocument;
|
|
137
|
+
"query roleAssignmentsForOrganization {\n roleAssignmentsForOrganization {\n ...roleAssignmentFragment\n role {\n ...roleFragment\n }\n subject {\n ...subjectFields\n }\n }\n}": typeof types.RoleAssignmentsForOrganizationDocument;
|
|
138
|
+
"fragment roleFragment on Role {\n _id: prn\n prn\n name\n createdAt\n updatedAt\n}": typeof types.RoleFragmentFragmentDoc;
|
|
139
|
+
"mutation runSeeder($seedType: SeedType!) {\n runSeeder(seedType: $seedType)\n}": typeof types.RunSeederDocument;
|
|
140
|
+
"query CurrentSubject {\n currentSubject {\n id\n email\n isPlateMaintainer\n language\n name {\n first\n last\n }\n roleAssignments {\n ...roleAssignmentFragment\n }\n }\n}": typeof types.CurrentSubjectDocument;
|
|
141
|
+
"fragment subjectFields on Subject {\n _id: id\n email\n name {\n first\n last\n }\n}": typeof types.SubjectFieldsFragmentDoc;
|
|
142
|
+
"mutation createTag($createTagInput: [CreateTagInput!]!) {\n createTag(input: $createTagInput) {\n ...tagFragment\n }\n}": typeof types.CreateTagDocument;
|
|
143
|
+
"mutation removeTag($prn: [PRN!]!) {\n removeTag(prn: $prn) {\n ...tagFragment\n }\n}": typeof types.RemoveTagDocument;
|
|
144
|
+
"query tag($prn: [PRN!]!) {\n tag(prn: $prn) {\n ...tagFragment\n children {\n ...tagFragment\n }\n parent {\n ...tagFragment\n }\n }\n}": typeof types.TagDocument;
|
|
145
|
+
"fragment tagFragment on Tag {\n _id: prn\n prn\n name\n path\n color\n visibility\n forceVisibilityOnDescendants\n stage\n amountOfChildren\n amountOfContentExperiences\n amountOfContentItems\n hasForcedVisibility\n nestingLevel\n createdAt\n updatedAt\n}": typeof types.TagFragmentFragmentDoc;
|
|
146
|
+
"query tags($paginate: PaginationOptionsInput!, $where: [TagsFilterInput!], $orderBy: OrderOptionsInput) {\n tags(paginate: $paginate, where: $where, orderBy: $orderBy) {\n pageInfo {\n ...pagination\n }\n totalCount\n edges {\n cursor\n node {\n ...tagFragment\n parent {\n prn\n forceVisibilityOnDescendants\n }\n }\n }\n }\n}": typeof types.TagsDocument;
|
|
147
|
+
"mutation updateTag($updateTagInput: [UpdateTagInput!]!) {\n updateTag(input: $updateTagInput) {\n ...tagFragment\n }\n}": typeof types.UpdateTagDocument;
|
|
148
|
+
"mutation CreateTheme($input: [CreateThemeInput!]!) {\n createTheme(input: $input) {\n ...themeFragment\n }\n}": typeof types.CreateThemeDocument;
|
|
149
|
+
"mutation RemoveTheme($prn: [PRN!]!) {\n removeTheme(prn: $prn) {\n ...themeFragment\n }\n}": typeof types.RemoveThemeDocument;
|
|
150
|
+
"query Theme($prn: [PRN!]!, $whereBuildingBlocks: [BuildingBlocksFilterInput!]) {\n theme(prn: $prn) {\n ...themeFragment\n buildingBlocks(where: $whereBuildingBlocks) {\n ...buildingBlockFragment\n buildingBlockFields {\n ...buildingBlockFieldFragment\n }\n }\n }\n}": typeof types.ThemeDocument;
|
|
151
|
+
"fragment themeFragment on Theme {\n _id: prn\n prn\n name\n repositoryUrl\n createdAt\n updatedAt\n}": typeof types.ThemeFragmentFragmentDoc;
|
|
152
|
+
"query Themes($paginate: PaginationOptionsInput!, $orderBy: OrderOptionsInput, $where: [ThemesFilterInput!]) {\n themes(paginate: $paginate, orderBy: $orderBy, where: $where) {\n edges {\n cursor\n node {\n ...themeFragment\n }\n }\n pageInfo {\n ...pagination\n }\n totalCount\n }\n}": typeof types.ThemesDocument;
|
|
153
|
+
"mutation UpdateTheme($input: [UpdateThemeInput!]!) {\n updateTheme(input: $input) {\n ...themeFragment\n }\n}": typeof types.UpdateThemeDocument;
|
|
154
|
+
};
|
|
155
|
+
declare const documents: Documents;
|
|
2
156
|
export declare function graphql(source: string): unknown;
|
|
157
|
+
export declare function graphql(source: "query ApiToken($prn: [PRN!]!) {\n apiToken(prn: $prn) {\n ...apiTokenFragment\n channel {\n ...channelFragment\n }\n }\n}"): (typeof documents)["query ApiToken($prn: [PRN!]!) {\n apiToken(prn: $prn) {\n ...apiTokenFragment\n channel {\n ...channelFragment\n }\n }\n}"];
|
|
158
|
+
export declare function graphql(source: "fragment apiTokenFragment on ApiToken {\n _id: prn\n prn\n name\n stage\n createdAt\n updatedAt\n}"): (typeof documents)["fragment apiTokenFragment on ApiToken {\n _id: prn\n prn\n name\n stage\n createdAt\n updatedAt\n}"];
|
|
159
|
+
export declare function graphql(source: "query ApiTokens($orderBy: OrderOptionsInput) {\n apiTokens(orderBy: $orderBy) {\n ...apiTokenFragment\n channel {\n ...channelFragment\n }\n }\n}"): (typeof documents)["query ApiTokens($orderBy: OrderOptionsInput) {\n apiTokens(orderBy: $orderBy) {\n ...apiTokenFragment\n channel {\n ...channelFragment\n }\n }\n}"];
|
|
160
|
+
export declare function graphql(source: "mutation CreateApiToken($input: [CreateApiTokenInput!]!) {\n createApiToken(input: $input) {\n _id: prn\n prn\n name\n stage\n channel {\n ...channelFragment\n }\n createdAt\n updatedAt\n token\n }\n}"): (typeof documents)["mutation CreateApiToken($input: [CreateApiTokenInput!]!) {\n createApiToken(input: $input) {\n _id: prn\n prn\n name\n stage\n channel {\n ...channelFragment\n }\n createdAt\n updatedAt\n token\n }\n}"];
|
|
161
|
+
export declare function graphql(source: "mutation RemoveApiToken($prn: [PRN!]!) {\n removeApiToken(prn: $prn) {\n prn\n }\n}"): (typeof documents)["mutation RemoveApiToken($prn: [PRN!]!) {\n removeApiToken(prn: $prn) {\n prn\n }\n}"];
|
|
162
|
+
export declare function graphql(source: "mutation UpdateApiToken($input: [UpdateApiTokenInput!]!) {\n updateApiToken(input: $input) {\n ...apiTokenFragment\n }\n}"): (typeof documents)["mutation UpdateApiToken($input: [UpdateApiTokenInput!]!) {\n updateApiToken(input: $input) {\n ...apiTokenFragment\n }\n}"];
|
|
163
|
+
export declare function graphql(source: "fragment assetFragment on Asset {\n _id: prn\n prn\n fileName\n fileSize\n mimeType\n url\n createdAt\n updatedAt\n}"): (typeof documents)["fragment assetFragment on Asset {\n _id: prn\n prn\n fileName\n fileSize\n mimeType\n url\n createdAt\n updatedAt\n}"];
|
|
164
|
+
export declare function graphql(source: "mutation ConfirmAssetUpload($prn: [PRN!]!) {\n confirmAssetUpload(prn: $prn) {\n createdAt\n fileName\n fileSize\n mimeType\n prn\n updatedAt\n url\n }\n}"): (typeof documents)["mutation ConfirmAssetUpload($prn: [PRN!]!) {\n confirmAssetUpload(prn: $prn) {\n createdAt\n fileName\n fileSize\n mimeType\n prn\n updatedAt\n url\n }\n}"];
|
|
165
|
+
export declare function graphql(source: "mutation GenerateAssetUploadUrl($input: [GenerateAssetUploadUrlInput!]!) {\n generateAssetUploadUrl(input: $input) {\n prn\n url\n }\n}"): (typeof documents)["mutation GenerateAssetUploadUrl($input: [GenerateAssetUploadUrlInput!]!) {\n generateAssetUploadUrl(input: $input) {\n prn\n url\n }\n}"];
|
|
166
|
+
export declare function graphql(source: "fragment blueprintFragment on Blueprint {\n _id: prn\n prn\n name\n definedBy {\n prn\n createdAt\n updatedAt\n grid {\n ...gridFragment\n gridPlacements {\n ...gridPlacementFragment\n experienceComponent {\n ...experienceComponentFragment\n buildingBlock {\n ...buildingBlockFragment\n buildingBlockFields {\n ...buildingBlockFieldFragment\n }\n }\n buildingBlockFieldFulfillments {\n ...buildingBlockFieldFulfillmentFragment\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n contentValue {\n ...contentValueFragment\n relatedAsset {\n ...assetFragment\n }\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n }\n }\n contentItem {\n prn\n }\n }\n }\n }\n }\n }\n }\n isFixed\n createdAt\n updatedAt\n}"): (typeof documents)["fragment blueprintFragment on Blueprint {\n _id: prn\n prn\n name\n definedBy {\n prn\n createdAt\n updatedAt\n grid {\n ...gridFragment\n gridPlacements {\n ...gridPlacementFragment\n experienceComponent {\n ...experienceComponentFragment\n buildingBlock {\n ...buildingBlockFragment\n buildingBlockFields {\n ...buildingBlockFieldFragment\n }\n }\n buildingBlockFieldFulfillments {\n ...buildingBlockFieldFulfillmentFragment\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n contentValue {\n ...contentValueFragment\n relatedAsset {\n ...assetFragment\n }\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n }\n }\n contentItem {\n prn\n }\n }\n }\n }\n }\n }\n }\n isFixed\n createdAt\n updatedAt\n}"];
|
|
167
|
+
export declare function graphql(source: "query Blueprints($paginate: PaginationOptionsInput!, $orderBy: OrderOptionsInput, $where: [BlueprintsFilterInput!]) {\n blueprints(paginate: $paginate, orderBy: $orderBy, where: $where) {\n totalCount\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n edges {\n cursor\n node {\n ...blueprintFragment\n channel {\n defaultBlueprint {\n prn\n }\n ...channelFragment\n }\n }\n }\n }\n}"): (typeof documents)["query Blueprints($paginate: PaginationOptionsInput!, $orderBy: OrderOptionsInput, $where: [BlueprintsFilterInput!]) {\n blueprints(paginate: $paginate, orderBy: $orderBy, where: $where) {\n totalCount\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n edges {\n cursor\n node {\n ...blueprintFragment\n channel {\n defaultBlueprint {\n prn\n }\n ...channelFragment\n }\n }\n }\n }\n}"];
|
|
168
|
+
export declare function graphql(source: "mutation CopyBlueprint($input: [CopyBlueprintInput!]!) {\n copyBlueprint(input: $input) {\n prn\n }\n}"): (typeof documents)["mutation CopyBlueprint($input: [CopyBlueprintInput!]!) {\n copyBlueprint(input: $input) {\n prn\n }\n}"];
|
|
169
|
+
export declare function graphql(source: "mutation CreateBlueprint($input: [CreateBlueprintInput!]!) {\n createBlueprint(input: $input) {\n ...blueprintFragment\n channel {\n ...channelFragment\n defaultBlueprint {\n prn\n }\n }\n }\n}"): (typeof documents)["mutation CreateBlueprint($input: [CreateBlueprintInput!]!) {\n createBlueprint(input: $input) {\n ...blueprintFragment\n channel {\n ...channelFragment\n defaultBlueprint {\n prn\n }\n }\n }\n}"];
|
|
170
|
+
export declare function graphql(source: "mutation CreateBlueprintFromContentExperience($input: [CreateBlueprintFromContentExperienceInput!]!) {\n createBlueprintFromContentExperience(input: $input) {\n ...blueprintFragment\n }\n}"): (typeof documents)["mutation CreateBlueprintFromContentExperience($input: [CreateBlueprintFromContentExperienceInput!]!) {\n createBlueprintFromContentExperience(input: $input) {\n ...blueprintFragment\n }\n}"];
|
|
171
|
+
export declare function graphql(source: "mutation RemoveBlueprint($input: [RemoveBlueprintInput!]!) {\n removeBlueprint(input: $input) {\n _id: prn\n prn\n name\n isFixed\n createdAt\n updatedAt\n }\n}"): (typeof documents)["mutation RemoveBlueprint($input: [RemoveBlueprintInput!]!) {\n removeBlueprint(input: $input) {\n _id: prn\n prn\n name\n isFixed\n createdAt\n updatedAt\n }\n}"];
|
|
172
|
+
export declare function graphql(source: "query SingleBlueprint($prn: [PRN!]!) {\n blueprint(prn: $prn) {\n _id: prn\n prn\n isFixed\n name\n createdAt\n updatedAt\n channel {\n ...channelFragment\n theme {\n ...themeFragment\n }\n rootPathPart {\n ...pathPartFragment\n }\n }\n definedBy {\n blueprintedInstances {\n contentExperience {\n prn\n title\n slug\n }\n }\n prn\n createdAt\n updatedAt\n grid {\n ...gridFragment\n gridPlacements {\n ...gridPlacementFragment\n experienceComponent {\n ...experienceComponentFragment\n buildingBlock {\n ...buildingBlockFragment\n buildingBlockFields {\n ...buildingBlockFieldFragment\n }\n }\n buildingBlockFieldFulfillments {\n ...buildingBlockFieldFulfillmentFragment\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n contentValue {\n ...contentValueFragment\n relatedAsset {\n ...assetFragment\n }\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n }\n }\n contentItem {\n prn\n }\n }\n }\n }\n }\n }\n }\n }\n}"): (typeof documents)["query SingleBlueprint($prn: [PRN!]!) {\n blueprint(prn: $prn) {\n _id: prn\n prn\n isFixed\n name\n createdAt\n updatedAt\n channel {\n ...channelFragment\n theme {\n ...themeFragment\n }\n rootPathPart {\n ...pathPartFragment\n }\n }\n definedBy {\n blueprintedInstances {\n contentExperience {\n prn\n title\n slug\n }\n }\n prn\n createdAt\n updatedAt\n grid {\n ...gridFragment\n gridPlacements {\n ...gridPlacementFragment\n experienceComponent {\n ...experienceComponentFragment\n buildingBlock {\n ...buildingBlockFragment\n buildingBlockFields {\n ...buildingBlockFieldFragment\n }\n }\n buildingBlockFieldFulfillments {\n ...buildingBlockFieldFulfillmentFragment\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n contentValue {\n ...contentValueFragment\n relatedAsset {\n ...assetFragment\n }\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n }\n }\n contentItem {\n prn\n }\n }\n }\n }\n }\n }\n }\n }\n}"];
|
|
173
|
+
export declare function graphql(source: "mutation SyncBlueprint($prn: [PRN!]!) {\n syncBlueprint(prn: $prn)\n}"): (typeof documents)["mutation SyncBlueprint($prn: [PRN!]!) {\n syncBlueprint(prn: $prn)\n}"];
|
|
174
|
+
export declare function graphql(source: "mutation UpdateBlueprint($input: [UpdateBlueprintInput!]!) {\n updateBlueprint(input: $input) {\n ...blueprintFragment\n }\n}"): (typeof documents)["mutation UpdateBlueprint($input: [UpdateBlueprintInput!]!) {\n updateBlueprint(input: $input) {\n ...blueprintFragment\n }\n}"];
|
|
175
|
+
export declare function graphql(source: "fragment buildingBlockFieldFulfillmentFragment on BuildingBlockFieldFulfillment {\n _id: prn\n prn\n createdAt\n updatedAt\n}"): (typeof documents)["fragment buildingBlockFieldFulfillmentFragment on BuildingBlockFieldFulfillment {\n _id: prn\n prn\n createdAt\n updatedAt\n}"];
|
|
176
|
+
export declare function graphql(source: "mutation CreateBuildingBlockFieldFulfillments($input: [CreateBuildingBlockFieldFulfillmentInput!]!) {\n createBuildingBlockFieldFulfillment(input: $input) {\n ...buildingBlockFieldFulfillmentFragment\n contentValue {\n ...contentValueFragment\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n relatedAsset {\n ...assetFragment\n }\n }\n }\n contentItem {\n prn\n }\n }\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n }\n}"): (typeof documents)["mutation CreateBuildingBlockFieldFulfillments($input: [CreateBuildingBlockFieldFulfillmentInput!]!) {\n createBuildingBlockFieldFulfillment(input: $input) {\n ...buildingBlockFieldFulfillmentFragment\n contentValue {\n ...contentValueFragment\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n relatedAsset {\n ...assetFragment\n }\n }\n }\n contentItem {\n prn\n }\n }\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n }\n}"];
|
|
177
|
+
export declare function graphql(source: "mutation RemoveBuildingBlockFieldFulfillment($input: [PRN!]!) {\n removeBuildingBlockFieldFulfillment(prn: $input) {\n ...buildingBlockFieldFulfillmentFragment\n contentValue {\n ...contentValueFragment\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n relatedAsset {\n ...assetFragment\n }\n }\n }\n contentItem {\n prn\n }\n }\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n }\n}"): (typeof documents)["mutation RemoveBuildingBlockFieldFulfillment($input: [PRN!]!) {\n removeBuildingBlockFieldFulfillment(prn: $input) {\n ...buildingBlockFieldFulfillmentFragment\n contentValue {\n ...contentValueFragment\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n relatedAsset {\n ...assetFragment\n }\n }\n }\n contentItem {\n prn\n }\n }\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n }\n}"];
|
|
178
|
+
export declare function graphql(source: "mutation UpdateBuildingBlockFieldFulfillment($input: [UpdateBuildingBlockFieldFulfillmentInput!]!) {\n updateBuildingBlockFieldFulfillment(input: $input) {\n ...buildingBlockFieldFulfillmentFragment\n contentValue {\n ...contentValueFragment\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n relatedAsset {\n ...assetFragment\n }\n }\n }\n contentItem {\n prn\n }\n }\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n }\n}"): (typeof documents)["mutation UpdateBuildingBlockFieldFulfillment($input: [UpdateBuildingBlockFieldFulfillmentInput!]!) {\n updateBuildingBlockFieldFulfillment(input: $input) {\n ...buildingBlockFieldFulfillmentFragment\n contentValue {\n ...contentValueFragment\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n relatedAsset {\n ...assetFragment\n }\n }\n }\n contentItem {\n prn\n }\n }\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n }\n}"];
|
|
179
|
+
export declare function graphql(source: "fragment buildingBlockFieldFragment on BuildingBlockField {\n _id: prn\n prn\n slug\n title\n createdAt\n updatedAt\n contentValidationRules {\n ...contentValidationRuleFragment\n }\n}"): (typeof documents)["fragment buildingBlockFieldFragment on BuildingBlockField {\n _id: prn\n prn\n slug\n title\n createdAt\n updatedAt\n contentValidationRules {\n ...contentValidationRuleFragment\n }\n}"];
|
|
180
|
+
export declare function graphql(source: "mutation CreateBuildingBlockField($input: [CreateBuildingBlockFieldInput!]!) {\n createBuildingBlockField(input: $input) {\n ...buildingBlockFieldFragment\n }\n}"): (typeof documents)["mutation CreateBuildingBlockField($input: [CreateBuildingBlockFieldInput!]!) {\n createBuildingBlockField(input: $input) {\n ...buildingBlockFieldFragment\n }\n}"];
|
|
181
|
+
export declare function graphql(source: "mutation RemoveBuildingBlockField($prn: [PRN!]!) {\n removeBuildingBlockField(prn: $prn) {\n ...buildingBlockFieldFragment\n }\n}"): (typeof documents)["mutation RemoveBuildingBlockField($prn: [PRN!]!) {\n removeBuildingBlockField(prn: $prn) {\n ...buildingBlockFieldFragment\n }\n}"];
|
|
182
|
+
export declare function graphql(source: "mutation UpdateBuildingBlockField($input: [UpdateBuildingBlockFieldInput!]!) {\n updateBuildingBlockField(input: $input) {\n ...buildingBlockFieldFragment\n }\n}"): (typeof documents)["mutation UpdateBuildingBlockField($input: [UpdateBuildingBlockFieldInput!]!) {\n updateBuildingBlockField(input: $input) {\n ...buildingBlockFieldFragment\n }\n}"];
|
|
183
|
+
export declare function graphql(source: "query BuildingBlock($prn: [PRN!]!) {\n buildingBlock(prn: $prn) {\n ...buildingBlockFragment\n buildingBlockFields {\n ...buildingBlockFieldFragment\n }\n }\n}"): (typeof documents)["query BuildingBlock($prn: [PRN!]!) {\n buildingBlock(prn: $prn) {\n ...buildingBlockFragment\n buildingBlockFields {\n ...buildingBlockFieldFragment\n }\n }\n}"];
|
|
184
|
+
export declare function graphql(source: "fragment buildingBlockFragment on BuildingBlock {\n _id: prn\n prn\n slug\n title\n preview {\n ...assetFragment\n }\n createdAt\n updatedAt\n}"): (typeof documents)["fragment buildingBlockFragment on BuildingBlock {\n _id: prn\n prn\n slug\n title\n preview {\n ...assetFragment\n }\n createdAt\n updatedAt\n}"];
|
|
185
|
+
export declare function graphql(source: "mutation CreateBuildingBlock($input: [CreateBuildingBlockInput!]!) {\n createBuildingBlock(input: $input) {\n ...buildingBlockFragment\n }\n}"): (typeof documents)["mutation CreateBuildingBlock($input: [CreateBuildingBlockInput!]!) {\n createBuildingBlock(input: $input) {\n ...buildingBlockFragment\n }\n}"];
|
|
186
|
+
export declare function graphql(source: "mutation RemoveBuildingBlock($prn: [PRN!]!) {\n removeBuildingBlock(prn: $prn) {\n prn\n }\n}"): (typeof documents)["mutation RemoveBuildingBlock($prn: [PRN!]!) {\n removeBuildingBlock(prn: $prn) {\n prn\n }\n}"];
|
|
187
|
+
export declare function graphql(source: "mutation UpdateBuildingBlock($input: [UpdateBuildingBlockInput!]!) {\n updateBuildingBlock(input: $input) {\n ...buildingBlockFragment\n }\n}"): (typeof documents)["mutation UpdateBuildingBlock($input: [UpdateBuildingBlockInput!]!) {\n updateBuildingBlock(input: $input) {\n ...buildingBlockFragment\n }\n}"];
|
|
188
|
+
export declare function graphql(source: "query CasStringMatches($inputText: String!, $limit: Int!, $matchConfig: DatabaseMatchConfig) {\n casStringMatches(\n inputText: $inputText\n limit: $limit\n matchConfig: $matchConfig\n ) {\n confidence\n contentValue {\n prn\n interpolatedSmartText\n primitiveValue\n isReusable\n contentItem {\n displayName\n }\n }\n endIndex\n extractionMethod\n startIndex\n }\n}"): (typeof documents)["query CasStringMatches($inputText: String!, $limit: Int!, $matchConfig: DatabaseMatchConfig) {\n casStringMatches(\n inputText: $inputText\n limit: $limit\n matchConfig: $matchConfig\n ) {\n confidence\n contentValue {\n prn\n interpolatedSmartText\n primitiveValue\n isReusable\n contentItem {\n displayName\n }\n }\n endIndex\n extractionMethod\n startIndex\n }\n}"];
|
|
189
|
+
export declare function graphql(source: "query allChannels($paginate: PaginationOptionsInput!, $where: [ChannelsFilterInput!], $orderBy: OrderOptionsInput) {\n channels(paginate: $paginate, where: $where, orderBy: $orderBy) {\n pageInfo {\n ...pagination\n }\n totalCount\n edges {\n cursor\n node {\n ...channelFragment\n rootPathPart {\n ...pathPartFragment\n }\n defaultBlueprint {\n prn\n name\n }\n theme {\n ...themeFragment\n }\n apiTokens {\n ...apiTokenFragment\n }\n }\n }\n }\n}"): (typeof documents)["query allChannels($paginate: PaginationOptionsInput!, $where: [ChannelsFilterInput!], $orderBy: OrderOptionsInput) {\n channels(paginate: $paginate, where: $where, orderBy: $orderBy) {\n pageInfo {\n ...pagination\n }\n totalCount\n edges {\n cursor\n node {\n ...channelFragment\n rootPathPart {\n ...pathPartFragment\n }\n defaultBlueprint {\n prn\n name\n }\n theme {\n ...themeFragment\n }\n apiTokens {\n ...apiTokenFragment\n }\n }\n }\n }\n}"];
|
|
190
|
+
export declare function graphql(source: "fragment channelFragment on Channel {\n _id: prn\n name\n domain\n slug\n prn\n updatedAt\n createdAt\n}"): (typeof documents)["fragment channelFragment on Channel {\n _id: prn\n name\n domain\n slug\n prn\n updatedAt\n createdAt\n}"];
|
|
191
|
+
export declare function graphql(source: "mutation createChannel($createChannelInput: [CreateChannelInput!]!) {\n createChannel(input: $createChannelInput) {\n ...channelFragment\n }\n}"): (typeof documents)["mutation createChannel($createChannelInput: [CreateChannelInput!]!) {\n createChannel(input: $createChannelInput) {\n ...channelFragment\n }\n}"];
|
|
192
|
+
export declare function graphql(source: "mutation removeChannel($prn: [PRN!]!) {\n removeChannel(prn: $prn) {\n ...channelFragment\n }\n}"): (typeof documents)["mutation removeChannel($prn: [PRN!]!) {\n removeChannel(prn: $prn) {\n ...channelFragment\n }\n}"];
|
|
193
|
+
export declare function graphql(source: "query singleChannel($prn: [PRN!]!) {\n channel(prn: $prn) {\n ...channelFragment\n rootPathPart {\n ...pathPartFragment\n }\n }\n}"): (typeof documents)["query singleChannel($prn: [PRN!]!) {\n channel(prn: $prn) {\n ...channelFragment\n rootPathPart {\n ...pathPartFragment\n }\n }\n}"];
|
|
194
|
+
export declare function graphql(source: "query singleChannelWithBlueprints($prn: [PRN!]!) {\n channel(prn: $prn) {\n ...channelFragment\n defaultBlueprint {\n prn\n name\n }\n blueprints {\n ...blueprintFragment\n channel {\n ...channelFragment\n }\n }\n }\n}"): (typeof documents)["query singleChannelWithBlueprints($prn: [PRN!]!) {\n channel(prn: $prn) {\n ...channelFragment\n defaultBlueprint {\n prn\n name\n }\n blueprints {\n ...blueprintFragment\n channel {\n ...channelFragment\n }\n }\n }\n}"];
|
|
195
|
+
export declare function graphql(source: "mutation updateChannel($updateChannelInput: [UpdateChannelInput!]!) {\n updateChannel(input: $updateChannelInput) {\n ...channelFragment\n defaultBlueprint {\n prn\n name\n }\n }\n}"): (typeof documents)["mutation updateChannel($updateChannelInput: [UpdateChannelInput!]!) {\n updateChannel(input: $updateChannelInput) {\n ...channelFragment\n defaultBlueprint {\n prn\n name\n }\n }\n}"];
|
|
196
|
+
export declare function graphql(source: "query allContentExperiences($paginate: PaginationOptionsInput!, $where: [ContentExperiencesFilterInput!], $orderBy: OrderOptionsInput, $optionsList: [ProcessedAssetOptionsInput!]!) {\n contentExperiences(paginate: $paginate, where: $where, orderBy: $orderBy) {\n pageInfo {\n ...pagination\n }\n totalCount\n edges {\n cursor\n node {\n ...contentExperienceFragment\n tags {\n ...tagFragment\n }\n experienceComponent {\n grid {\n gridPlacements {\n experienceComponent {\n buildingBlockFieldFulfillments {\n contentValue {\n relatedAsset {\n prn\n url\n processedUrls(optionsList: $optionsList)\n }\n }\n }\n }\n }\n }\n }\n pathPart {\n ...pathPartFragment\n }\n }\n }\n }\n}"): (typeof documents)["query allContentExperiences($paginate: PaginationOptionsInput!, $where: [ContentExperiencesFilterInput!], $orderBy: OrderOptionsInput, $optionsList: [ProcessedAssetOptionsInput!]!) {\n contentExperiences(paginate: $paginate, where: $where, orderBy: $orderBy) {\n pageInfo {\n ...pagination\n }\n totalCount\n edges {\n cursor\n node {\n ...contentExperienceFragment\n tags {\n ...tagFragment\n }\n experienceComponent {\n grid {\n gridPlacements {\n experienceComponent {\n buildingBlockFieldFulfillments {\n contentValue {\n relatedAsset {\n prn\n url\n processedUrls(optionsList: $optionsList)\n }\n }\n }\n }\n }\n }\n }\n pathPart {\n ...pathPartFragment\n }\n }\n }\n }\n}"];
|
|
197
|
+
export declare function graphql(source: "fragment contentExperienceFragment on ContentExperience {\n _id: prn\n slug\n prn\n tags {\n ...tagFragment\n }\n title\n createdAt\n updatedAt\n preview {\n ...assetFragment\n }\n}"): (typeof documents)["fragment contentExperienceFragment on ContentExperience {\n _id: prn\n slug\n prn\n tags {\n ...tagFragment\n }\n title\n createdAt\n updatedAt\n preview {\n ...assetFragment\n }\n}"];
|
|
198
|
+
export declare function graphql(source: "mutation createContentExperienceWithExistingPathPart($input: [CreateContentExperienceWithExistingPathPartInput!]!) {\n createContentExperienceWithExistingPathPart(input: $input) {\n ...contentExperienceFragment\n pathPart {\n ...pathPartFragment\n }\n }\n}"): (typeof documents)["mutation createContentExperienceWithExistingPathPart($input: [CreateContentExperienceWithExistingPathPartInput!]!) {\n createContentExperienceWithExistingPathPart(input: $input) {\n ...contentExperienceFragment\n pathPart {\n ...pathPartFragment\n }\n }\n}"];
|
|
199
|
+
export declare function graphql(source: "mutation createContentExperienceWithNewPathPart($input: [CreateContentExperienceWithNewPathPartInput!]!) {\n createContentExperienceWithNewPathPart(input: $input) {\n ...contentExperienceFragment\n pathPart {\n ...pathPartFragment\n }\n }\n}"): (typeof documents)["mutation createContentExperienceWithNewPathPart($input: [CreateContentExperienceWithNewPathPartInput!]!) {\n createContentExperienceWithNewPathPart(input: $input) {\n ...contentExperienceFragment\n pathPart {\n ...pathPartFragment\n }\n }\n}"];
|
|
200
|
+
export declare function graphql(source: "mutation removeContentExperience($prn: [PRN!]!) {\n removeContentExperience(prn: $prn) {\n _id: prn\n slug\n prn\n title\n createdAt\n updatedAt\n }\n}"): (typeof documents)["mutation removeContentExperience($prn: [PRN!]!) {\n removeContentExperience(prn: $prn) {\n _id: prn\n slug\n prn\n title\n createdAt\n updatedAt\n }\n}"];
|
|
201
|
+
export declare function graphql(source: "query singleContentExperience($prn: [PRN!]!) {\n contentExperience(prn: $prn) {\n ...contentExperienceFragment\n pathPart {\n ...pathPartFragment\n channel {\n ...channelFragment\n theme {\n ...themeFragment\n }\n }\n }\n tags {\n ...tagFragment\n }\n experienceComponent {\n ...experienceComponentFragment\n blueprintedBy {\n prn\n blueprint {\n ...blueprintFragment\n }\n }\n buildingBlock {\n ...buildingBlockFragment\n buildingBlockFields {\n ...buildingBlockFieldFragment\n }\n }\n buildingBlockFieldFulfillments {\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n contentValue {\n ...contentValueFragment\n contentItem {\n prn\n }\n relatedAsset {\n ...assetFragment\n }\n linkedPathPart {\n ...pathPartFragment\n }\n linkedGridPlacement {\n ...gridPlacementFragment\n experienceComponent {\n ...experienceComponentFragment\n buildingBlock {\n ...buildingBlockFragment\n }\n }\n }\n relatedContentItem {\n ...contentItemFragment\n contentType {\n ...contentTypeFragment\n contentFields {\n ...contentFieldFragment\n }\n }\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n relatedAsset {\n ...assetFragment\n }\n }\n }\n }\n }\n grid {\n ...gridFragment\n gridPlacements {\n ...gridPlacementFragment\n experienceComponent {\n ...experienceComponentFragment\n buildingBlock {\n ...buildingBlockFragment\n buildingBlockFields {\n ...buildingBlockFieldFragment\n }\n }\n buildingBlockFieldFulfillments {\n ...buildingBlockFieldFulfillmentFragment\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n contentValue {\n ...contentValueFragment\n contentItem {\n prn\n }\n relatedAsset {\n ...assetFragment\n }\n linkedPathPart {\n ...pathPartFragment\n }\n linkedGridPlacement {\n ...gridPlacementFragment\n experienceComponent {\n ...experienceComponentFragment\n buildingBlock {\n ...buildingBlockFragment\n }\n }\n }\n relatedContentItem {\n ...contentItemFragment\n contentType {\n ...contentTypeFragment\n contentFields {\n ...contentFieldFragment\n }\n }\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n relatedAsset {\n ...assetFragment\n }\n }\n }\n }\n }\n }\n }\n }\n }\n }\n}"): (typeof documents)["query singleContentExperience($prn: [PRN!]!) {\n contentExperience(prn: $prn) {\n ...contentExperienceFragment\n pathPart {\n ...pathPartFragment\n channel {\n ...channelFragment\n theme {\n ...themeFragment\n }\n }\n }\n tags {\n ...tagFragment\n }\n experienceComponent {\n ...experienceComponentFragment\n blueprintedBy {\n prn\n blueprint {\n ...blueprintFragment\n }\n }\n buildingBlock {\n ...buildingBlockFragment\n buildingBlockFields {\n ...buildingBlockFieldFragment\n }\n }\n buildingBlockFieldFulfillments {\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n contentValue {\n ...contentValueFragment\n contentItem {\n prn\n }\n relatedAsset {\n ...assetFragment\n }\n linkedPathPart {\n ...pathPartFragment\n }\n linkedGridPlacement {\n ...gridPlacementFragment\n experienceComponent {\n ...experienceComponentFragment\n buildingBlock {\n ...buildingBlockFragment\n }\n }\n }\n relatedContentItem {\n ...contentItemFragment\n contentType {\n ...contentTypeFragment\n contentFields {\n ...contentFieldFragment\n }\n }\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n relatedAsset {\n ...assetFragment\n }\n }\n }\n }\n }\n grid {\n ...gridFragment\n gridPlacements {\n ...gridPlacementFragment\n experienceComponent {\n ...experienceComponentFragment\n buildingBlock {\n ...buildingBlockFragment\n buildingBlockFields {\n ...buildingBlockFieldFragment\n }\n }\n buildingBlockFieldFulfillments {\n ...buildingBlockFieldFulfillmentFragment\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n contentValue {\n ...contentValueFragment\n contentItem {\n prn\n }\n relatedAsset {\n ...assetFragment\n }\n linkedPathPart {\n ...pathPartFragment\n }\n linkedGridPlacement {\n ...gridPlacementFragment\n experienceComponent {\n ...experienceComponentFragment\n buildingBlock {\n ...buildingBlockFragment\n }\n }\n }\n relatedContentItem {\n ...contentItemFragment\n contentType {\n ...contentTypeFragment\n contentFields {\n ...contentFieldFragment\n }\n }\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n relatedAsset {\n ...assetFragment\n }\n }\n }\n }\n }\n }\n }\n }\n }\n }\n}"];
|
|
202
|
+
export declare function graphql(source: "query singleContentExperienceWithPathPart($prn: [PRN!]!) {\n contentExperience(prn: $prn) {\n ...contentExperienceFragment\n pathPart {\n ...pathPartFragment\n channel {\n ...channelFragment\n theme {\n ...themeFragment\n }\n }\n }\n }\n}"): (typeof documents)["query singleContentExperienceWithPathPart($prn: [PRN!]!) {\n contentExperience(prn: $prn) {\n ...contentExperienceFragment\n pathPart {\n ...pathPartFragment\n channel {\n ...channelFragment\n theme {\n ...themeFragment\n }\n }\n }\n }\n}"];
|
|
203
|
+
export declare function graphql(source: "mutation updateContentExperience($input: [UpdateContentExperienceInput!]!) {\n updateContentExperience(input: $input) {\n ...contentExperienceFragment\n tags {\n ...tagFragment\n }\n pathPart {\n ...pathPartFragment\n }\n }\n}"): (typeof documents)["mutation updateContentExperience($input: [UpdateContentExperienceInput!]!) {\n updateContentExperience(input: $input) {\n ...contentExperienceFragment\n tags {\n ...tagFragment\n }\n pathPart {\n ...pathPartFragment\n }\n }\n}"];
|
|
204
|
+
export declare function graphql(source: "fragment contentFieldFragment on ContentField {\n _id: prn\n prn\n name\n createdAt\n updatedAt\n}"): (typeof documents)["fragment contentFieldFragment on ContentField {\n _id: prn\n prn\n name\n createdAt\n updatedAt\n}"];
|
|
205
|
+
export declare function graphql(source: "query contentFields($paginate: PaginationOptionsInput!, $where: [ContentFieldsFilterInput!], $orderBy: OrderOptionsInput!) {\n contentFields(paginate: $paginate, where: $where, orderBy: $orderBy) {\n pageInfo {\n ...pagination\n }\n totalCount\n edges {\n cursor\n node {\n ...contentFieldFragment\n }\n }\n }\n}"): (typeof documents)["query contentFields($paginate: PaginationOptionsInput!, $where: [ContentFieldsFilterInput!], $orderBy: OrderOptionsInput!) {\n contentFields(paginate: $paginate, where: $where, orderBy: $orderBy) {\n pageInfo {\n ...pagination\n }\n totalCount\n edges {\n cursor\n node {\n ...contentFieldFragment\n }\n }\n }\n}"];
|
|
206
|
+
export declare function graphql(source: "mutation CreateContentField($input: [CreateContentFieldInput!]!) {\n createContentField(input: $input) {\n ...contentFieldFragment\n }\n}"): (typeof documents)["mutation CreateContentField($input: [CreateContentFieldInput!]!) {\n createContentField(input: $input) {\n ...contentFieldFragment\n }\n}"];
|
|
207
|
+
export declare function graphql(source: "mutation RemoveContentField($prn: [PRN!]!) {\n removeContentField(prn: $prn) {\n prn\n }\n}"): (typeof documents)["mutation RemoveContentField($prn: [PRN!]!) {\n removeContentField(prn: $prn) {\n prn\n }\n}"];
|
|
208
|
+
export declare function graphql(source: "mutation updateContentField($input: [UpdateContentFieldInput!]!) {\n updateContentField(input: $input) {\n ...contentFieldFragment\n }\n}"): (typeof documents)["mutation updateContentField($input: [UpdateContentFieldInput!]!) {\n updateContentField(input: $input) {\n ...contentFieldFragment\n }\n}"];
|
|
209
|
+
export declare function graphql(source: "query allContentItems($paginate: PaginationOptionsInput!, $where: [ContentItemsFilterInput!], $orderBy: OrderOptionsInput, $optionsList: [ProcessedAssetOptionsInput!]!) {\n contentItems(paginate: $paginate, where: $where, orderBy: $orderBy) {\n pageInfo {\n ...pagination\n }\n totalCount\n edges {\n cursor\n node {\n ...contentItemFragment\n displayImage {\n processedUrls(optionsList: $optionsList)\n ...assetFragment\n }\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n contentValidationRules {\n ...contentValidationRuleFragment\n }\n }\n relatedAsset {\n ...assetFragment\n }\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n }\n }\n }\n contentType {\n ...contentTypeFragment\n contentFields {\n ...contentFieldFragment\n }\n }\n tags {\n ...tagFragment\n }\n }\n }\n }\n}"): (typeof documents)["query allContentItems($paginate: PaginationOptionsInput!, $where: [ContentItemsFilterInput!], $orderBy: OrderOptionsInput, $optionsList: [ProcessedAssetOptionsInput!]!) {\n contentItems(paginate: $paginate, where: $where, orderBy: $orderBy) {\n pageInfo {\n ...pagination\n }\n totalCount\n edges {\n cursor\n node {\n ...contentItemFragment\n displayImage {\n processedUrls(optionsList: $optionsList)\n ...assetFragment\n }\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n contentValidationRules {\n ...contentValidationRuleFragment\n }\n }\n relatedAsset {\n ...assetFragment\n }\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n }\n }\n }\n contentType {\n ...contentTypeFragment\n contentFields {\n ...contentFieldFragment\n }\n }\n tags {\n ...tagFragment\n }\n }\n }\n }\n}"];
|
|
210
|
+
export declare function graphql(source: "fragment contentItemFragment on ContentItem {\n _id: prn\n prn\n isDraft\n displayName\n displayImage {\n ...assetFragment\n }\n updatedAt\n createdAt\n}"): (typeof documents)["fragment contentItemFragment on ContentItem {\n _id: prn\n prn\n isDraft\n displayName\n displayImage {\n ...assetFragment\n }\n updatedAt\n createdAt\n}"];
|
|
211
|
+
export declare function graphql(source: "mutation createContentItem($createContentItemInput: [CreateContentItemInput!]!) {\n createContentItem(input: $createContentItemInput) {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n }\n }\n }\n contentType {\n ...contentTypeFragment\n contentFields {\n ...contentFieldFragment\n contentValidationRules {\n prn\n ruleType\n settings {\n ... on CountContentValidationRuleSettings {\n min\n max\n }\n ... on ValueTypeContentValidationRuleSettings {\n allowedTypes\n }\n ... on AllowedValuesContentValidationRuleSettings {\n allowedValues\n }\n ... on DateBetweenContentValidationRuleSettings {\n start\n end\n }\n ... on DecimalCountContentValidationRuleSettings {\n max\n }\n ... on NumberBetweenContentValidationRuleSettings {\n min\n max\n }\n ... on RelatableContentTypesContentValidationRuleSettings {\n allowedContentTypes\n }\n ... on StringFormatContentValidationRuleSettings {\n allowedFormat\n }\n }\n }\n }\n }\n }\n}"): (typeof documents)["mutation createContentItem($createContentItemInput: [CreateContentItemInput!]!) {\n createContentItem(input: $createContentItemInput) {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n }\n }\n }\n contentType {\n ...contentTypeFragment\n contentFields {\n ...contentFieldFragment\n contentValidationRules {\n prn\n ruleType\n settings {\n ... on CountContentValidationRuleSettings {\n min\n max\n }\n ... on ValueTypeContentValidationRuleSettings {\n allowedTypes\n }\n ... on AllowedValuesContentValidationRuleSettings {\n allowedValues\n }\n ... on DateBetweenContentValidationRuleSettings {\n start\n end\n }\n ... on DecimalCountContentValidationRuleSettings {\n max\n }\n ... on NumberBetweenContentValidationRuleSettings {\n min\n max\n }\n ... on RelatableContentTypesContentValidationRuleSettings {\n allowedContentTypes\n }\n ... on StringFormatContentValidationRuleSettings {\n allowedFormat\n }\n }\n }\n }\n }\n }\n}"];
|
|
212
|
+
export declare function graphql(source: "mutation removeContentItem($prn: [PRN!]!) {\n removeContentItem(prn: $prn) {\n ...contentItemFragment\n }\n}"): (typeof documents)["mutation removeContentItem($prn: [PRN!]!) {\n removeContentItem(prn: $prn) {\n ...contentItemFragment\n }\n}"];
|
|
213
|
+
export declare function graphql(source: "query singleContentItem($prn: [PRN!]!) {\n contentItem(prn: $prn) {\n ...contentItemFragment\n tags {\n ...tagFragment\n }\n contentValues {\n ...contentValueFragment\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n }\n }\n relatedAsset {\n ...assetFragment\n }\n contentField {\n ...contentFieldFragment\n }\n linkedPathPart {\n ...pathPartFragment\n }\n linkedGridPlacement {\n ...gridPlacementFragment\n experienceComponent {\n ...experienceComponentFragment\n buildingBlock {\n ...buildingBlockFragment\n }\n }\n }\n }\n contentType {\n ...contentTypeFragment\n contentFields {\n ...contentFieldFragment\n contentValidationRules {\n prn\n ruleType\n settings {\n ... on CountContentValidationRuleSettings {\n min\n max\n }\n ... on ValueTypeContentValidationRuleSettings {\n allowedTypes\n }\n ... on AllowedValuesContentValidationRuleSettings {\n allowedValues\n }\n ... on DateBetweenContentValidationRuleSettings {\n start\n end\n }\n ... on DecimalCountContentValidationRuleSettings {\n max\n }\n ... on NumberBetweenContentValidationRuleSettings {\n min\n max\n }\n ... on RelatableContentTypesContentValidationRuleSettings {\n allowedContentTypes\n }\n ... on StringFormatContentValidationRuleSettings {\n allowedFormat\n }\n }\n }\n }\n }\n }\n}"): (typeof documents)["query singleContentItem($prn: [PRN!]!) {\n contentItem(prn: $prn) {\n ...contentItemFragment\n tags {\n ...tagFragment\n }\n contentValues {\n ...contentValueFragment\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n }\n }\n relatedAsset {\n ...assetFragment\n }\n contentField {\n ...contentFieldFragment\n }\n linkedPathPart {\n ...pathPartFragment\n }\n linkedGridPlacement {\n ...gridPlacementFragment\n experienceComponent {\n ...experienceComponentFragment\n buildingBlock {\n ...buildingBlockFragment\n }\n }\n }\n }\n contentType {\n ...contentTypeFragment\n contentFields {\n ...contentFieldFragment\n contentValidationRules {\n prn\n ruleType\n settings {\n ... on CountContentValidationRuleSettings {\n min\n max\n }\n ... on ValueTypeContentValidationRuleSettings {\n allowedTypes\n }\n ... on AllowedValuesContentValidationRuleSettings {\n allowedValues\n }\n ... on DateBetweenContentValidationRuleSettings {\n start\n end\n }\n ... on DecimalCountContentValidationRuleSettings {\n max\n }\n ... on NumberBetweenContentValidationRuleSettings {\n min\n max\n }\n ... on RelatableContentTypesContentValidationRuleSettings {\n allowedContentTypes\n }\n ... on StringFormatContentValidationRuleSettings {\n allowedFormat\n }\n }\n }\n }\n }\n }\n}"];
|
|
214
|
+
export declare function graphql(source: "mutation updateContentItem($updateContentItemInput: [UpdateContentItemInput!]!) {\n updateContentItem(input: $updateContentItemInput) {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n }\n }\n }\n tags {\n ...tagFragment\n }\n contentType {\n ...contentTypeFragment\n contentFields {\n ...contentFieldFragment\n contentValidationRules {\n prn\n ruleType\n settings {\n ... on CountContentValidationRuleSettings {\n min\n max\n }\n ... on ValueTypeContentValidationRuleSettings {\n allowedTypes\n }\n ... on AllowedValuesContentValidationRuleSettings {\n allowedValues\n }\n ... on DateBetweenContentValidationRuleSettings {\n start\n end\n }\n ... on DecimalCountContentValidationRuleSettings {\n max\n }\n ... on NumberBetweenContentValidationRuleSettings {\n min\n max\n }\n ... on RelatableContentTypesContentValidationRuleSettings {\n allowedContentTypes\n }\n ... on StringFormatContentValidationRuleSettings {\n allowedFormat\n }\n }\n }\n }\n }\n }\n}"): (typeof documents)["mutation updateContentItem($updateContentItemInput: [UpdateContentItemInput!]!) {\n updateContentItem(input: $updateContentItemInput) {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n }\n }\n }\n tags {\n ...tagFragment\n }\n contentType {\n ...contentTypeFragment\n contentFields {\n ...contentFieldFragment\n contentValidationRules {\n prn\n ruleType\n settings {\n ... on CountContentValidationRuleSettings {\n min\n max\n }\n ... on ValueTypeContentValidationRuleSettings {\n allowedTypes\n }\n ... on AllowedValuesContentValidationRuleSettings {\n allowedValues\n }\n ... on DateBetweenContentValidationRuleSettings {\n start\n end\n }\n ... on DecimalCountContentValidationRuleSettings {\n max\n }\n ... on NumberBetweenContentValidationRuleSettings {\n min\n max\n }\n ... on RelatableContentTypesContentValidationRuleSettings {\n allowedContentTypes\n }\n ... on StringFormatContentValidationRuleSettings {\n allowedFormat\n }\n }\n }\n }\n }\n }\n}"];
|
|
215
|
+
export declare function graphql(source: "query allContentTypes($paginate: PaginationOptionsInput!, $where: [ContentTypesFilterInput!], $orderBy: OrderOptionsInput!) {\n contentTypes(paginate: $paginate, where: $where, orderBy: $orderBy) {\n pageInfo {\n ...pagination\n }\n totalCount\n edges {\n cursor\n node {\n ...contentTypeFragment\n contentFields {\n ...contentFieldFragment\n contentValidationRules {\n ...contentValidationRuleFragment\n }\n }\n }\n }\n }\n}"): (typeof documents)["query allContentTypes($paginate: PaginationOptionsInput!, $where: [ContentTypesFilterInput!], $orderBy: OrderOptionsInput!) {\n contentTypes(paginate: $paginate, where: $where, orderBy: $orderBy) {\n pageInfo {\n ...pagination\n }\n totalCount\n edges {\n cursor\n node {\n ...contentTypeFragment\n contentFields {\n ...contentFieldFragment\n contentValidationRules {\n ...contentValidationRuleFragment\n }\n }\n }\n }\n }\n}"];
|
|
216
|
+
export declare function graphql(source: "query ContentType($prn: [PRN!]!) {\n contentType(prn: $prn) {\n ...contentTypeFragment\n contentFields {\n ...contentFieldFragment\n contentValidationRules {\n ...contentValidationRuleFragment\n }\n }\n }\n}"): (typeof documents)["query ContentType($prn: [PRN!]!) {\n contentType(prn: $prn) {\n ...contentTypeFragment\n contentFields {\n ...contentFieldFragment\n contentValidationRules {\n ...contentValidationRuleFragment\n }\n }\n }\n}"];
|
|
217
|
+
export declare function graphql(source: "query ContentTypeWithContentItems($prn: [PRN!]!) {\n contentType(prn: $prn) {\n ...contentTypeFragment\n contentItems {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n smartText\n contentField {\n prn\n name\n createdAt\n updatedAt\n contentValidationRules {\n ruleType\n settings {\n ... on ValueTypeContentValidationRuleSettings {\n allowedTypes\n }\n }\n }\n }\n relatedContentItem {\n ...contentItemFragment\n }\n relatedAsset {\n ...assetFragment\n }\n linkedPathPart {\n ...pathPartFragment\n }\n linkedGridPlacement {\n ...gridPlacementFragment\n experienceComponent {\n name\n }\n }\n }\n }\n }\n}"): (typeof documents)["query ContentTypeWithContentItems($prn: [PRN!]!) {\n contentType(prn: $prn) {\n ...contentTypeFragment\n contentItems {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n smartText\n contentField {\n prn\n name\n createdAt\n updatedAt\n contentValidationRules {\n ruleType\n settings {\n ... on ValueTypeContentValidationRuleSettings {\n allowedTypes\n }\n }\n }\n }\n relatedContentItem {\n ...contentItemFragment\n }\n relatedAsset {\n ...assetFragment\n }\n linkedPathPart {\n ...pathPartFragment\n }\n linkedGridPlacement {\n ...gridPlacementFragment\n experienceComponent {\n name\n }\n }\n }\n }\n }\n}"];
|
|
218
|
+
export declare function graphql(source: "fragment contentTypeFragment on ContentType {\n _id: prn\n prn\n name\n displayNameTemplate\n displayImageField {\n ...contentFieldFragment\n }\n createdAt\n updatedAt\n}"): (typeof documents)["fragment contentTypeFragment on ContentType {\n _id: prn\n prn\n name\n displayNameTemplate\n displayImageField {\n ...contentFieldFragment\n }\n createdAt\n updatedAt\n}"];
|
|
219
|
+
export declare function graphql(source: "mutation createContentType($input: [CreateContentTypeInput!]!) {\n createContentType(input: $input) {\n ...contentTypeFragment\n }\n}"): (typeof documents)["mutation createContentType($input: [CreateContentTypeInput!]!) {\n createContentType(input: $input) {\n ...contentTypeFragment\n }\n}"];
|
|
220
|
+
export declare function graphql(source: "mutation RemoveContentType($prn: [PRN!]!) {\n removeContentType(prn: $prn) {\n prn\n }\n}"): (typeof documents)["mutation RemoveContentType($prn: [PRN!]!) {\n removeContentType(prn: $prn) {\n prn\n }\n}"];
|
|
221
|
+
export declare function graphql(source: "mutation updateContentType($input: [UpdateContentTypeInput!]!) {\n updateContentType(input: $input) {\n ...contentTypeFragment\n }\n}"): (typeof documents)["mutation updateContentType($input: [UpdateContentTypeInput!]!) {\n updateContentType(input: $input) {\n ...contentTypeFragment\n }\n}"];
|
|
222
|
+
export declare function graphql(source: "fragment contentValidationRuleFragment on ContentValidationRule {\n _id: prn\n prn\n ruleType\n settings {\n __typename\n ... on CountContentValidationRuleSettings {\n min\n max\n }\n ... on ValueTypeContentValidationRuleSettings {\n allowedTypes\n }\n ... on AllowedValuesContentValidationRuleSettings {\n allowedValues\n }\n ... on DateBetweenContentValidationRuleSettings {\n start\n end\n }\n ... on DecimalCountContentValidationRuleSettings {\n max\n }\n ... on NumberBetweenContentValidationRuleSettings {\n min\n max\n }\n ... on RelatableContentTypesContentValidationRuleSettings {\n allowedContentTypes\n }\n ... on StringFormatContentValidationRuleSettings {\n allowedFormat\n }\n }\n}"): (typeof documents)["fragment contentValidationRuleFragment on ContentValidationRule {\n _id: prn\n prn\n ruleType\n settings {\n __typename\n ... on CountContentValidationRuleSettings {\n min\n max\n }\n ... on ValueTypeContentValidationRuleSettings {\n allowedTypes\n }\n ... on AllowedValuesContentValidationRuleSettings {\n allowedValues\n }\n ... on DateBetweenContentValidationRuleSettings {\n start\n end\n }\n ... on DecimalCountContentValidationRuleSettings {\n max\n }\n ... on NumberBetweenContentValidationRuleSettings {\n min\n max\n }\n ... on RelatableContentTypesContentValidationRuleSettings {\n allowedContentTypes\n }\n ... on StringFormatContentValidationRuleSettings {\n allowedFormat\n }\n }\n}"];
|
|
223
|
+
export declare function graphql(source: "mutation createAllowedValuesContentValidationRule($createAllowedValuesContentValidationRuleInput: CreateAllowedValuesContentValidationRuleInput!) {\n createAllowedValuesContentValidationRule(\n input: $createAllowedValuesContentValidationRuleInput\n ) {\n ...contentValidationRuleFragment\n }\n}"): (typeof documents)["mutation createAllowedValuesContentValidationRule($createAllowedValuesContentValidationRuleInput: CreateAllowedValuesContentValidationRuleInput!) {\n createAllowedValuesContentValidationRule(\n input: $createAllowedValuesContentValidationRuleInput\n ) {\n ...contentValidationRuleFragment\n }\n}"];
|
|
224
|
+
export declare function graphql(source: "mutation createCountContentValidationRule($createCountContentValidationRuleInput: CreateCountContentValidationRuleInput!) {\n createCountContentValidationRule(input: $createCountContentValidationRuleInput) {\n ...contentValidationRuleFragment\n }\n}"): (typeof documents)["mutation createCountContentValidationRule($createCountContentValidationRuleInput: CreateCountContentValidationRuleInput!) {\n createCountContentValidationRule(input: $createCountContentValidationRuleInput) {\n ...contentValidationRuleFragment\n }\n}"];
|
|
225
|
+
export declare function graphql(source: "mutation createDateBetweenContentValidationRule($createDateBetweenContentValidationRuleInput: CreateDateBetweenContentValidationRuleInput!) {\n createDateBetweenContentValidationRule(\n input: $createDateBetweenContentValidationRuleInput\n ) {\n ...contentValidationRuleFragment\n }\n}"): (typeof documents)["mutation createDateBetweenContentValidationRule($createDateBetweenContentValidationRuleInput: CreateDateBetweenContentValidationRuleInput!) {\n createDateBetweenContentValidationRule(\n input: $createDateBetweenContentValidationRuleInput\n ) {\n ...contentValidationRuleFragment\n }\n}"];
|
|
226
|
+
export declare function graphql(source: "mutation createDecimalCountContentValidationRule($createDecimalCountContentValidationRuleInput: CreateDecimalCountContentValidationRuleInput!) {\n createDecimalCountContentValidationRule(\n input: $createDecimalCountContentValidationRuleInput\n ) {\n ...contentValidationRuleFragment\n }\n}"): (typeof documents)["mutation createDecimalCountContentValidationRule($createDecimalCountContentValidationRuleInput: CreateDecimalCountContentValidationRuleInput!) {\n createDecimalCountContentValidationRule(\n input: $createDecimalCountContentValidationRuleInput\n ) {\n ...contentValidationRuleFragment\n }\n}"];
|
|
227
|
+
export declare function graphql(source: "mutation createNumberBetweenContentValidationRule($createNumberBetweenContentValidationRuleInput: CreateNumberBetweenContentValidationRuleInput!) {\n createNumberBetweenContentValidationRule(\n input: $createNumberBetweenContentValidationRuleInput\n ) {\n ...contentValidationRuleFragment\n }\n}"): (typeof documents)["mutation createNumberBetweenContentValidationRule($createNumberBetweenContentValidationRuleInput: CreateNumberBetweenContentValidationRuleInput!) {\n createNumberBetweenContentValidationRule(\n input: $createNumberBetweenContentValidationRuleInput\n ) {\n ...contentValidationRuleFragment\n }\n}"];
|
|
228
|
+
export declare function graphql(source: "mutation createRelatableContentTypesContentValidationRule($createRelatableContentTypesContentValidationRuleInput: CreateRelatableContentTypesContentValidationRuleInput!) {\n createRelatableContentTypesContentValidationRule(\n input: $createRelatableContentTypesContentValidationRuleInput\n ) {\n ...contentValidationRuleFragment\n }\n}"): (typeof documents)["mutation createRelatableContentTypesContentValidationRule($createRelatableContentTypesContentValidationRuleInput: CreateRelatableContentTypesContentValidationRuleInput!) {\n createRelatableContentTypesContentValidationRule(\n input: $createRelatableContentTypesContentValidationRuleInput\n ) {\n ...contentValidationRuleFragment\n }\n}"];
|
|
229
|
+
export declare function graphql(source: "mutation createStringFormatContentValidationRule($createStringFormatContentValidationRuleInput: CreateStringFormatContentValidationRuleInput!) {\n createStringFormatContentValidationRule(\n input: $createStringFormatContentValidationRuleInput\n ) {\n ...contentValidationRuleFragment\n }\n}"): (typeof documents)["mutation createStringFormatContentValidationRule($createStringFormatContentValidationRuleInput: CreateStringFormatContentValidationRuleInput!) {\n createStringFormatContentValidationRule(\n input: $createStringFormatContentValidationRuleInput\n ) {\n ...contentValidationRuleFragment\n }\n}"];
|
|
230
|
+
export declare function graphql(source: "mutation createValueTypeContentValidationRule($createValueTypeContentValidationRuleInput: CreateValueTypeContentValidationRuleInput!) {\n createValueTypeContentValidationRule(\n input: $createValueTypeContentValidationRuleInput\n ) {\n ...contentValidationRuleFragment\n }\n}"): (typeof documents)["mutation createValueTypeContentValidationRule($createValueTypeContentValidationRuleInput: CreateValueTypeContentValidationRuleInput!) {\n createValueTypeContentValidationRule(\n input: $createValueTypeContentValidationRuleInput\n ) {\n ...contentValidationRuleFragment\n }\n}"];
|
|
231
|
+
export declare function graphql(source: "mutation RemoveContentValidationRule($prn: [PRN!]!) {\n removeContentValidationRule(prn: $prn) {\n prn\n }\n}"): (typeof documents)["mutation RemoveContentValidationRule($prn: [PRN!]!) {\n removeContentValidationRule(prn: $prn) {\n prn\n }\n}"];
|
|
232
|
+
export declare function graphql(source: "mutation updateAllowedValuesContentValidationRule($input: UpdateAllowedValuesContentValidationRuleInput!) {\n updateAllowedValuesContentValidationRule(input: $input) {\n ...contentValidationRuleFragment\n }\n}"): (typeof documents)["mutation updateAllowedValuesContentValidationRule($input: UpdateAllowedValuesContentValidationRuleInput!) {\n updateAllowedValuesContentValidationRule(input: $input) {\n ...contentValidationRuleFragment\n }\n}"];
|
|
233
|
+
export declare function graphql(source: "mutation updateCountValidationRule($input: UpdateCountContentValidationRuleInput!) {\n updateCountContentValidationRule(input: $input) {\n ...contentValidationRuleFragment\n }\n}"): (typeof documents)["mutation updateCountValidationRule($input: UpdateCountContentValidationRuleInput!) {\n updateCountContentValidationRule(input: $input) {\n ...contentValidationRuleFragment\n }\n}"];
|
|
234
|
+
export declare function graphql(source: "mutation updateDateBetweenContentValidationRule($input: UpdateDateBetweenContentValidationRuleInput!) {\n updateDateBetweenContentValidationRule(input: $input) {\n ...contentValidationRuleFragment\n }\n}"): (typeof documents)["mutation updateDateBetweenContentValidationRule($input: UpdateDateBetweenContentValidationRuleInput!) {\n updateDateBetweenContentValidationRule(input: $input) {\n ...contentValidationRuleFragment\n }\n}"];
|
|
235
|
+
export declare function graphql(source: "mutation updateDecimalCountContentValidationRule($input: UpdateDecimalCountContentValidationRuleInput!) {\n updateDecimalCountContentValidationRule(input: $input) {\n ...contentValidationRuleFragment\n }\n}"): (typeof documents)["mutation updateDecimalCountContentValidationRule($input: UpdateDecimalCountContentValidationRuleInput!) {\n updateDecimalCountContentValidationRule(input: $input) {\n ...contentValidationRuleFragment\n }\n}"];
|
|
236
|
+
export declare function graphql(source: "mutation updateNumberBetweenContentValidationRule($input: UpdateNumberBetweenContentValidationRuleInput!) {\n updateNumberBetweenContentValidationRule(input: $input) {\n ...contentValidationRuleFragment\n }\n}"): (typeof documents)["mutation updateNumberBetweenContentValidationRule($input: UpdateNumberBetweenContentValidationRuleInput!) {\n updateNumberBetweenContentValidationRule(input: $input) {\n ...contentValidationRuleFragment\n }\n}"];
|
|
237
|
+
export declare function graphql(source: "mutation updateRelatableContentTypesContentValidationRule($input: UpdateRelatableContentTypesContentValidationRuleInput!) {\n updateRelatableContentTypesContentValidationRule(input: $input) {\n ...contentValidationRuleFragment\n }\n}"): (typeof documents)["mutation updateRelatableContentTypesContentValidationRule($input: UpdateRelatableContentTypesContentValidationRuleInput!) {\n updateRelatableContentTypesContentValidationRule(input: $input) {\n ...contentValidationRuleFragment\n }\n}"];
|
|
238
|
+
export declare function graphql(source: "mutation updateStringFormatContentValidationRule($input: UpdateStringFormatContentValidationRuleInput!) {\n updateStringFormatContentValidationRule(input: $input) {\n ...contentValidationRuleFragment\n }\n}"): (typeof documents)["mutation updateStringFormatContentValidationRule($input: UpdateStringFormatContentValidationRuleInput!) {\n updateStringFormatContentValidationRule(input: $input) {\n ...contentValidationRuleFragment\n }\n}"];
|
|
239
|
+
export declare function graphql(source: "mutation updateValueTypeValidationRule($input: UpdateValueTypeContentValidationRuleInput!) {\n updateValueTypeContentValidationRule(input: $input) {\n ...contentValidationRuleFragment\n }\n}"): (typeof documents)["mutation updateValueTypeValidationRule($input: UpdateValueTypeContentValidationRuleInput!) {\n updateValueTypeContentValidationRule(input: $input) {\n ...contentValidationRuleFragment\n }\n}"];
|
|
240
|
+
export declare function graphql(source: "query allContentValues($paginate: PaginationOptionsInput!, $where: [ContentValuesFilterInput!], $orderBy: OrderOptionsInput) {\n contentValues(paginate: $paginate, where: $where, orderBy: $orderBy) {\n pageInfo {\n ...pagination\n }\n totalCount\n edges {\n cursor\n node {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n contentItem {\n ...contentItemFragment\n contentType {\n ...contentTypeFragment\n }\n }\n relatedAsset {\n ...assetFragment\n }\n linkedGridPlacement {\n ...gridPlacementFragment\n }\n linkedPathPart {\n ...pathPartFragment\n }\n relatedContentItem {\n ...contentItemFragment\n }\n }\n }\n }\n}"): (typeof documents)["query allContentValues($paginate: PaginationOptionsInput!, $where: [ContentValuesFilterInput!], $orderBy: OrderOptionsInput) {\n contentValues(paginate: $paginate, where: $where, orderBy: $orderBy) {\n pageInfo {\n ...pagination\n }\n totalCount\n edges {\n cursor\n node {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n contentItem {\n ...contentItemFragment\n contentType {\n ...contentTypeFragment\n }\n }\n relatedAsset {\n ...assetFragment\n }\n linkedGridPlacement {\n ...gridPlacementFragment\n }\n linkedPathPart {\n ...pathPartFragment\n }\n relatedContentItem {\n ...contentItemFragment\n }\n }\n }\n }\n}"];
|
|
241
|
+
export declare function graphql(source: "fragment contentValueFragment on ContentValue {\n _id: prn\n prn\n primitiveValue\n interpolatedSmartText\n isReusable\n createdAt\n updatedAt\n}"): (typeof documents)["fragment contentValueFragment on ContentValue {\n _id: prn\n prn\n primitiveValue\n interpolatedSmartText\n isReusable\n createdAt\n updatedAt\n}"];
|
|
242
|
+
export declare function graphql(source: "mutation createContentValue($createContentValueInput: [CreateContentValueInput!]!) {\n createContentValue(input: $createContentValueInput) {\n ...contentValueFragment\n relatedAsset {\n ...assetFragment\n }\n relatedContentItem {\n ...contentItemFragment\n }\n linkedGridPlacement {\n ...gridPlacementFragment\n }\n linkedPathPart {\n ...pathPartFragment\n }\n }\n}"): (typeof documents)["mutation createContentValue($createContentValueInput: [CreateContentValueInput!]!) {\n createContentValue(input: $createContentValueInput) {\n ...contentValueFragment\n relatedAsset {\n ...assetFragment\n }\n relatedContentItem {\n ...contentItemFragment\n }\n linkedGridPlacement {\n ...gridPlacementFragment\n }\n linkedPathPart {\n ...pathPartFragment\n }\n }\n}"];
|
|
243
|
+
export declare function graphql(source: "mutation removeContentValue($prn: [PRN!]!) {\n removeContentValue(prn: $prn) {\n _id: prn\n prn\n primitiveValue\n interpolatedSmartText\n isReusable\n createdAt\n updatedAt\n }\n}"): (typeof documents)["mutation removeContentValue($prn: [PRN!]!) {\n removeContentValue(prn: $prn) {\n _id: prn\n prn\n primitiveValue\n interpolatedSmartText\n isReusable\n createdAt\n updatedAt\n }\n}"];
|
|
244
|
+
export declare function graphql(source: "mutation updateContentValue($updateContentValueInput: [UpdateContentValueInput!]!) {\n updateContentValue(input: $updateContentValueInput) {\n ...contentValueFragment\n }\n}"): (typeof documents)["mutation updateContentValue($updateContentValueInput: [UpdateContentValueInput!]!) {\n updateContentValue(input: $updateContentValueInput) {\n ...contentValueFragment\n }\n}"];
|
|
245
|
+
export declare function graphql(source: "mutation createExperienceComponent($input: [CreateExperienceComponentInput!]!) {\n createExperienceComponent(input: $input) {\n ...experienceComponentFragment\n buildingBlock {\n ...buildingBlockFragment\n buildingBlockFields {\n ...buildingBlockFieldFragment\n }\n }\n buildingBlockFieldFulfillments {\n ...buildingBlockFieldFulfillmentFragment\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n contentValue {\n ...contentValueFragment\n relatedAsset {\n ...assetFragment\n }\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n }\n }\n }\n }\n }\n}"): (typeof documents)["mutation createExperienceComponent($input: [CreateExperienceComponentInput!]!) {\n createExperienceComponent(input: $input) {\n ...experienceComponentFragment\n buildingBlock {\n ...buildingBlockFragment\n buildingBlockFields {\n ...buildingBlockFieldFragment\n }\n }\n buildingBlockFieldFulfillments {\n ...buildingBlockFieldFulfillmentFragment\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n contentValue {\n ...contentValueFragment\n relatedAsset {\n ...assetFragment\n }\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n }\n }\n }\n }\n }\n}"];
|
|
246
|
+
export declare function graphql(source: "mutation createGlobalExperienceComponent($input: [CreateGlobalExperienceComponentInput!]!) {\n createGlobalExperienceComponent(input: $input) {\n ...experienceComponentFragment\n buildingBlock {\n ...buildingBlockFragment\n }\n }\n}"): (typeof documents)["mutation createGlobalExperienceComponent($input: [CreateGlobalExperienceComponentInput!]!) {\n createGlobalExperienceComponent(input: $input) {\n ...experienceComponentFragment\n buildingBlock {\n ...buildingBlockFragment\n }\n }\n}"];
|
|
247
|
+
export declare function graphql(source: "fragment experienceComponentFragment on ExperienceComponent {\n _id: prn\n prn\n stage\n name\n isDraft\n preview {\n ...assetFragment\n }\n isGlobal\n createdAt\n updatedAt\n}"): (typeof documents)["fragment experienceComponentFragment on ExperienceComponent {\n _id: prn\n prn\n stage\n name\n isDraft\n preview {\n ...assetFragment\n }\n isGlobal\n createdAt\n updatedAt\n}"];
|
|
248
|
+
export declare function graphql(source: "query ExperienceComponent($prn: [PRN!]!) {\n experienceComponent(prn: $prn) {\n ...experienceComponentFragment\n gridPlacements {\n grid {\n experienceComponent {\n contentExperience {\n ...contentExperienceFragment\n }\n }\n }\n }\n buildingBlock {\n ...buildingBlockFragment\n buildingBlockFields {\n ...buildingBlockFieldFragment\n }\n }\n buildingBlockFieldFulfillments {\n ...buildingBlockFieldFulfillmentFragment\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n contentValue {\n ...contentValueFragment\n relatedAsset {\n ...assetFragment\n }\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n }\n }\n contentItem {\n prn\n }\n }\n }\n }\n}"): (typeof documents)["query ExperienceComponent($prn: [PRN!]!) {\n experienceComponent(prn: $prn) {\n ...experienceComponentFragment\n gridPlacements {\n grid {\n experienceComponent {\n contentExperience {\n ...contentExperienceFragment\n }\n }\n }\n }\n buildingBlock {\n ...buildingBlockFragment\n buildingBlockFields {\n ...buildingBlockFieldFragment\n }\n }\n buildingBlockFieldFulfillments {\n ...buildingBlockFieldFulfillmentFragment\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n contentValue {\n ...contentValueFragment\n relatedAsset {\n ...assetFragment\n }\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n }\n }\n contentItem {\n prn\n }\n }\n }\n }\n}"];
|
|
249
|
+
export declare function graphql(source: "query ExperienceComponents($paginate: PaginationOptionsInput!, $where: [ExperienceComponentsFilterInput!]) {\n experienceComponents(paginate: $paginate, where: $where) {\n totalCount\n edges {\n cursor\n node {\n ...experienceComponentFragment\n gridPlacements {\n grid {\n experienceComponent {\n contentExperience {\n ...contentExperienceFragment\n }\n }\n }\n }\n buildingBlock {\n ...buildingBlockFragment\n }\n }\n }\n pageInfo {\n ...pagination\n }\n }\n}"): (typeof documents)["query ExperienceComponents($paginate: PaginationOptionsInput!, $where: [ExperienceComponentsFilterInput!]) {\n experienceComponents(paginate: $paginate, where: $where) {\n totalCount\n edges {\n cursor\n node {\n ...experienceComponentFragment\n gridPlacements {\n grid {\n experienceComponent {\n contentExperience {\n ...contentExperienceFragment\n }\n }\n }\n }\n buildingBlock {\n ...buildingBlockFragment\n }\n }\n }\n pageInfo {\n ...pagination\n }\n }\n}"];
|
|
250
|
+
export declare function graphql(source: "mutation RemoveExperienceComponent($prn: [PRN!]!) {\n removeExperienceComponent(prn: $prn) {\n _id: prn\n prn\n stage\n name\n isDraft\n isGlobal\n createdAt\n updatedAt\n }\n}"): (typeof documents)["mutation RemoveExperienceComponent($prn: [PRN!]!) {\n removeExperienceComponent(prn: $prn) {\n _id: prn\n prn\n stage\n name\n isDraft\n isGlobal\n createdAt\n updatedAt\n }\n}"];
|
|
251
|
+
export declare function graphql(source: "mutation updateExperienceComponent($input: [UpdateExperienceComponentInput!]!) {\n updateExperienceComponent(input: $input) {\n ...experienceComponentFragment\n buildingBlock {\n ...buildingBlockFragment\n buildingBlockFields {\n ...buildingBlockFieldFragment\n }\n }\n buildingBlockFieldFulfillments {\n ...buildingBlockFieldFulfillmentFragment\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n contentValue {\n ...contentValueFragment\n relatedAsset {\n ...assetFragment\n }\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n }\n }\n contentItem {\n prn\n }\n }\n }\n }\n}"): (typeof documents)["mutation updateExperienceComponent($input: [UpdateExperienceComponentInput!]!) {\n updateExperienceComponent(input: $input) {\n ...experienceComponentFragment\n buildingBlock {\n ...buildingBlockFragment\n buildingBlockFields {\n ...buildingBlockFieldFragment\n }\n }\n buildingBlockFieldFulfillments {\n ...buildingBlockFieldFulfillmentFragment\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n contentValue {\n ...contentValueFragment\n relatedAsset {\n ...assetFragment\n }\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n }\n }\n contentItem {\n prn\n }\n }\n }\n }\n}"];
|
|
252
|
+
export declare function graphql(source: "fragment pagination on PageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n}"): (typeof documents)["fragment pagination on PageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n}"];
|
|
253
|
+
export declare function graphql(source: "mutation createGridDefinition($input: [CreateGridDefinitionInput!]!) {\n createGridDefinition(input: $input) {\n ...gridDefinitionFragment\n }\n}"): (typeof documents)["mutation createGridDefinition($input: [CreateGridDefinitionInput!]!) {\n createGridDefinition(input: $input) {\n ...gridDefinitionFragment\n }\n}"];
|
|
254
|
+
export declare function graphql(source: "fragment gridDefinitionFragment on GridDefinition {\n _id: prn\n prn\n maxRows\n}"): (typeof documents)["fragment gridDefinitionFragment on GridDefinition {\n _id: prn\n prn\n maxRows\n}"];
|
|
255
|
+
export declare function graphql(source: "mutation createGridPlacement($input: [CreateGridPlacementInput!]!) {\n createGridPlacement(input: $input) {\n ...gridPlacementFragment\n experienceComponent {\n ...experienceComponentFragment\n buildingBlock {\n ...buildingBlockFragment\n buildingBlockFields {\n ...buildingBlockFieldFragment\n }\n }\n buildingBlockFieldFulfillments {\n ...buildingBlockFieldFulfillmentFragment\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n contentValue {\n ...contentValueFragment\n relatedAsset {\n ...assetFragment\n }\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n }\n }\n }\n }\n }\n }\n}"): (typeof documents)["mutation createGridPlacement($input: [CreateGridPlacementInput!]!) {\n createGridPlacement(input: $input) {\n ...gridPlacementFragment\n experienceComponent {\n ...experienceComponentFragment\n buildingBlock {\n ...buildingBlockFragment\n buildingBlockFields {\n ...buildingBlockFieldFragment\n }\n }\n buildingBlockFieldFulfillments {\n ...buildingBlockFieldFulfillmentFragment\n buildingBlockField {\n ...buildingBlockFieldFragment\n }\n contentValue {\n ...contentValueFragment\n relatedAsset {\n ...assetFragment\n }\n relatedContentItem {\n ...contentItemFragment\n contentValues {\n ...contentValueFragment\n contentField {\n ...contentFieldFragment\n }\n }\n }\n }\n }\n }\n }\n}"];
|
|
256
|
+
export declare function graphql(source: "fragment gridPlacementFragment on GridPlacement {\n _id: prn\n prn\n row\n updatedAt\n createdAt\n}"): (typeof documents)["fragment gridPlacementFragment on GridPlacement {\n _id: prn\n prn\n row\n updatedAt\n createdAt\n}"];
|
|
257
|
+
export declare function graphql(source: "mutation RemoveGridPlacement($prn: [PRN!]!) {\n removeGridPlacement(prn: $prn) {\n ...gridPlacementFragment\n }\n}"): (typeof documents)["mutation RemoveGridPlacement($prn: [PRN!]!) {\n removeGridPlacement(prn: $prn) {\n ...gridPlacementFragment\n }\n}"];
|
|
258
|
+
export declare function graphql(source: "mutation UpdateGridPlacement($input: [UpdateGridPlacementInput!]!) {\n updateGridPlacement(input: $input) {\n ...gridPlacementFragment\n experienceComponent {\n ...experienceComponentFragment\n }\n }\n}"): (typeof documents)["mutation UpdateGridPlacement($input: [UpdateGridPlacementInput!]!) {\n updateGridPlacement(input: $input) {\n ...gridPlacementFragment\n experienceComponent {\n ...experienceComponentFragment\n }\n }\n}"];
|
|
259
|
+
export declare function graphql(source: "fragment gridFragment on Grid {\n _id: prn\n prn\n rows\n updatedAt\n createdAt\n}"): (typeof documents)["fragment gridFragment on Grid {\n _id: prn\n prn\n rows\n updatedAt\n createdAt\n}"];
|
|
260
|
+
export declare function graphql(source: "mutation acceptInvitation($handleInvitationInput: HandleInvitationInput!) {\n acceptInvitation(input: $handleInvitationInput) {\n ...roleAssignmentFragment\n role {\n createdAt\n name\n prn\n updatedAt\n }\n }\n}"): (typeof documents)["mutation acceptInvitation($handleInvitationInput: HandleInvitationInput!) {\n acceptInvitation(input: $handleInvitationInput) {\n ...roleAssignmentFragment\n role {\n createdAt\n name\n prn\n updatedAt\n }\n }\n}"];
|
|
261
|
+
export declare function graphql(source: "mutation createInvitation($createInvitationInput: [CreateInvitationInput!]!) {\n createInvitation(input: $createInvitationInput) {\n ...invitationFragment\n role {\n ...roleFragment\n organization {\n ...organizationFragment\n }\n }\n }\n}"): (typeof documents)["mutation createInvitation($createInvitationInput: [CreateInvitationInput!]!) {\n createInvitation(input: $createInvitationInput) {\n ...invitationFragment\n role {\n ...roleFragment\n organization {\n ...organizationFragment\n }\n }\n }\n}"];
|
|
262
|
+
export declare function graphql(source: "mutation declineInvitation($handleInvitationInput: HandleInvitationInput!) {\n declineInvitation(input: $handleInvitationInput) {\n ...invitationFragment\n }\n}"): (typeof documents)["mutation declineInvitation($handleInvitationInput: HandleInvitationInput!) {\n declineInvitation(input: $handleInvitationInput) {\n ...invitationFragment\n }\n}"];
|
|
263
|
+
export declare function graphql(source: "fragment invitationFragment on Invitation {\n _id: prn\n prn\n userEmail\n createdAt\n updatedAt\n}"): (typeof documents)["fragment invitationFragment on Invitation {\n _id: prn\n prn\n userEmail\n createdAt\n updatedAt\n}"];
|
|
264
|
+
export declare function graphql(source: "query invitationsForCurrentSubject {\n invitationsForCurrentSubject {\n ...invitationFragment\n role {\n ...roleFragment\n organization {\n ...organizationFragment\n }\n }\n }\n}"): (typeof documents)["query invitationsForCurrentSubject {\n invitationsForCurrentSubject {\n ...invitationFragment\n role {\n ...roleFragment\n organization {\n ...organizationFragment\n }\n }\n }\n}"];
|
|
265
|
+
export declare function graphql(source: "query invitationsForOrganization {\n invitationsForOrganization {\n ...invitationFragment\n role {\n ...roleFragment\n }\n }\n}"): (typeof documents)["query invitationsForOrganization {\n invitationsForOrganization {\n ...invitationFragment\n role {\n ...roleFragment\n }\n }\n}"];
|
|
266
|
+
export declare function graphql(source: "mutation removeInvitation($prn: [PRN!]!) {\n removeInvitation(prn: $prn) {\n ...invitationFragment\n }\n}"): (typeof documents)["mutation removeInvitation($prn: [PRN!]!) {\n removeInvitation(prn: $prn) {\n ...invitationFragment\n }\n}"];
|
|
267
|
+
export declare function graphql(source: "mutation createOrganization($createOrganizationInput: CreateOrganizationInput!) {\n createOrganization(input: $createOrganizationInput) {\n ...organizationFragment\n }\n}"): (typeof documents)["mutation createOrganization($createOrganizationInput: CreateOrganizationInput!) {\n createOrganization(input: $createOrganizationInput) {\n ...organizationFragment\n }\n}"];
|
|
268
|
+
export declare function graphql(source: "query isOrganizationSeeding($prn: [PRN!]!) {\n organization(prn: $prn) {\n seedStatus\n }\n}"): (typeof documents)["query isOrganizationSeeding($prn: [PRN!]!) {\n organization(prn: $prn) {\n seedStatus\n }\n}"];
|
|
269
|
+
export declare function graphql(source: "fragment organizationFragment on Organization {\n _id: prn\n prn\n name\n slug\n logo {\n ...assetFragment\n processedUrls(optionsList: [{width: 32, height: 32}])\n }\n logoUrl\n seedStatus\n createdAt\n updatedAt\n}"): (typeof documents)["fragment organizationFragment on Organization {\n _id: prn\n prn\n name\n slug\n logo {\n ...assetFragment\n processedUrls(optionsList: [{width: 32, height: 32}])\n }\n logoUrl\n seedStatus\n createdAt\n updatedAt\n}"];
|
|
270
|
+
export declare function graphql(source: "mutation removeOrganization($prn: [PRN!]!) {\n removeOrganization(prn: $prn) {\n _id: prn\n prn\n name\n slug\n logoUrl\n seedStatus\n createdAt\n updatedAt\n }\n}"): (typeof documents)["mutation removeOrganization($prn: [PRN!]!) {\n removeOrganization(prn: $prn) {\n _id: prn\n prn\n name\n slug\n logoUrl\n seedStatus\n createdAt\n updatedAt\n }\n}"];
|
|
271
|
+
export declare function graphql(source: "query rolesOfOrganization($prn: [PRN!]!) {\n organization(prn: $prn) {\n prn\n roles {\n ...roleFragment\n }\n }\n}"): (typeof documents)["query rolesOfOrganization($prn: [PRN!]!) {\n organization(prn: $prn) {\n prn\n roles {\n ...roleFragment\n }\n }\n}"];
|
|
272
|
+
export declare function graphql(source: "query organization($prn: [PRN!]!) {\n organization(prn: $prn) {\n ...organizationFragment\n roles {\n ...roleFragment\n roleAssignments {\n ...roleAssignmentFragment\n subject {\n ...subjectFields\n }\n }\n invitations {\n ...invitationFragment\n }\n }\n }\n}"): (typeof documents)["query organization($prn: [PRN!]!) {\n organization(prn: $prn) {\n ...organizationFragment\n roles {\n ...roleFragment\n roleAssignments {\n ...roleAssignmentFragment\n subject {\n ...subjectFields\n }\n }\n invitations {\n ...invitationFragment\n }\n }\n }\n}"];
|
|
273
|
+
export declare function graphql(source: "mutation updateOrganization($updateOrganizationInput: [UpdateOrganizationInput!]!) {\n updateOrganization(input: $updateOrganizationInput) {\n ...organizationFragment\n }\n}"): (typeof documents)["mutation updateOrganization($updateOrganizationInput: [UpdateOrganizationInput!]!) {\n updateOrganization(input: $updateOrganizationInput) {\n ...organizationFragment\n }\n}"];
|
|
274
|
+
export declare function graphql(source: "mutation createPathPartFromParent($input: [CreatePathPartFromParentInput!]!) {\n createPathPartFromParent(input: $input) {\n ...pathPartFragment\n }\n}"): (typeof documents)["mutation createPathPartFromParent($input: [CreatePathPartFromParentInput!]!) {\n createPathPartFromParent(input: $input) {\n ...pathPartFragment\n }\n}"];
|
|
275
|
+
export declare function graphql(source: "mutation createPathPartFromPath($input: [CreatePathPartFromPathInput!]!) {\n createPathPartFromPath(input: $input) {\n ...pathPartFragment\n }\n}"): (typeof documents)["mutation createPathPartFromPath($input: [CreatePathPartFromPathInput!]!) {\n createPathPartFromPath(input: $input) {\n ...pathPartFragment\n }\n}"];
|
|
276
|
+
export declare function graphql(source: "query detailedPathPart($prn: [PRN!]!) {\n pathPart(prn: $prn) {\n ...pathPartFragment\n contentExperience {\n prn\n }\n parent {\n ...pathPartFragment\n }\n children {\n ...pathPartFragment\n parent {\n prn\n }\n }\n }\n}"): (typeof documents)["query detailedPathPart($prn: [PRN!]!) {\n pathPart(prn: $prn) {\n ...pathPartFragment\n contentExperience {\n prn\n }\n parent {\n ...pathPartFragment\n }\n children {\n ...pathPartFragment\n parent {\n prn\n }\n }\n }\n}"];
|
|
277
|
+
export declare function graphql(source: "query pathPart($prn: [PRN!]!) {\n pathPart(prn: $prn) {\n ...pathPartFragment\n contentExperience {\n prn\n }\n parent {\n ...pathPartFragment\n }\n }\n}"): (typeof documents)["query pathPart($prn: [PRN!]!) {\n pathPart(prn: $prn) {\n ...pathPartFragment\n contentExperience {\n prn\n }\n parent {\n ...pathPartFragment\n }\n }\n}"];
|
|
278
|
+
export declare function graphql(source: "fragment pathPartFragment on PathPart {\n _id: prn\n prn\n slug\n path\n createdAt\n updatedAt\n channel {\n prn\n }\n hasContentExperience\n amountOfChildren\n amountOfChildrenWithContentExperiences\n amountOfDescendants\n amountOfDescendantsWithContentExperiences\n contentExperience {\n prn\n }\n}"): (typeof documents)["fragment pathPartFragment on PathPart {\n _id: prn\n prn\n slug\n path\n createdAt\n updatedAt\n channel {\n prn\n }\n hasContentExperience\n amountOfChildren\n amountOfChildrenWithContentExperiences\n amountOfDescendants\n amountOfDescendantsWithContentExperiences\n contentExperience {\n prn\n }\n}"];
|
|
279
|
+
export declare function graphql(source: "query pathParts($paginate: PaginationOptionsInput!, $where: [PathPartsFilterInput!], $orderBy: OrderOptionsInput, $optionsList: [ProcessedAssetOptionsInput!]!) {\n pathParts(paginate: $paginate, where: $where, orderBy: $orderBy) {\n pageInfo {\n ...pagination\n }\n totalCount\n edges {\n cursor\n node {\n ...pathPartFragment\n channel {\n ...channelFragment\n }\n contentExperience {\n ...contentExperienceFragment\n preview {\n ...assetFragment\n processedUrls(optionsList: $optionsList)\n }\n }\n }\n }\n }\n}"): (typeof documents)["query pathParts($paginate: PaginationOptionsInput!, $where: [PathPartsFilterInput!], $orderBy: OrderOptionsInput, $optionsList: [ProcessedAssetOptionsInput!]!) {\n pathParts(paginate: $paginate, where: $where, orderBy: $orderBy) {\n pageInfo {\n ...pagination\n }\n totalCount\n edges {\n cursor\n node {\n ...pathPartFragment\n channel {\n ...channelFragment\n }\n contentExperience {\n ...contentExperienceFragment\n preview {\n ...assetFragment\n processedUrls(optionsList: $optionsList)\n }\n }\n }\n }\n }\n}"];
|
|
280
|
+
export declare function graphql(source: "mutation removePathPart($prn: [PRN!]!) {\n removePathPart(prn: $prn) {\n ...pathPartFragment\n }\n}"): (typeof documents)["mutation removePathPart($prn: [PRN!]!) {\n removePathPart(prn: $prn) {\n ...pathPartFragment\n }\n}"];
|
|
281
|
+
export declare function graphql(source: "mutation updatePathPart($input: [UpdatePathPartInput!]!) {\n updatePathPart(input: $input) {\n ...pathPartFragment\n }\n}"): (typeof documents)["mutation updatePathPart($input: [UpdatePathPartInput!]!) {\n updatePathPart(input: $input) {\n ...pathPartFragment\n }\n}"];
|
|
282
|
+
export declare function graphql(source: "mutation updatePathPartFromPath($input: [UpdatePathPartByPathInput!]!) {\n updatePathPartFromPath(input: $input) {\n ...pathPartFragment\n }\n}"): (typeof documents)["mutation updatePathPartFromPath($input: [UpdatePathPartByPathInput!]!) {\n updatePathPartFromPath(input: $input) {\n ...pathPartFragment\n }\n}"];
|
|
283
|
+
export declare function graphql(source: "mutation addPlateMaintainer($email: String!) {\n addPlateMaintainer(email: $email) {\n ...plateMaintainerFragment\n }\n}"): (typeof documents)["mutation addPlateMaintainer($email: String!) {\n addPlateMaintainer(email: $email) {\n ...plateMaintainerFragment\n }\n}"];
|
|
284
|
+
export declare function graphql(source: "query allPlateMaintainers {\n plateMaintainers {\n ...plateMaintainerFragment\n }\n}"): (typeof documents)["query allPlateMaintainers {\n plateMaintainers {\n ...plateMaintainerFragment\n }\n}"];
|
|
285
|
+
export declare function graphql(source: "fragment plateMaintainerFragment on Subject {\n _id: id\n id\n name {\n first\n last\n }\n language\n email\n}"): (typeof documents)["fragment plateMaintainerFragment on Subject {\n _id: id\n id\n name {\n first\n last\n }\n language\n email\n}"];
|
|
286
|
+
export declare function graphql(source: "mutation removePlateMaintainer($removePlateMaintainerId: String!) {\n removePlateMaintainer(id: $removePlateMaintainerId) {\n id\n }\n}"): (typeof documents)["mutation removePlateMaintainer($removePlateMaintainerId: String!) {\n removePlateMaintainer(id: $removePlateMaintainerId) {\n id\n }\n}"];
|
|
287
|
+
export declare function graphql(source: "mutation removeRoleAssignment($prn: [PRN!]!) {\n removeRoleAssignment(prn: $prn) {\n ...roleAssignmentFragment\n role {\n createdAt\n name\n prn\n updatedAt\n }\n }\n}"): (typeof documents)["mutation removeRoleAssignment($prn: [PRN!]!) {\n removeRoleAssignment(prn: $prn) {\n ...roleAssignmentFragment\n role {\n createdAt\n name\n prn\n updatedAt\n }\n }\n}"];
|
|
288
|
+
export declare function graphql(source: "fragment roleAssignmentFragment on RoleAssignment {\n _id: prn\n prn\n subject {\n id\n }\n createdAt\n updatedAt\n}"): (typeof documents)["fragment roleAssignmentFragment on RoleAssignment {\n _id: prn\n prn\n subject {\n id\n }\n createdAt\n updatedAt\n}"];
|
|
289
|
+
export declare function graphql(source: "query RoleAssignmentsForCurrentSubject {\n roleAssignmentsForCurrentSubject {\n ...roleAssignmentFragment\n role {\n ...roleFragment\n organization {\n ...organizationFragment\n }\n }\n }\n}"): (typeof documents)["query RoleAssignmentsForCurrentSubject {\n roleAssignmentsForCurrentSubject {\n ...roleAssignmentFragment\n role {\n ...roleFragment\n organization {\n ...organizationFragment\n }\n }\n }\n}"];
|
|
290
|
+
export declare function graphql(source: "query roleAssignmentsForOrganization {\n roleAssignmentsForOrganization {\n ...roleAssignmentFragment\n role {\n ...roleFragment\n }\n subject {\n ...subjectFields\n }\n }\n}"): (typeof documents)["query roleAssignmentsForOrganization {\n roleAssignmentsForOrganization {\n ...roleAssignmentFragment\n role {\n ...roleFragment\n }\n subject {\n ...subjectFields\n }\n }\n}"];
|
|
291
|
+
export declare function graphql(source: "fragment roleFragment on Role {\n _id: prn\n prn\n name\n createdAt\n updatedAt\n}"): (typeof documents)["fragment roleFragment on Role {\n _id: prn\n prn\n name\n createdAt\n updatedAt\n}"];
|
|
292
|
+
export declare function graphql(source: "mutation runSeeder($seedType: SeedType!) {\n runSeeder(seedType: $seedType)\n}"): (typeof documents)["mutation runSeeder($seedType: SeedType!) {\n runSeeder(seedType: $seedType)\n}"];
|
|
293
|
+
export declare function graphql(source: "query CurrentSubject {\n currentSubject {\n id\n email\n isPlateMaintainer\n language\n name {\n first\n last\n }\n roleAssignments {\n ...roleAssignmentFragment\n }\n }\n}"): (typeof documents)["query CurrentSubject {\n currentSubject {\n id\n email\n isPlateMaintainer\n language\n name {\n first\n last\n }\n roleAssignments {\n ...roleAssignmentFragment\n }\n }\n}"];
|
|
294
|
+
export declare function graphql(source: "fragment subjectFields on Subject {\n _id: id\n email\n name {\n first\n last\n }\n}"): (typeof documents)["fragment subjectFields on Subject {\n _id: id\n email\n name {\n first\n last\n }\n}"];
|
|
295
|
+
export declare function graphql(source: "mutation createTag($createTagInput: [CreateTagInput!]!) {\n createTag(input: $createTagInput) {\n ...tagFragment\n }\n}"): (typeof documents)["mutation createTag($createTagInput: [CreateTagInput!]!) {\n createTag(input: $createTagInput) {\n ...tagFragment\n }\n}"];
|
|
296
|
+
export declare function graphql(source: "mutation removeTag($prn: [PRN!]!) {\n removeTag(prn: $prn) {\n ...tagFragment\n }\n}"): (typeof documents)["mutation removeTag($prn: [PRN!]!) {\n removeTag(prn: $prn) {\n ...tagFragment\n }\n}"];
|
|
297
|
+
export declare function graphql(source: "query tag($prn: [PRN!]!) {\n tag(prn: $prn) {\n ...tagFragment\n children {\n ...tagFragment\n }\n parent {\n ...tagFragment\n }\n }\n}"): (typeof documents)["query tag($prn: [PRN!]!) {\n tag(prn: $prn) {\n ...tagFragment\n children {\n ...tagFragment\n }\n parent {\n ...tagFragment\n }\n }\n}"];
|
|
298
|
+
export declare function graphql(source: "fragment tagFragment on Tag {\n _id: prn\n prn\n name\n path\n color\n visibility\n forceVisibilityOnDescendants\n stage\n amountOfChildren\n amountOfContentExperiences\n amountOfContentItems\n hasForcedVisibility\n nestingLevel\n createdAt\n updatedAt\n}"): (typeof documents)["fragment tagFragment on Tag {\n _id: prn\n prn\n name\n path\n color\n visibility\n forceVisibilityOnDescendants\n stage\n amountOfChildren\n amountOfContentExperiences\n amountOfContentItems\n hasForcedVisibility\n nestingLevel\n createdAt\n updatedAt\n}"];
|
|
299
|
+
export declare function graphql(source: "query tags($paginate: PaginationOptionsInput!, $where: [TagsFilterInput!], $orderBy: OrderOptionsInput) {\n tags(paginate: $paginate, where: $where, orderBy: $orderBy) {\n pageInfo {\n ...pagination\n }\n totalCount\n edges {\n cursor\n node {\n ...tagFragment\n parent {\n prn\n forceVisibilityOnDescendants\n }\n }\n }\n }\n}"): (typeof documents)["query tags($paginate: PaginationOptionsInput!, $where: [TagsFilterInput!], $orderBy: OrderOptionsInput) {\n tags(paginate: $paginate, where: $where, orderBy: $orderBy) {\n pageInfo {\n ...pagination\n }\n totalCount\n edges {\n cursor\n node {\n ...tagFragment\n parent {\n prn\n forceVisibilityOnDescendants\n }\n }\n }\n }\n}"];
|
|
300
|
+
export declare function graphql(source: "mutation updateTag($updateTagInput: [UpdateTagInput!]!) {\n updateTag(input: $updateTagInput) {\n ...tagFragment\n }\n}"): (typeof documents)["mutation updateTag($updateTagInput: [UpdateTagInput!]!) {\n updateTag(input: $updateTagInput) {\n ...tagFragment\n }\n}"];
|
|
301
|
+
export declare function graphql(source: "mutation CreateTheme($input: [CreateThemeInput!]!) {\n createTheme(input: $input) {\n ...themeFragment\n }\n}"): (typeof documents)["mutation CreateTheme($input: [CreateThemeInput!]!) {\n createTheme(input: $input) {\n ...themeFragment\n }\n}"];
|
|
302
|
+
export declare function graphql(source: "mutation RemoveTheme($prn: [PRN!]!) {\n removeTheme(prn: $prn) {\n ...themeFragment\n }\n}"): (typeof documents)["mutation RemoveTheme($prn: [PRN!]!) {\n removeTheme(prn: $prn) {\n ...themeFragment\n }\n}"];
|
|
303
|
+
export declare function graphql(source: "query Theme($prn: [PRN!]!, $whereBuildingBlocks: [BuildingBlocksFilterInput!]) {\n theme(prn: $prn) {\n ...themeFragment\n buildingBlocks(where: $whereBuildingBlocks) {\n ...buildingBlockFragment\n buildingBlockFields {\n ...buildingBlockFieldFragment\n }\n }\n }\n}"): (typeof documents)["query Theme($prn: [PRN!]!, $whereBuildingBlocks: [BuildingBlocksFilterInput!]) {\n theme(prn: $prn) {\n ...themeFragment\n buildingBlocks(where: $whereBuildingBlocks) {\n ...buildingBlockFragment\n buildingBlockFields {\n ...buildingBlockFieldFragment\n }\n }\n }\n}"];
|
|
304
|
+
export declare function graphql(source: "fragment themeFragment on Theme {\n _id: prn\n prn\n name\n repositoryUrl\n createdAt\n updatedAt\n}"): (typeof documents)["fragment themeFragment on Theme {\n _id: prn\n prn\n name\n repositoryUrl\n createdAt\n updatedAt\n}"];
|
|
305
|
+
export declare function graphql(source: "query Themes($paginate: PaginationOptionsInput!, $orderBy: OrderOptionsInput, $where: [ThemesFilterInput!]) {\n themes(paginate: $paginate, orderBy: $orderBy, where: $where) {\n edges {\n cursor\n node {\n ...themeFragment\n }\n }\n pageInfo {\n ...pagination\n }\n totalCount\n }\n}"): (typeof documents)["query Themes($paginate: PaginationOptionsInput!, $orderBy: OrderOptionsInput, $where: [ThemesFilterInput!]) {\n themes(paginate: $paginate, orderBy: $orderBy, where: $where) {\n edges {\n cursor\n node {\n ...themeFragment\n }\n }\n pageInfo {\n ...pagination\n }\n totalCount\n }\n}"];
|
|
306
|
+
export declare function graphql(source: "mutation UpdateTheme($input: [UpdateThemeInput!]!) {\n updateTheme(input: $input) {\n ...themeFragment\n }\n}"): (typeof documents)["mutation UpdateTheme($input: [UpdateThemeInput!]!) {\n updateTheme(input: $input) {\n ...themeFragment\n }\n}"];
|
|
3
307
|
export type DocumentType<TDocumentNode extends DocumentNode<any, any>> = TDocumentNode extends DocumentNode<infer TType, any> ? TType : never;
|
|
308
|
+
export {};
|