@platecms/delta-client 0.4.1 → 0.7.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/README.md +309 -96
- package/package.json +4 -6
- package/src/__generated__/fragment-masking.ts +87 -0
- package/src/__generated__/gql.ts +52 -0
- package/src/__generated__/graphql.ts +3141 -0
- package/src/__generated__/{index.d.ts → index.ts} +1 -1
- package/src/api/index.ts +1 -0
- package/src/apollo/index.ts +70 -0
- package/src/graphql/tags/tag.query.gql +5 -0
- package/src/graphql/tags/tags.fragments.gql +17 -0
- package/src/schema/index.spec.ts +211 -0
- package/src/schema/index.ts +18 -0
- package/src/schema/lib/schemas/array.spec.ts +111 -0
- package/src/schema/lib/schemas/array.ts +38 -0
- package/src/schema/lib/schemas/asset.spec.ts +101 -0
- package/src/schema/lib/schemas/asset.ts +12 -0
- package/src/schema/lib/schemas/baseSchema.ts +42 -0
- package/src/schema/lib/schemas/boolean.spec.ts +65 -0
- package/src/schema/lib/schemas/boolean.ts +12 -0
- package/src/schema/lib/schemas/buildingBlock.spec.ts +56 -0
- package/src/schema/lib/schemas/buildingBlock.ts +33 -0
- package/src/schema/lib/schemas/contentItem.spec.ts +61 -0
- package/src/schema/lib/schemas/contentItem.ts +31 -0
- package/src/schema/lib/schemas/contentType.spec.ts +113 -0
- package/src/schema/lib/schemas/contentType.ts +12 -0
- package/src/schema/lib/schemas/date.spec.ts +82 -0
- package/src/schema/lib/schemas/date.ts +17 -0
- package/src/schema/lib/schemas/gridPlacement.spec.ts +77 -0
- package/src/schema/lib/schemas/gridPlacement.ts +12 -0
- package/src/schema/lib/schemas/index.ts +66 -0
- package/src/schema/lib/schemas/number.spec.ts +65 -0
- package/src/schema/lib/schemas/number.ts +12 -0
- package/src/schema/lib/schemas/pathPart.spec.ts +120 -0
- package/src/schema/lib/schemas/pathPart.ts +12 -0
- package/src/schema/lib/schemas/smartText.spec.ts +105 -0
- package/src/schema/lib/schemas/smartText.ts +12 -0
- package/src/schema/lib/schemas/string.spec.ts +65 -0
- package/src/schema/lib/schemas/string.ts +12 -0
- package/src/schema/lib/schemas/tag.spec.ts +89 -0
- package/src/schema/lib/schemas/tag.ts +12 -0
- package/src/schema/lib/utils/isContentValue.spec.ts +111 -0
- package/src/schema/lib/utils/isContentValue.ts +17 -0
- package/src/schema/lib/utils/isPrimitiveValue.spec.ts +38 -0
- package/src/schema/lib/utils/isPrimitiveValue.ts +7 -0
- package/src/slate/index.ts +84 -0
- package/src/utils/{index.d.ts → index.ts} +3 -2
- package/src/utils/lib/connectors/BaseConnector.ts +26 -0
- package/src/utils/lib/connectors/WindowConnector.ts +70 -0
- package/src/utils/lib/events/ConnectorEvents.ts +89 -0
- package/src/utils/lib/events/EventEmitter.ts +19 -0
- package/src/__generated__/fragment-masking.d.ts +0 -19
- package/src/__generated__/fragment-masking.js +0 -22
- package/src/__generated__/fragment-masking.js.map +0 -1
- package/src/__generated__/gql.d.ts +0 -308
- package/src/__generated__/gql.js +0 -161
- package/src/__generated__/gql.js.map +0 -1
- package/src/__generated__/graphql.d.ts +0 -6343
- package/src/__generated__/graphql.js +0 -219
- package/src/__generated__/graphql.js.map +0 -1
- package/src/__generated__/index.js +0 -6
- package/src/__generated__/index.js.map +0 -1
- package/src/api/index.d.ts +0 -2
- package/src/api/index.js +0 -4
- package/src/api/index.js.map +0 -1
- package/src/apollo/index.d.ts +0 -7
- package/src/apollo/index.js +0 -40
- package/src/apollo/index.js.map +0 -1
- package/src/index.js +0 -3
- package/src/index.js.map +0 -1
- package/src/schema/index.d.ts +0 -2
- package/src/schema/index.js +0 -8
- package/src/schema/index.js.map +0 -1
- package/src/schema/lib/nodes.d.ts +0 -46
- package/src/schema/lib/nodes.js +0 -14
- package/src/schema/lib/nodes.js.map +0 -1
- package/src/schema/lib/parser.d.ts +0 -12
- package/src/schema/lib/parser.js +0 -49
- package/src/schema/lib/parser.js.map +0 -1
- package/src/schema/lib/schema.d.ts +0 -17
- package/src/schema/lib/schema.js +0 -65
- package/src/schema/lib/schema.js.map +0 -1
- package/src/schema/lib/utils.d.ts +0 -12
- package/src/schema/lib/utils.js +0 -66
- package/src/schema/lib/utils.js.map +0 -1
- package/src/slate/index.d.ts +0 -65
- package/src/slate/index.js +0 -3
- package/src/slate/index.js.map +0 -1
- package/src/utils/index.js +0 -6
- package/src/utils/index.js.map +0 -1
- package/src/utils/lib/connectors/BaseConnector.d.ts +0 -16
- package/src/utils/lib/connectors/BaseConnector.js +0 -17
- package/src/utils/lib/connectors/BaseConnector.js.map +0 -1
- package/src/utils/lib/connectors/WindowConnector.d.ts +0 -10
- package/src/utils/lib/connectors/WindowConnector.js +0 -53
- package/src/utils/lib/connectors/WindowConnector.js.map +0 -1
- package/src/utils/lib/events/ConnectorEvents.d.ts +0 -63
- package/src/utils/lib/events/ConnectorEvents.js +0 -24
- package/src/utils/lib/events/ConnectorEvents.js.map +0 -1
- package/src/utils/lib/events/EventEmitter.d.ts +0 -7
- package/src/utils/lib/events/EventEmitter.js +0 -21
- package/src/utils/lib/events/EventEmitter.js.map +0 -1
- /package/src/{index.d.ts → index.ts} +0 -0
|
@@ -0,0 +1,3141 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';
|
|
3
|
+
export type Maybe<T> = T | null;
|
|
4
|
+
export type InputMaybe<T> = Maybe<T>;
|
|
5
|
+
export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
|
|
6
|
+
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
|
|
7
|
+
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
|
|
8
|
+
export type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };
|
|
9
|
+
export type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };
|
|
10
|
+
/** All built-in and custom scalars, mapped to their actual values */
|
|
11
|
+
export type Scalars = {
|
|
12
|
+
ID: { input: string; output: string; }
|
|
13
|
+
String: { input: string; output: string; }
|
|
14
|
+
Boolean: { input: boolean; output: boolean; }
|
|
15
|
+
Int: { input: number; output: number; }
|
|
16
|
+
Float: { input: number; output: number; }
|
|
17
|
+
/** The scalar for CAST. This scalar contains a Root object. */
|
|
18
|
+
CAST: { input: any; output: any; }
|
|
19
|
+
/** The ContentValueType scalar describes the types of values a ContentValue can have. */
|
|
20
|
+
ContentValueType: { input: any; output: any; }
|
|
21
|
+
/** A date-time string at UTC, such as 2019-12-03T09:54:33Z, compliant with the date-time format. */
|
|
22
|
+
DateTime: { input: any; output: any; }
|
|
23
|
+
/** A string representing the PRN object. Must match '^prn(:[A-Za-z0-9-_]+){5}$'. */
|
|
24
|
+
PRN: { input: any; output: any; }
|
|
25
|
+
/** A generic Primitive value. */
|
|
26
|
+
PrimitiveValue: { input: any; output: any; }
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export type AllowedValuesContentValidationRuleSettings = {
|
|
30
|
+
__typename?: 'AllowedValuesContentValidationRuleSettings';
|
|
31
|
+
allowedValues: Array<Scalars['ContentValueType']['output']>;
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
export type AllowedValuesContentValidationRuleSettingsInput = {
|
|
35
|
+
allowedValues: Array<Scalars['ContentValueType']['input']>;
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
export type ApiToken = {
|
|
39
|
+
__typename?: 'ApiToken';
|
|
40
|
+
channel: Channel;
|
|
41
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42
|
+
name: Scalars['String']['output'];
|
|
43
|
+
prn: Scalars['PRN']['output'];
|
|
44
|
+
stage: Stage;
|
|
45
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
export type Asset = {
|
|
49
|
+
__typename?: 'Asset';
|
|
50
|
+
createdAt: Scalars['DateTime']['output'];
|
|
51
|
+
fileName: Scalars['String']['output'];
|
|
52
|
+
/** The size of the file in bytes. */
|
|
53
|
+
fileSize: Scalars['Int']['output'];
|
|
54
|
+
mimeType: Scalars['String']['output'];
|
|
55
|
+
prn: Scalars['PRN']['output'];
|
|
56
|
+
/** Generate urls for processed assets, only relevant for images. Is null if the Asset is not uploaded yet. */
|
|
57
|
+
processedUrls?: Maybe<Array<Scalars['String']['output']>>;
|
|
58
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
59
|
+
/** The URL to the Asset. Null if the Asset is not uploaded yet. */
|
|
60
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
export type AssetProcessedUrlsArgs = {
|
|
65
|
+
optionsList: Array<ProcessedAssetOptionsInput>;
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
export type Blueprint = {
|
|
69
|
+
__typename?: 'Blueprint';
|
|
70
|
+
channel: Channel;
|
|
71
|
+
createdAt: Scalars['DateTime']['output'];
|
|
72
|
+
/** The Experience Component which defines this Blueprint. */
|
|
73
|
+
definedBy: ExperienceComponent;
|
|
74
|
+
isFixed: Scalars['Boolean']['output'];
|
|
75
|
+
name: Scalars['String']['output'];
|
|
76
|
+
/** Not yet implemented! */
|
|
77
|
+
organization?: Maybe<Organization>;
|
|
78
|
+
/** The preview image of the Blueprint. */
|
|
79
|
+
preview?: Maybe<Asset>;
|
|
80
|
+
prn: Scalars['PRN']['output'];
|
|
81
|
+
stage: Stage;
|
|
82
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
export type BlueprintEdge = {
|
|
86
|
+
__typename?: 'BlueprintEdge';
|
|
87
|
+
cursor: Scalars['String']['output'];
|
|
88
|
+
node: Blueprint;
|
|
89
|
+
};
|
|
90
|
+
|
|
91
|
+
export type BlueprintsConnection = {
|
|
92
|
+
__typename?: 'BlueprintsConnection';
|
|
93
|
+
edges: Array<BlueprintEdge>;
|
|
94
|
+
pageInfo: PageInfo;
|
|
95
|
+
totalCount: Scalars['Int']['output'];
|
|
96
|
+
};
|
|
97
|
+
|
|
98
|
+
/** The filter input type for 'Blueprints'. Objects/maps are treated as AND, while arrays are treated as OR. */
|
|
99
|
+
export type BlueprintsFilterInput = {
|
|
100
|
+
_not?: InputMaybe<Array<BlueprintsFilterInput>>;
|
|
101
|
+
createdAt?: InputMaybe<Array<DateFilter>>;
|
|
102
|
+
isFixed?: InputMaybe<Array<BooleanFilter>>;
|
|
103
|
+
name?: InputMaybe<Array<StringFilter>>;
|
|
104
|
+
prn?: InputMaybe<Array<PrnFilter>>;
|
|
105
|
+
updatedAt?: InputMaybe<Array<DateFilter>>;
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
export type BooleanFilter = {
|
|
109
|
+
/** Equals */
|
|
110
|
+
_eq?: InputMaybe<Scalars['Boolean']['input']>;
|
|
111
|
+
/** Is not null */
|
|
112
|
+
_is_not_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
113
|
+
/** Is null */
|
|
114
|
+
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
115
|
+
/** Not equals */
|
|
116
|
+
_neq?: InputMaybe<Scalars['Boolean']['input']>;
|
|
117
|
+
};
|
|
118
|
+
|
|
119
|
+
export type BuildingBlock = {
|
|
120
|
+
__typename?: 'BuildingBlock';
|
|
121
|
+
buildingBlockFields: Array<BuildingBlockField>;
|
|
122
|
+
createdAt: Scalars['DateTime']['output'];
|
|
123
|
+
experienceComponents: Array<ExperienceComponent>;
|
|
124
|
+
gridDefinition?: Maybe<GridDefinition>;
|
|
125
|
+
next?: Maybe<BuildingBlock>;
|
|
126
|
+
/** Not yet implemented! */
|
|
127
|
+
organization?: Maybe<Organization>;
|
|
128
|
+
/** The preview image of the Building Block. */
|
|
129
|
+
preview?: Maybe<Asset>;
|
|
130
|
+
previous?: Maybe<BuildingBlock>;
|
|
131
|
+
prn: Scalars['PRN']['output'];
|
|
132
|
+
slug: Scalars['String']['output'];
|
|
133
|
+
theme: Theme;
|
|
134
|
+
title: Scalars['String']['output'];
|
|
135
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
136
|
+
};
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
export type BuildingBlockBuildingBlockFieldsArgs = {
|
|
140
|
+
where?: InputMaybe<Array<BuildingBlockFieldsFilterInput>>;
|
|
141
|
+
};
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
export type BuildingBlockExperienceComponentsArgs = {
|
|
145
|
+
where?: InputMaybe<Array<ExperienceComponentsFilterInput>>;
|
|
146
|
+
};
|
|
147
|
+
|
|
148
|
+
export type BuildingBlockField = {
|
|
149
|
+
__typename?: 'BuildingBlockField';
|
|
150
|
+
buildingBlock: BuildingBlock;
|
|
151
|
+
/** Validation rules that apply to this building block field. */
|
|
152
|
+
contentValidationRules: Array<ContentValidationRule>;
|
|
153
|
+
createdAt: Scalars['DateTime']['output'];
|
|
154
|
+
next?: Maybe<BuildingBlockField>;
|
|
155
|
+
/** Not yet implemented! */
|
|
156
|
+
organization?: Maybe<Organization>;
|
|
157
|
+
previous?: Maybe<BuildingBlockField>;
|
|
158
|
+
prn: Scalars['PRN']['output'];
|
|
159
|
+
slug: Scalars['String']['output'];
|
|
160
|
+
title: Scalars['String']['output'];
|
|
161
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
162
|
+
};
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
export type BuildingBlockFieldContentValidationRulesArgs = {
|
|
166
|
+
where?: InputMaybe<Array<ContentValidationRulesFilterInput>>;
|
|
167
|
+
};
|
|
168
|
+
|
|
169
|
+
export type BuildingBlockFieldEdge = {
|
|
170
|
+
__typename?: 'BuildingBlockFieldEdge';
|
|
171
|
+
cursor: Scalars['String']['output'];
|
|
172
|
+
node: BuildingBlockField;
|
|
173
|
+
};
|
|
174
|
+
|
|
175
|
+
export type BuildingBlockFieldFulfillment = {
|
|
176
|
+
__typename?: 'BuildingBlockFieldFulfillment';
|
|
177
|
+
/** The Building Block Field Fulfillment in a fixed Blueprint that this Building Block Field Fulfillment is created from. Null if not created from a fixed Blueprint. */
|
|
178
|
+
blueprintedBy?: Maybe<BuildingBlockFieldFulfillment>;
|
|
179
|
+
/** The models which this Blueprint definition defines. Null if this model is not a Blueprint definition. */
|
|
180
|
+
blueprintedInstances?: Maybe<Array<BuildingBlockFieldFulfillment>>;
|
|
181
|
+
buildingBlockField: BuildingBlockField;
|
|
182
|
+
contentValue: ContentValue;
|
|
183
|
+
createdAt: Scalars['DateTime']['output'];
|
|
184
|
+
experienceComponent: ExperienceComponent;
|
|
185
|
+
next?: Maybe<BuildingBlockFieldFulfillment>;
|
|
186
|
+
/** Not yet implemented! */
|
|
187
|
+
organization?: Maybe<Organization>;
|
|
188
|
+
previous?: Maybe<BuildingBlockFieldFulfillment>;
|
|
189
|
+
prn: Scalars['PRN']['output'];
|
|
190
|
+
stage: Stage;
|
|
191
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
192
|
+
};
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
export type BuildingBlockFieldFulfillmentBlueprintedInstancesArgs = {
|
|
196
|
+
where?: InputMaybe<Array<BuildingBlockFieldFulfillmentsFilterInput>>;
|
|
197
|
+
};
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
export type BuildingBlockFieldFulfillmentContentValueArgs = {
|
|
201
|
+
where?: InputMaybe<Array<ContentValuesFilterInput>>;
|
|
202
|
+
};
|
|
203
|
+
|
|
204
|
+
export type BuildingBlockFieldFulfillmentEdge = {
|
|
205
|
+
__typename?: 'BuildingBlockFieldFulfillmentEdge';
|
|
206
|
+
cursor: Scalars['String']['output'];
|
|
207
|
+
node: BuildingBlockFieldFulfillment;
|
|
208
|
+
};
|
|
209
|
+
|
|
210
|
+
export type BuildingBlockFieldFulfillmentsConnection = {
|
|
211
|
+
__typename?: 'BuildingBlockFieldFulfillmentsConnection';
|
|
212
|
+
edges: Array<BuildingBlockFieldFulfillmentEdge>;
|
|
213
|
+
pageInfo: PageInfo;
|
|
214
|
+
totalCount: Scalars['Int']['output'];
|
|
215
|
+
};
|
|
216
|
+
|
|
217
|
+
/** The filter input type for 'BuildingBlockFieldFulfillments'. Objects/maps are treated as AND, while arrays are treated as OR. */
|
|
218
|
+
export type BuildingBlockFieldFulfillmentsFilterInput = {
|
|
219
|
+
_not?: InputMaybe<Array<BuildingBlockFieldFulfillmentsFilterInput>>;
|
|
220
|
+
createdAt?: InputMaybe<Array<DateFilter>>;
|
|
221
|
+
prn?: InputMaybe<Array<PrnFilter>>;
|
|
222
|
+
updatedAt?: InputMaybe<Array<DateFilter>>;
|
|
223
|
+
};
|
|
224
|
+
|
|
225
|
+
export type BuildingBlockFieldsConnection = {
|
|
226
|
+
__typename?: 'BuildingBlockFieldsConnection';
|
|
227
|
+
edges: Array<BuildingBlockFieldEdge>;
|
|
228
|
+
pageInfo: PageInfo;
|
|
229
|
+
totalCount: Scalars['Int']['output'];
|
|
230
|
+
};
|
|
231
|
+
|
|
232
|
+
/** The filter input type for 'BuildingBlockFields'. Objects/maps are treated as AND, while arrays are treated as OR. */
|
|
233
|
+
export type BuildingBlockFieldsFilterInput = {
|
|
234
|
+
_not?: InputMaybe<Array<BuildingBlockFieldsFilterInput>>;
|
|
235
|
+
createdAt?: InputMaybe<Array<DateFilter>>;
|
|
236
|
+
prn?: InputMaybe<Array<PrnFilter>>;
|
|
237
|
+
slug?: InputMaybe<Array<StringFilter>>;
|
|
238
|
+
title?: InputMaybe<Array<StringFilter>>;
|
|
239
|
+
updatedAt?: InputMaybe<Array<DateFilter>>;
|
|
240
|
+
};
|
|
241
|
+
|
|
242
|
+
/** The filter input type for 'BuildingBlocks'. Objects/maps are treated as AND, while arrays are treated as OR. */
|
|
243
|
+
export type BuildingBlocksFilterInput = {
|
|
244
|
+
_not?: InputMaybe<Array<BuildingBlocksFilterInput>>;
|
|
245
|
+
createdAt?: InputMaybe<Array<DateFilter>>;
|
|
246
|
+
prn?: InputMaybe<Array<PrnFilter>>;
|
|
247
|
+
slug?: InputMaybe<Array<StringFilter>>;
|
|
248
|
+
title?: InputMaybe<Array<StringFilter>>;
|
|
249
|
+
updatedAt?: InputMaybe<Array<DateFilter>>;
|
|
250
|
+
};
|
|
251
|
+
|
|
252
|
+
export type CasDatabaseMatch = {
|
|
253
|
+
__typename?: 'CasDatabaseMatch';
|
|
254
|
+
confidence: Scalars['Float']['output'];
|
|
255
|
+
contentValue: ContentValue;
|
|
256
|
+
endIndex: Scalars['Int']['output'];
|
|
257
|
+
extractionMethod: Scalars['String']['output'];
|
|
258
|
+
startIndex: Scalars['Int']['output'];
|
|
259
|
+
};
|
|
260
|
+
|
|
261
|
+
export type CasRegexSuggestion = {
|
|
262
|
+
__typename?: 'CasRegexSuggestion';
|
|
263
|
+
confidence: Scalars['Float']['output'];
|
|
264
|
+
endIndex: Scalars['Int']['output'];
|
|
265
|
+
extractionMethod: Scalars['String']['output'];
|
|
266
|
+
startIndex: Scalars['Int']['output'];
|
|
267
|
+
};
|
|
268
|
+
|
|
269
|
+
export type Channel = {
|
|
270
|
+
__typename?: 'Channel';
|
|
271
|
+
apiTokens: Array<ApiToken>;
|
|
272
|
+
blueprints: Array<Blueprint>;
|
|
273
|
+
createdAt: Scalars['DateTime']['output'];
|
|
274
|
+
defaultBlueprint?: Maybe<Blueprint>;
|
|
275
|
+
domain: Scalars['String']['output'];
|
|
276
|
+
name: Scalars['String']['output'];
|
|
277
|
+
/** Not yet implemented! */
|
|
278
|
+
organization?: Maybe<Organization>;
|
|
279
|
+
pathParts: Array<PathPart>;
|
|
280
|
+
prn: Scalars['PRN']['output'];
|
|
281
|
+
rootPathPart: PathPart;
|
|
282
|
+
slug: Scalars['String']['output'];
|
|
283
|
+
stage: Stage;
|
|
284
|
+
theme: Theme;
|
|
285
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
286
|
+
};
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
export type ChannelPathPartsArgs = {
|
|
290
|
+
where?: InputMaybe<Array<PathPartsFilterInput>>;
|
|
291
|
+
};
|
|
292
|
+
|
|
293
|
+
export type ChannelEdge = {
|
|
294
|
+
__typename?: 'ChannelEdge';
|
|
295
|
+
cursor: Scalars['String']['output'];
|
|
296
|
+
node: Channel;
|
|
297
|
+
};
|
|
298
|
+
|
|
299
|
+
export type ChannelsConnection = {
|
|
300
|
+
__typename?: 'ChannelsConnection';
|
|
301
|
+
edges: Array<ChannelEdge>;
|
|
302
|
+
pageInfo: PageInfo;
|
|
303
|
+
totalCount: Scalars['Int']['output'];
|
|
304
|
+
};
|
|
305
|
+
|
|
306
|
+
/** The filter input type for 'Channels'. Objects/maps are treated as AND, while arrays are treated as OR. */
|
|
307
|
+
export type ChannelsFilterInput = {
|
|
308
|
+
_not?: InputMaybe<Array<ChannelsFilterInput>>;
|
|
309
|
+
createdAt?: InputMaybe<Array<DateFilter>>;
|
|
310
|
+
domain?: InputMaybe<Array<StringFilter>>;
|
|
311
|
+
name?: InputMaybe<Array<StringFilter>>;
|
|
312
|
+
prn?: InputMaybe<Array<PrnFilter>>;
|
|
313
|
+
slug?: InputMaybe<Array<StringFilter>>;
|
|
314
|
+
updatedAt?: InputMaybe<Array<DateFilter>>;
|
|
315
|
+
};
|
|
316
|
+
|
|
317
|
+
export type ConnectContentValueInput = {
|
|
318
|
+
contentField: Scalars['PRN']['input'];
|
|
319
|
+
contentValue: Scalars['PRN']['input'];
|
|
320
|
+
};
|
|
321
|
+
|
|
322
|
+
export type ContentExperience = {
|
|
323
|
+
__typename?: 'ContentExperience';
|
|
324
|
+
createdAt: Scalars['DateTime']['output'];
|
|
325
|
+
experienceComponent: ExperienceComponent;
|
|
326
|
+
/** Not yet implemented! */
|
|
327
|
+
organization?: Maybe<Organization>;
|
|
328
|
+
pathPart: PathPart;
|
|
329
|
+
/** The preview image of the Content Experience. */
|
|
330
|
+
preview?: Maybe<Asset>;
|
|
331
|
+
prn: Scalars['PRN']['output'];
|
|
332
|
+
/** The Content Values that use this Content Experience as an referenced value. Reverse relation of referencedContentExperiences. */
|
|
333
|
+
referencedBySmartTextContentValues: Array<ContentValue>;
|
|
334
|
+
slug: Scalars['String']['output'];
|
|
335
|
+
stage: Stage;
|
|
336
|
+
/** The ids of the tags this Content Experience are tagged with, including all ancestor tags. Should only be used for filtering. */
|
|
337
|
+
tagIds: Array<Scalars['String']['output']>;
|
|
338
|
+
/** The tags this Content Experience are tagged with. */
|
|
339
|
+
tags: Array<Tag>;
|
|
340
|
+
title: Scalars['String']['output'];
|
|
341
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
342
|
+
};
|
|
343
|
+
|
|
344
|
+
export type ContentExperienceEdge = {
|
|
345
|
+
__typename?: 'ContentExperienceEdge';
|
|
346
|
+
cursor: Scalars['String']['output'];
|
|
347
|
+
node: ContentExperience;
|
|
348
|
+
};
|
|
349
|
+
|
|
350
|
+
export type ContentExperiencesConnection = {
|
|
351
|
+
__typename?: 'ContentExperiencesConnection';
|
|
352
|
+
edges: Array<ContentExperienceEdge>;
|
|
353
|
+
pageInfo: PageInfo;
|
|
354
|
+
totalCount: Scalars['Int']['output'];
|
|
355
|
+
};
|
|
356
|
+
|
|
357
|
+
/** The filter input type for 'ContentExperiences'. Objects/maps are treated as AND, while arrays are treated as OR. */
|
|
358
|
+
export type ContentExperiencesFilterInput = {
|
|
359
|
+
_not?: InputMaybe<Array<ContentExperiencesFilterInput>>;
|
|
360
|
+
createdAt?: InputMaybe<Array<DateFilter>>;
|
|
361
|
+
prn?: InputMaybe<Array<PrnFilter>>;
|
|
362
|
+
slug?: InputMaybe<Array<StringFilter>>;
|
|
363
|
+
tagIds?: InputMaybe<Array<StringArrayFilter>>;
|
|
364
|
+
title?: InputMaybe<Array<StringFilter>>;
|
|
365
|
+
updatedAt?: InputMaybe<Array<DateFilter>>;
|
|
366
|
+
};
|
|
367
|
+
|
|
368
|
+
export type ContentField = {
|
|
369
|
+
__typename?: 'ContentField';
|
|
370
|
+
contentType: ContentType;
|
|
371
|
+
/** Note: ContentValidationRules must be created separately due to GraphQL limitations regarding Union types in Input objects. */
|
|
372
|
+
contentValidationRules: Array<ContentValidationRule>;
|
|
373
|
+
contentValues: Array<ContentValue>;
|
|
374
|
+
createdAt: Scalars['DateTime']['output'];
|
|
375
|
+
name: Scalars['String']['output'];
|
|
376
|
+
next?: Maybe<ContentField>;
|
|
377
|
+
/** Not yet implemented! */
|
|
378
|
+
organization?: Maybe<Organization>;
|
|
379
|
+
previous?: Maybe<ContentField>;
|
|
380
|
+
prn: Scalars['PRN']['output'];
|
|
381
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
382
|
+
};
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
export type ContentFieldContentValidationRulesArgs = {
|
|
386
|
+
where?: InputMaybe<Array<ContentValidationRulesFilterInput>>;
|
|
387
|
+
};
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
export type ContentFieldContentValuesArgs = {
|
|
391
|
+
where?: InputMaybe<Array<ContentValuesFilterInput>>;
|
|
392
|
+
};
|
|
393
|
+
|
|
394
|
+
export type ContentFieldEdge = {
|
|
395
|
+
__typename?: 'ContentFieldEdge';
|
|
396
|
+
cursor: Scalars['String']['output'];
|
|
397
|
+
node: ContentField;
|
|
398
|
+
};
|
|
399
|
+
|
|
400
|
+
export type ContentFieldsConnection = {
|
|
401
|
+
__typename?: 'ContentFieldsConnection';
|
|
402
|
+
edges: Array<ContentFieldEdge>;
|
|
403
|
+
pageInfo: PageInfo;
|
|
404
|
+
totalCount: Scalars['Int']['output'];
|
|
405
|
+
};
|
|
406
|
+
|
|
407
|
+
/** The filter input type for 'ContentFields'. Objects/maps are treated as AND, while arrays are treated as OR. */
|
|
408
|
+
export type ContentFieldsFilterInput = {
|
|
409
|
+
_not?: InputMaybe<Array<ContentFieldsFilterInput>>;
|
|
410
|
+
createdAt?: InputMaybe<Array<DateFilter>>;
|
|
411
|
+
name?: InputMaybe<Array<StringFilter>>;
|
|
412
|
+
prn?: InputMaybe<Array<PrnFilter>>;
|
|
413
|
+
updatedAt?: InputMaybe<Array<DateFilter>>;
|
|
414
|
+
};
|
|
415
|
+
|
|
416
|
+
export type ContentItem = {
|
|
417
|
+
__typename?: 'ContentItem';
|
|
418
|
+
contentType: ContentType;
|
|
419
|
+
/** The id of the Content Type this Content Item belongs to. This is computed from the contentType relation. */
|
|
420
|
+
contentTypeId: Scalars['String']['output'];
|
|
421
|
+
contentValues: Array<ContentValue>;
|
|
422
|
+
createdAt: Scalars['DateTime']['output'];
|
|
423
|
+
/** Interpolates the Content Type's displayImageField with the Content Item's value. If there are multiple Content Values for the Content Field, the first one is used. If the Content Value is missing, null is returned. */
|
|
424
|
+
displayImage?: Maybe<Asset>;
|
|
425
|
+
/** The display name of the Content Item. This is computed from the Content Type's displayNameTemplate and cached for filtering purposes. It is updated in the background and is not guaranteed to be up to date. A Content Field with multiple Content Values are concatenated with spaces. Missing Content Values will show as '***' and the displayName will be prefixed with DRAFT: */
|
|
426
|
+
displayName: Scalars['String']['output'];
|
|
427
|
+
isDraft: Scalars['Boolean']['output'];
|
|
428
|
+
/** Not yet implemented! */
|
|
429
|
+
organization?: Maybe<Organization>;
|
|
430
|
+
prn: Scalars['PRN']['output'];
|
|
431
|
+
relatingContentValues: Array<ContentValue>;
|
|
432
|
+
stage: Stage;
|
|
433
|
+
/** The ids of the tags this Content Item are tagged with, including all ancestor tags. Should only be used for filtering. */
|
|
434
|
+
tagIds: Array<Scalars['String']['output']>;
|
|
435
|
+
/** The tags this Content Item are tagged with. */
|
|
436
|
+
tags: Array<Tag>;
|
|
437
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
438
|
+
};
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
export type ContentItemContentValuesArgs = {
|
|
442
|
+
where?: InputMaybe<Array<ContentValuesFilterInput>>;
|
|
443
|
+
};
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
export type ContentItemRelatingContentValuesArgs = {
|
|
447
|
+
where?: InputMaybe<Array<ContentValuesFilterInput>>;
|
|
448
|
+
};
|
|
449
|
+
|
|
450
|
+
export type ContentItemEdge = {
|
|
451
|
+
__typename?: 'ContentItemEdge';
|
|
452
|
+
cursor: Scalars['String']['output'];
|
|
453
|
+
node: ContentItem;
|
|
454
|
+
};
|
|
455
|
+
|
|
456
|
+
export type ContentItemsConnection = {
|
|
457
|
+
__typename?: 'ContentItemsConnection';
|
|
458
|
+
edges: Array<ContentItemEdge>;
|
|
459
|
+
pageInfo: PageInfo;
|
|
460
|
+
totalCount: Scalars['Int']['output'];
|
|
461
|
+
};
|
|
462
|
+
|
|
463
|
+
/** The filter input type for 'ContentItems'. Objects/maps are treated as AND, while arrays are treated as OR. */
|
|
464
|
+
export type ContentItemsFilterInput = {
|
|
465
|
+
_not?: InputMaybe<Array<ContentItemsFilterInput>>;
|
|
466
|
+
contentTypeId?: InputMaybe<Array<StringFilter>>;
|
|
467
|
+
createdAt?: InputMaybe<Array<DateFilter>>;
|
|
468
|
+
displayName?: InputMaybe<Array<StringFilter>>;
|
|
469
|
+
isDraft?: InputMaybe<Array<BooleanFilter>>;
|
|
470
|
+
prn?: InputMaybe<Array<PrnFilter>>;
|
|
471
|
+
tagIds?: InputMaybe<Array<StringArrayFilter>>;
|
|
472
|
+
updatedAt?: InputMaybe<Array<DateFilter>>;
|
|
473
|
+
};
|
|
474
|
+
|
|
475
|
+
export type ContentType = {
|
|
476
|
+
__typename?: 'ContentType';
|
|
477
|
+
contentFields: Array<ContentField>;
|
|
478
|
+
contentItems: Array<ContentItem>;
|
|
479
|
+
createdAt: Scalars['DateTime']['output'];
|
|
480
|
+
/** The display image template for the content type. This must be the PRN of a Content Field with Assets. */
|
|
481
|
+
displayImageField?: Maybe<ContentField>;
|
|
482
|
+
/** The display name template for the content type. Use {{contentFieldPrn}} to reference Content Fields. */
|
|
483
|
+
displayNameTemplate: Scalars['String']['output'];
|
|
484
|
+
name: Scalars['String']['output'];
|
|
485
|
+
/** Not yet implemented! */
|
|
486
|
+
organization?: Maybe<Organization>;
|
|
487
|
+
prn: Scalars['PRN']['output'];
|
|
488
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
489
|
+
};
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
export type ContentTypeContentFieldsArgs = {
|
|
493
|
+
where?: InputMaybe<Array<ContentFieldsFilterInput>>;
|
|
494
|
+
};
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
export type ContentTypeContentItemsArgs = {
|
|
498
|
+
where?: InputMaybe<Array<ContentItemsFilterInput>>;
|
|
499
|
+
};
|
|
500
|
+
|
|
501
|
+
export type ContentTypeEdge = {
|
|
502
|
+
__typename?: 'ContentTypeEdge';
|
|
503
|
+
cursor: Scalars['String']['output'];
|
|
504
|
+
node: ContentType;
|
|
505
|
+
};
|
|
506
|
+
|
|
507
|
+
export type ContentTypesConnection = {
|
|
508
|
+
__typename?: 'ContentTypesConnection';
|
|
509
|
+
edges: Array<ContentTypeEdge>;
|
|
510
|
+
pageInfo: PageInfo;
|
|
511
|
+
totalCount: Scalars['Int']['output'];
|
|
512
|
+
};
|
|
513
|
+
|
|
514
|
+
/** The filter input type for 'ContentTypes'. Objects/maps are treated as AND, while arrays are treated as OR. */
|
|
515
|
+
export type ContentTypesFilterInput = {
|
|
516
|
+
_not?: InputMaybe<Array<ContentTypesFilterInput>>;
|
|
517
|
+
createdAt?: InputMaybe<Array<DateFilter>>;
|
|
518
|
+
displayNameTemplate?: InputMaybe<Array<StringFilter>>;
|
|
519
|
+
name?: InputMaybe<Array<StringFilter>>;
|
|
520
|
+
prn?: InputMaybe<Array<PrnFilter>>;
|
|
521
|
+
updatedAt?: InputMaybe<Array<DateFilter>>;
|
|
522
|
+
};
|
|
523
|
+
|
|
524
|
+
export type ContentValidationRule = {
|
|
525
|
+
__typename?: 'ContentValidationRule';
|
|
526
|
+
createdAt: Scalars['DateTime']['output'];
|
|
527
|
+
/** Not yet implemented! */
|
|
528
|
+
organization?: Maybe<Organization>;
|
|
529
|
+
prn: Scalars['PRN']['output'];
|
|
530
|
+
ruleType: RuleType;
|
|
531
|
+
settings: ExistingContentValidationRulesSettings;
|
|
532
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
533
|
+
};
|
|
534
|
+
|
|
535
|
+
/** The filter input type for 'ContentValidationRules'. Objects/maps are treated as AND, while arrays are treated as OR. */
|
|
536
|
+
export type ContentValidationRulesFilterInput = {
|
|
537
|
+
_not?: InputMaybe<Array<ContentValidationRulesFilterInput>>;
|
|
538
|
+
createdAt?: InputMaybe<Array<DateFilter>>;
|
|
539
|
+
prn?: InputMaybe<Array<PrnFilter>>;
|
|
540
|
+
updatedAt?: InputMaybe<Array<DateFilter>>;
|
|
541
|
+
};
|
|
542
|
+
|
|
543
|
+
export type ContentValue = {
|
|
544
|
+
__typename?: 'ContentValue';
|
|
545
|
+
buildingBlockFieldFulfillments: Array<BuildingBlockFieldFulfillment>;
|
|
546
|
+
contentField?: Maybe<ContentField>;
|
|
547
|
+
contentItem?: Maybe<ContentItem>;
|
|
548
|
+
createdAt: Scalars['DateTime']['output'];
|
|
549
|
+
/** Whether the ContentValue is structured in a Content Item. */
|
|
550
|
+
hasContentItem: Scalars['Boolean']['output'];
|
|
551
|
+
/** The CAST tree for the smart text with all Content Values interpolated. */
|
|
552
|
+
interpolatedSmartText?: Maybe<Scalars['CAST']['output']>;
|
|
553
|
+
/** Whether the ContentValue is reusable. Defaults to false. */
|
|
554
|
+
isReusable: Scalars['Boolean']['output'];
|
|
555
|
+
linkedContentType?: Maybe<ContentType>;
|
|
556
|
+
linkedGridPlacement?: Maybe<GridPlacement>;
|
|
557
|
+
linkedPathPart?: Maybe<PathPart>;
|
|
558
|
+
linkedTag?: Maybe<Tag>;
|
|
559
|
+
next?: Maybe<ContentValue>;
|
|
560
|
+
/** Not yet implemented! */
|
|
561
|
+
organization?: Maybe<Organization>;
|
|
562
|
+
/** The plain text representation of the smart text. This is used internally. If you really need the plain text representation of CAST, use the castToPlainText utility function. */
|
|
563
|
+
plainText?: Maybe<Scalars['String']['output']>;
|
|
564
|
+
previous?: Maybe<ContentValue>;
|
|
565
|
+
/** !!!Warning!!! The filter generated for this field is a hardcoded StringFilter. This means all primitiveValues will be converted to and compared as a string! */
|
|
566
|
+
primitiveValue?: Maybe<Scalars['PrimitiveValue']['output']>;
|
|
567
|
+
prn: Scalars['PRN']['output'];
|
|
568
|
+
/** The Content Values that use this Content Value as an referenced value. Reverse relation of referencedContentValues. */
|
|
569
|
+
referencedBy: Array<ContentValue>;
|
|
570
|
+
/** The Content Experiences that are referenced in internal links in the smart text. This is calculated based on the CAST tree in the smart text and cannot be updated manually. */
|
|
571
|
+
referencedContentExperiences: Array<ContentExperience>;
|
|
572
|
+
/** The Content Values that are referenced in the smart text. This is calculated based on the CAST tree in the smart text and cannot be updated manually. */
|
|
573
|
+
referencedContentValues: Array<ContentValue>;
|
|
574
|
+
/** The Grid Placements that are referenced in internal links in the smart text. This is calculated based on the CAST tree in the smart text and cannot be updated manually. */
|
|
575
|
+
referencedGridPlacements: Array<GridPlacement>;
|
|
576
|
+
relatedAsset?: Maybe<Asset>;
|
|
577
|
+
relatedContentItem?: Maybe<ContentItem>;
|
|
578
|
+
/** The CAST tree for the smart text. */
|
|
579
|
+
smartText?: Maybe<Scalars['CAST']['output']>;
|
|
580
|
+
stage: Stage;
|
|
581
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
582
|
+
};
|
|
583
|
+
|
|
584
|
+
|
|
585
|
+
export type ContentValueBuildingBlockFieldFulfillmentsArgs = {
|
|
586
|
+
where?: InputMaybe<Array<BuildingBlockFieldFulfillmentsFilterInput>>;
|
|
587
|
+
};
|
|
588
|
+
|
|
589
|
+
export type ContentValueEdge = {
|
|
590
|
+
__typename?: 'ContentValueEdge';
|
|
591
|
+
cursor: Scalars['String']['output'];
|
|
592
|
+
node: ContentValue;
|
|
593
|
+
};
|
|
594
|
+
|
|
595
|
+
export enum ContentValueTypeNames {
|
|
596
|
+
Asset = 'ASSET',
|
|
597
|
+
Boolean = 'BOOLEAN',
|
|
598
|
+
ContentItem = 'CONTENT_ITEM',
|
|
599
|
+
ContentType = 'CONTENT_TYPE',
|
|
600
|
+
Date = 'DATE',
|
|
601
|
+
GridPlacement = 'GRID_PLACEMENT',
|
|
602
|
+
Number = 'NUMBER',
|
|
603
|
+
PathPart = 'PATH_PART',
|
|
604
|
+
SmartText = 'SMART_TEXT',
|
|
605
|
+
String = 'STRING',
|
|
606
|
+
Tag = 'TAG'
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
export type ContentValuesConnection = {
|
|
610
|
+
__typename?: 'ContentValuesConnection';
|
|
611
|
+
edges: Array<ContentValueEdge>;
|
|
612
|
+
pageInfo: PageInfo;
|
|
613
|
+
totalCount: Scalars['Int']['output'];
|
|
614
|
+
};
|
|
615
|
+
|
|
616
|
+
/** The filter input type for 'ContentValues'. Objects/maps are treated as AND, while arrays are treated as OR. */
|
|
617
|
+
export type ContentValuesFilterInput = {
|
|
618
|
+
_not?: InputMaybe<Array<ContentValuesFilterInput>>;
|
|
619
|
+
createdAt?: InputMaybe<Array<DateFilter>>;
|
|
620
|
+
hasContentItem?: InputMaybe<Array<BooleanFilter>>;
|
|
621
|
+
isReusable?: InputMaybe<Array<BooleanFilter>>;
|
|
622
|
+
plainText?: InputMaybe<Array<StringFilter>>;
|
|
623
|
+
primitiveValue?: InputMaybe<Array<StringFilter>>;
|
|
624
|
+
prn?: InputMaybe<Array<PrnFilter>>;
|
|
625
|
+
updatedAt?: InputMaybe<Array<DateFilter>>;
|
|
626
|
+
};
|
|
627
|
+
|
|
628
|
+
export type CopyBlueprintInput = {
|
|
629
|
+
name: Scalars['String']['input'];
|
|
630
|
+
preview?: InputMaybe<Scalars['PRN']['input']>;
|
|
631
|
+
prn: Scalars['PRN']['input'];
|
|
632
|
+
};
|
|
633
|
+
|
|
634
|
+
export type CountContentValidationRuleSettings = {
|
|
635
|
+
__typename?: 'CountContentValidationRuleSettings';
|
|
636
|
+
max: Scalars['Int']['output'];
|
|
637
|
+
min: Scalars['Int']['output'];
|
|
638
|
+
};
|
|
639
|
+
|
|
640
|
+
export type CountContentValidationRuleSettingsInput = {
|
|
641
|
+
max: Scalars['Int']['input'];
|
|
642
|
+
min: Scalars['Int']['input'];
|
|
643
|
+
};
|
|
644
|
+
|
|
645
|
+
export type CreateAllowedValuesContentValidationRuleInput = {
|
|
646
|
+
settings: AllowedValuesContentValidationRuleSettingsInput;
|
|
647
|
+
targetField: Scalars['String']['input'];
|
|
648
|
+
};
|
|
649
|
+
|
|
650
|
+
export type CreateApiTokenInput = {
|
|
651
|
+
channel: Scalars['PRN']['input'];
|
|
652
|
+
name: Scalars['String']['input'];
|
|
653
|
+
};
|
|
654
|
+
|
|
655
|
+
export type CreateApiTokenResponse = {
|
|
656
|
+
__typename?: 'CreateApiTokenResponse';
|
|
657
|
+
channel: Channel;
|
|
658
|
+
createdAt: Scalars['DateTime']['output'];
|
|
659
|
+
name: Scalars['String']['output'];
|
|
660
|
+
prn: Scalars['PRN']['output'];
|
|
661
|
+
stage: Stage;
|
|
662
|
+
token: Scalars['String']['output'];
|
|
663
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
664
|
+
};
|
|
665
|
+
|
|
666
|
+
export type CreateBlueprintFromContentExperienceInput = {
|
|
667
|
+
/** The PRN of the Content Experience to create the Blueprint from. Automatically uses the Channel of the Content Experience. */
|
|
668
|
+
contentExperience: Scalars['PRN']['input'];
|
|
669
|
+
isFixed: Scalars['Boolean']['input'];
|
|
670
|
+
name: Scalars['String']['input'];
|
|
671
|
+
preview?: InputMaybe<Scalars['PRN']['input']>;
|
|
672
|
+
};
|
|
673
|
+
|
|
674
|
+
export type CreateBlueprintInput = {
|
|
675
|
+
channel: Scalars['PRN']['input'];
|
|
676
|
+
initialRowCount?: Scalars['Int']['input'];
|
|
677
|
+
isFixed: Scalars['Boolean']['input'];
|
|
678
|
+
name: Scalars['String']['input'];
|
|
679
|
+
preview?: InputMaybe<Scalars['PRN']['input']>;
|
|
680
|
+
};
|
|
681
|
+
|
|
682
|
+
export type CreateBuildingBlockFieldForBuildingBlockInput = {
|
|
683
|
+
/** The PRN of the BuildingBlockField that this BuildingBlockField should manually be sorted after. Null means it should be the last. */
|
|
684
|
+
next?: InputMaybe<Scalars['PRN']['input']>;
|
|
685
|
+
slug: Scalars['String']['input'];
|
|
686
|
+
title: Scalars['String']['input'];
|
|
687
|
+
};
|
|
688
|
+
|
|
689
|
+
export type CreateBuildingBlockFieldFulfillmentForExperienceComponentInput = {
|
|
690
|
+
buildingBlockField: Scalars['PRN']['input'];
|
|
691
|
+
/** The PRNs of the Content Value which this BuildingBlockFieldFulfillment is filled by. */
|
|
692
|
+
contentValue: Scalars['PRN']['input'];
|
|
693
|
+
/** The PRN of the BuildingBlockFieldFulfillment that this BuildingBlockFieldFulfillment should manually be sorted after. Null means it should be the last. */
|
|
694
|
+
next?: InputMaybe<Scalars['PRN']['input']>;
|
|
695
|
+
};
|
|
696
|
+
|
|
697
|
+
export type CreateBuildingBlockFieldFulfillmentInput = {
|
|
698
|
+
buildingBlockField: Scalars['PRN']['input'];
|
|
699
|
+
/** The PRNs of the Content Value which this BuildingBlockFieldFulfillment is filled by. */
|
|
700
|
+
contentValue: Scalars['PRN']['input'];
|
|
701
|
+
/** The PRN of the Experience Component which this Building Block Field Fulfillment fulfills. */
|
|
702
|
+
experienceComponent: Scalars['PRN']['input'];
|
|
703
|
+
/** The PRN of the BuildingBlockFieldFulfillment that this BuildingBlockFieldFulfillment should manually be sorted after. Null means it should be the last. */
|
|
704
|
+
next?: InputMaybe<Scalars['PRN']['input']>;
|
|
705
|
+
};
|
|
706
|
+
|
|
707
|
+
export type CreateBuildingBlockFieldInput = {
|
|
708
|
+
buildingBlock: Scalars['PRN']['input'];
|
|
709
|
+
/** The PRN of the BuildingBlockField that this BuildingBlockField should manually be sorted after. Null means it should be the last. */
|
|
710
|
+
next?: InputMaybe<Scalars['PRN']['input']>;
|
|
711
|
+
slug: Scalars['String']['input'];
|
|
712
|
+
title: Scalars['String']['input'];
|
|
713
|
+
};
|
|
714
|
+
|
|
715
|
+
export type CreateBuildingBlockForThemeInput = {
|
|
716
|
+
buildingBlockFields: Array<CreateBuildingBlockFieldForBuildingBlockInput>;
|
|
717
|
+
gridDefinition?: InputMaybe<CreateGridDefinitionInput>;
|
|
718
|
+
/** The PRN of the BuildingBlock that this BuildingBlock should manually be sorted after. Null means it should be the last. */
|
|
719
|
+
next?: InputMaybe<Scalars['PRN']['input']>;
|
|
720
|
+
preview?: InputMaybe<Scalars['PRN']['input']>;
|
|
721
|
+
slug: Scalars['String']['input'];
|
|
722
|
+
title: Scalars['String']['input'];
|
|
723
|
+
};
|
|
724
|
+
|
|
725
|
+
export type CreateBuildingBlockInput = {
|
|
726
|
+
buildingBlockFields: Array<CreateBuildingBlockFieldForBuildingBlockInput>;
|
|
727
|
+
gridDefinition?: InputMaybe<CreateGridDefinitionInput>;
|
|
728
|
+
/** The PRN of the BuildingBlock that this BuildingBlock should manually be sorted after. Null means it should be the last. */
|
|
729
|
+
next?: InputMaybe<Scalars['PRN']['input']>;
|
|
730
|
+
preview?: InputMaybe<Scalars['PRN']['input']>;
|
|
731
|
+
slug: Scalars['String']['input'];
|
|
732
|
+
theme: Scalars['PRN']['input'];
|
|
733
|
+
title: Scalars['String']['input'];
|
|
734
|
+
};
|
|
735
|
+
|
|
736
|
+
export type CreateChannelInput = {
|
|
737
|
+
domain: Scalars['String']['input'];
|
|
738
|
+
name: Scalars['String']['input'];
|
|
739
|
+
slug: Scalars['String']['input'];
|
|
740
|
+
theme: Scalars['PRN']['input'];
|
|
741
|
+
};
|
|
742
|
+
|
|
743
|
+
export type CreateContentExperienceWithExistingPathPartInput = {
|
|
744
|
+
/** The PRN of the Blueprint to create a Content Experience from. If not provided, an empty Content Experience will be created. */
|
|
745
|
+
fromBlueprint?: InputMaybe<Scalars['PRN']['input']>;
|
|
746
|
+
initialRowCount?: InputMaybe<Scalars['Int']['input']>;
|
|
747
|
+
pathPart: Scalars['PRN']['input'];
|
|
748
|
+
preview?: InputMaybe<Scalars['PRN']['input']>;
|
|
749
|
+
slug: Scalars['String']['input'];
|
|
750
|
+
tags?: InputMaybe<Array<Scalars['PRN']['input']>>;
|
|
751
|
+
title: Scalars['String']['input'];
|
|
752
|
+
};
|
|
753
|
+
|
|
754
|
+
export type CreateContentExperienceWithNewPathPartInput = {
|
|
755
|
+
createPathPartFromParent?: InputMaybe<CreatePathPartFromParentInput>;
|
|
756
|
+
createPathPartFromPath?: InputMaybe<CreatePathPartFromPathInput>;
|
|
757
|
+
/** The PRN of the Blueprint to create a Content Experience from. If not provided, an empty Content Experience will be created. */
|
|
758
|
+
fromBlueprint?: InputMaybe<Scalars['PRN']['input']>;
|
|
759
|
+
initialRowCount?: InputMaybe<Scalars['Int']['input']>;
|
|
760
|
+
preview?: InputMaybe<Scalars['PRN']['input']>;
|
|
761
|
+
slug: Scalars['String']['input'];
|
|
762
|
+
tags?: InputMaybe<Array<Scalars['PRN']['input']>>;
|
|
763
|
+
title: Scalars['String']['input'];
|
|
764
|
+
};
|
|
765
|
+
|
|
766
|
+
export type CreateContentFieldForContentTypeInput = {
|
|
767
|
+
name: Scalars['String']['input'];
|
|
768
|
+
/** The PRN of the ContentField that this ContentField should manually be sorted after. Null means it should be the last. */
|
|
769
|
+
next?: InputMaybe<Scalars['PRN']['input']>;
|
|
770
|
+
};
|
|
771
|
+
|
|
772
|
+
export type CreateContentFieldInput = {
|
|
773
|
+
contentType: Scalars['PRN']['input'];
|
|
774
|
+
name: Scalars['String']['input'];
|
|
775
|
+
/** The PRN of the ContentField that this ContentField should manually be sorted after. Null means it should be the last. */
|
|
776
|
+
next?: InputMaybe<Scalars['PRN']['input']>;
|
|
777
|
+
};
|
|
778
|
+
|
|
779
|
+
export type CreateContentItemInput = {
|
|
780
|
+
contentType: Scalars['PRN']['input'];
|
|
781
|
+
contentValuesToConnect?: InputMaybe<Array<ConnectContentValueInput>>;
|
|
782
|
+
contentValuesToCreate?: InputMaybe<Array<CreateContentValueForContentItemInput>>;
|
|
783
|
+
isDraft: Scalars['Boolean']['input'];
|
|
784
|
+
tags?: InputMaybe<Array<Scalars['PRN']['input']>>;
|
|
785
|
+
};
|
|
786
|
+
|
|
787
|
+
export type CreateContentTypeInput = {
|
|
788
|
+
contentFields?: Array<CreateContentFieldForContentTypeInput>;
|
|
789
|
+
displayImageField?: InputMaybe<Scalars['PRN']['input']>;
|
|
790
|
+
/** The display name template for the content type. Use {{contentFieldPrn}} to reference Content Fields. */
|
|
791
|
+
displayNameTemplate: Scalars['String']['input'];
|
|
792
|
+
name: Scalars['String']['input'];
|
|
793
|
+
};
|
|
794
|
+
|
|
795
|
+
export type CreateContentValueForContentItemInput = {
|
|
796
|
+
contentField: Scalars['PRN']['input'];
|
|
797
|
+
/** Whether the ContentValue is reusable. Defaults to false. */
|
|
798
|
+
isReusable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
799
|
+
linkedContentType?: InputMaybe<Scalars['PRN']['input']>;
|
|
800
|
+
linkedGridPlacement?: InputMaybe<Scalars['PRN']['input']>;
|
|
801
|
+
linkedPathPart?: InputMaybe<Scalars['PRN']['input']>;
|
|
802
|
+
linkedTag?: InputMaybe<Scalars['PRN']['input']>;
|
|
803
|
+
/** !!!Warning!!! The filter generated for this field is a hardcoded StringFilter. This means all primitiveValues will be converted to and compared as a string! */
|
|
804
|
+
primitiveValue?: InputMaybe<Scalars['PrimitiveValue']['input']>;
|
|
805
|
+
relatedAsset?: InputMaybe<Scalars['PRN']['input']>;
|
|
806
|
+
relatedContentItem?: InputMaybe<Scalars['PRN']['input']>;
|
|
807
|
+
/** The CAST tree for the smart text. */
|
|
808
|
+
smartText?: InputMaybe<Scalars['CAST']['input']>;
|
|
809
|
+
};
|
|
810
|
+
|
|
811
|
+
export type CreateContentValueInput = {
|
|
812
|
+
/** Required when the contentItem is provided. */
|
|
813
|
+
contentField?: InputMaybe<Scalars['PRN']['input']>;
|
|
814
|
+
/** Strongly advise the user to provide a ContentItem when creating a ContentValue. Required if contentField is provided. */
|
|
815
|
+
contentItem?: InputMaybe<Scalars['PRN']['input']>;
|
|
816
|
+
/** Whether the ContentValue is reusable. Defaults to false. */
|
|
817
|
+
isReusable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
818
|
+
linkedContentType?: InputMaybe<Scalars['PRN']['input']>;
|
|
819
|
+
linkedGridPlacement?: InputMaybe<Scalars['PRN']['input']>;
|
|
820
|
+
linkedPathPart?: InputMaybe<Scalars['PRN']['input']>;
|
|
821
|
+
linkedTag?: InputMaybe<Scalars['PRN']['input']>;
|
|
822
|
+
/** The PRN of the ContentValue that this ContentValue should manually be sorted after. Null means it should be the last. */
|
|
823
|
+
next?: InputMaybe<Scalars['PRN']['input']>;
|
|
824
|
+
/** !!!Warning!!! The filter generated for this field is a hardcoded StringFilter. This means all primitiveValues will be converted to and compared as a string! */
|
|
825
|
+
primitiveValue?: InputMaybe<Scalars['PrimitiveValue']['input']>;
|
|
826
|
+
relatedAsset?: InputMaybe<Scalars['PRN']['input']>;
|
|
827
|
+
relatedContentItem?: InputMaybe<Scalars['PRN']['input']>;
|
|
828
|
+
/** The CAST tree for the smart text. */
|
|
829
|
+
smartText?: InputMaybe<Scalars['CAST']['input']>;
|
|
830
|
+
};
|
|
831
|
+
|
|
832
|
+
export type CreateCountContentValidationRuleInput = {
|
|
833
|
+
settings: CountContentValidationRuleSettingsInput;
|
|
834
|
+
targetField: Scalars['String']['input'];
|
|
835
|
+
};
|
|
836
|
+
|
|
837
|
+
export type CreateDateBetweenContentValidationRuleInput = {
|
|
838
|
+
settings: DateBetweenContentValidationRuleSettingsInput;
|
|
839
|
+
targetField: Scalars['String']['input'];
|
|
840
|
+
};
|
|
841
|
+
|
|
842
|
+
export type CreateDecimalCountContentValidationRuleInput = {
|
|
843
|
+
settings: DecimalCountContentValidationRuleSettingsInput;
|
|
844
|
+
targetField: Scalars['String']['input'];
|
|
845
|
+
};
|
|
846
|
+
|
|
847
|
+
export type CreateExperienceComponentInput = {
|
|
848
|
+
buildingBlock: Scalars['PRN']['input'];
|
|
849
|
+
buildingBlockFieldFulfillments: Array<CreateBuildingBlockFieldFulfillmentForExperienceComponentInput>;
|
|
850
|
+
/** Must be set if the Building Block has a Grid Definition. */
|
|
851
|
+
grid?: InputMaybe<CreateGridInput>;
|
|
852
|
+
gridPlacement?: InputMaybe<CreateGridPlacementInput>;
|
|
853
|
+
/** Whether the Experience Component is a draft. Drafts cannot be used in Grid Placements. */
|
|
854
|
+
isDraft: Scalars['Boolean']['input'];
|
|
855
|
+
preview?: InputMaybe<Scalars['PRN']['input']>;
|
|
856
|
+
};
|
|
857
|
+
|
|
858
|
+
export type CreateGlobalExperienceComponentInput = {
|
|
859
|
+
buildingBlock: Scalars['PRN']['input'];
|
|
860
|
+
buildingBlockFieldFulfillments: Array<CreateBuildingBlockFieldFulfillmentForExperienceComponentInput>;
|
|
861
|
+
/** Must be set if the Building Block has a Grid Definition. */
|
|
862
|
+
grid?: InputMaybe<CreateGridInput>;
|
|
863
|
+
gridPlacement?: InputMaybe<CreateGridPlacementInput>;
|
|
864
|
+
/** Whether the Experience Component is a draft. Drafts cannot be used in Grid Placements. */
|
|
865
|
+
isDraft: Scalars['Boolean']['input'];
|
|
866
|
+
name: Scalars['String']['input'];
|
|
867
|
+
preview?: InputMaybe<Scalars['PRN']['input']>;
|
|
868
|
+
};
|
|
869
|
+
|
|
870
|
+
export type CreateGridDefinitionInput = {
|
|
871
|
+
/** The PRN of the Building Block to add the Grid Definition to. Leave empty if creating a Grid Definition while creating a Building Block */
|
|
872
|
+
buildingBlock?: InputMaybe<Scalars['PRN']['input']>;
|
|
873
|
+
maxRows: Scalars['Int']['input'];
|
|
874
|
+
};
|
|
875
|
+
|
|
876
|
+
export type CreateGridInput = {
|
|
877
|
+
/** !!!WARNING!!! This is currently not validated. Set this if you are creating a Grid for an existing Experience Component. Leave null if creating with an Experience Component. */
|
|
878
|
+
experienceComponent?: InputMaybe<Scalars['PRN']['input']>;
|
|
879
|
+
gridDefinition: Scalars['PRN']['input'];
|
|
880
|
+
rows: Scalars['Int']['input'];
|
|
881
|
+
};
|
|
882
|
+
|
|
883
|
+
export type CreateGridPlacementInput = {
|
|
884
|
+
/** The PRN of the Experience Component to place in this Grid Placement. Leave empty if creating a Experience Component with Grid Placement. */
|
|
885
|
+
experienceComponent?: InputMaybe<Scalars['PRN']['input']>;
|
|
886
|
+
grid: Scalars['PRN']['input'];
|
|
887
|
+
row: Scalars['Int']['input'];
|
|
888
|
+
};
|
|
889
|
+
|
|
890
|
+
export type CreateInvitationInput = {
|
|
891
|
+
role: Scalars['PRN']['input'];
|
|
892
|
+
userEmail: Scalars['String']['input'];
|
|
893
|
+
};
|
|
894
|
+
|
|
895
|
+
export type CreateNumberBetweenContentValidationRuleInput = {
|
|
896
|
+
settings: NumberBetweenContentValidationRuleSettingsInput;
|
|
897
|
+
targetField: Scalars['String']['input'];
|
|
898
|
+
};
|
|
899
|
+
|
|
900
|
+
export type CreateOrganizationInput = {
|
|
901
|
+
logoUrl?: InputMaybe<Scalars['String']['input']>;
|
|
902
|
+
name: Scalars['String']['input'];
|
|
903
|
+
slug: Scalars['String']['input'];
|
|
904
|
+
};
|
|
905
|
+
|
|
906
|
+
export type CreatePathPartFromParentInput = {
|
|
907
|
+
/** The PRN of the parent Path Part. */
|
|
908
|
+
parent: Scalars['String']['input'];
|
|
909
|
+
/** The slug of the Path Part. This is unique among siblings. */
|
|
910
|
+
slug: Scalars['String']['input'];
|
|
911
|
+
};
|
|
912
|
+
|
|
913
|
+
export type CreatePathPartFromPathInput = {
|
|
914
|
+
/** The Channel of the new Path Part. */
|
|
915
|
+
channel: Scalars['PRN']['input'];
|
|
916
|
+
/** The path of the Path Part. This is unique per Channel. Must contain a leading '/'. If the path contains slugs that do not exist, it will recursively create them. */
|
|
917
|
+
path: Scalars['String']['input'];
|
|
918
|
+
};
|
|
919
|
+
|
|
920
|
+
export type CreateRelatableContentTypesContentValidationRuleInput = {
|
|
921
|
+
settings: RelatableContentTypesContentValidationRuleSettingsInput;
|
|
922
|
+
targetField: Scalars['String']['input'];
|
|
923
|
+
};
|
|
924
|
+
|
|
925
|
+
export type CreateStringFormatContentValidationRuleInput = {
|
|
926
|
+
settings: StringFormatContentValidationRuleSettingsInput;
|
|
927
|
+
targetField: Scalars['String']['input'];
|
|
928
|
+
};
|
|
929
|
+
|
|
930
|
+
export type CreateTagInput = {
|
|
931
|
+
/** The hex color of the Tag. */
|
|
932
|
+
color?: InputMaybe<Scalars['String']['input']>;
|
|
933
|
+
/** Whether to force the visibility of the Tag on its descendants. */
|
|
934
|
+
forceVisibilityOnDescendants?: InputMaybe<Scalars['Boolean']['input']>;
|
|
935
|
+
/** The name of the Tag. */
|
|
936
|
+
name: Scalars['String']['input'];
|
|
937
|
+
/** The PRN of the parent Tag. */
|
|
938
|
+
parent?: InputMaybe<Scalars['String']['input']>;
|
|
939
|
+
/** The visibility of the Tag. Defaults to the parent's visibility, or PUBLIC if there is no parent. If the visibility is forced by a parent, this must match that visibility. */
|
|
940
|
+
visibility?: InputMaybe<TagVisibility>;
|
|
941
|
+
};
|
|
942
|
+
|
|
943
|
+
export type CreateThemeInput = {
|
|
944
|
+
buildingBlocks?: InputMaybe<Array<CreateBuildingBlockForThemeInput>>;
|
|
945
|
+
name: Scalars['String']['input'];
|
|
946
|
+
repositoryUrl: Scalars['String']['input'];
|
|
947
|
+
};
|
|
948
|
+
|
|
949
|
+
export type CreateValueTypeContentValidationRuleInput = {
|
|
950
|
+
settings: ValueTypeContentValidationRuleSettingsInput;
|
|
951
|
+
targetField: Scalars['String']['input'];
|
|
952
|
+
};
|
|
953
|
+
|
|
954
|
+
export type DatabaseMatchConfig = {
|
|
955
|
+
caseInsensitive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
956
|
+
partialMatches?: InputMaybe<Scalars['Boolean']['input']>;
|
|
957
|
+
threshold?: InputMaybe<Scalars['Float']['input']>;
|
|
958
|
+
};
|
|
959
|
+
|
|
960
|
+
export type DateBetweenContentValidationRuleSettings = {
|
|
961
|
+
__typename?: 'DateBetweenContentValidationRuleSettings';
|
|
962
|
+
end: Scalars['String']['output'];
|
|
963
|
+
start: Scalars['String']['output'];
|
|
964
|
+
};
|
|
965
|
+
|
|
966
|
+
export type DateBetweenContentValidationRuleSettingsInput = {
|
|
967
|
+
end: Scalars['String']['input'];
|
|
968
|
+
start: Scalars['String']['input'];
|
|
969
|
+
};
|
|
970
|
+
|
|
971
|
+
export type DateFilter = {
|
|
972
|
+
/** Equals */
|
|
973
|
+
_eq?: InputMaybe<Scalars['DateTime']['input']>;
|
|
974
|
+
/** Greater than */
|
|
975
|
+
_gt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
976
|
+
/** Greater than or equals */
|
|
977
|
+
_gte?: InputMaybe<Scalars['DateTime']['input']>;
|
|
978
|
+
/** In list */
|
|
979
|
+
_in?: InputMaybe<Array<Scalars['DateTime']['input']>>;
|
|
980
|
+
/** Is not null */
|
|
981
|
+
_is_not_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
982
|
+
/** Is null */
|
|
983
|
+
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
984
|
+
/** Less than */
|
|
985
|
+
_lt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
986
|
+
/** Less than or equals */
|
|
987
|
+
_lte?: InputMaybe<Scalars['DateTime']['input']>;
|
|
988
|
+
/** Not equals */
|
|
989
|
+
_neq?: InputMaybe<Scalars['DateTime']['input']>;
|
|
990
|
+
/** Not in list */
|
|
991
|
+
_nin?: InputMaybe<Array<Scalars['DateTime']['input']>>;
|
|
992
|
+
};
|
|
993
|
+
|
|
994
|
+
export type DecimalCountContentValidationRuleSettings = {
|
|
995
|
+
__typename?: 'DecimalCountContentValidationRuleSettings';
|
|
996
|
+
max: Scalars['Int']['output'];
|
|
997
|
+
};
|
|
998
|
+
|
|
999
|
+
export type DecimalCountContentValidationRuleSettingsInput = {
|
|
1000
|
+
max: Scalars['Int']['input'];
|
|
1001
|
+
};
|
|
1002
|
+
|
|
1003
|
+
/** The default roles for an organization */
|
|
1004
|
+
export enum DefaultRoleName {
|
|
1005
|
+
Admin = 'ADMIN',
|
|
1006
|
+
ContentEditor = 'CONTENT_EDITOR'
|
|
1007
|
+
}
|
|
1008
|
+
|
|
1009
|
+
export type ExistingContentValidationRulesSettings = AllowedValuesContentValidationRuleSettings | CountContentValidationRuleSettings | DateBetweenContentValidationRuleSettings | DecimalCountContentValidationRuleSettings | NumberBetweenContentValidationRuleSettings | RelatableContentTypesContentValidationRuleSettings | StringFormatContentValidationRuleSettings | ValueTypeContentValidationRuleSettings;
|
|
1010
|
+
|
|
1011
|
+
export type ExperienceComponent = {
|
|
1012
|
+
__typename?: 'ExperienceComponent';
|
|
1013
|
+
/** The Blueprint which this Experience Component defines. This is different from the `blueprintedBy` field, which is the Experience Component which defines part of a Blueprint to create this Experience Component from. */
|
|
1014
|
+
blueprint?: Maybe<Blueprint>;
|
|
1015
|
+
/** The Experience Component in a fixed Blueprint that this Experience Component is created from.Null if not created from a Blueprint, or when created from a free Blueprint. */
|
|
1016
|
+
blueprintedBy?: Maybe<ExperienceComponent>;
|
|
1017
|
+
/** The Experience Components which this Blueprint definition defines. Null if this model is not a Blueprint definition. */
|
|
1018
|
+
blueprintedInstances?: Maybe<Array<ExperienceComponent>>;
|
|
1019
|
+
buildingBlock: BuildingBlock;
|
|
1020
|
+
buildingBlockFieldFulfillments: Array<BuildingBlockFieldFulfillment>;
|
|
1021
|
+
contentExperience?: Maybe<ContentExperience>;
|
|
1022
|
+
createdAt: Scalars['DateTime']['output'];
|
|
1023
|
+
grid?: Maybe<Grid>;
|
|
1024
|
+
/** The Grid Placements this Experience Component is placed in. */
|
|
1025
|
+
gridPlacements: Array<GridPlacement>;
|
|
1026
|
+
/** Whether the Experience Component is a draft. Drafts cannot be used in Grid Placements. */
|
|
1027
|
+
isDraft: Scalars['Boolean']['output'];
|
|
1028
|
+
isGlobal: Scalars['Boolean']['output'];
|
|
1029
|
+
/** The name of the Experience Component. Only applicable for global Experience Components. */
|
|
1030
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1031
|
+
/** Not yet implemented! */
|
|
1032
|
+
organization?: Maybe<Organization>;
|
|
1033
|
+
/** The preview image of the Experience Component. */
|
|
1034
|
+
preview?: Maybe<Asset>;
|
|
1035
|
+
prn: Scalars['PRN']['output'];
|
|
1036
|
+
stage: Stage;
|
|
1037
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
1038
|
+
};
|
|
1039
|
+
|
|
1040
|
+
|
|
1041
|
+
export type ExperienceComponentBlueprintedInstancesArgs = {
|
|
1042
|
+
where?: InputMaybe<Array<ExperienceComponentsFilterInput>>;
|
|
1043
|
+
};
|
|
1044
|
+
|
|
1045
|
+
|
|
1046
|
+
export type ExperienceComponentBuildingBlockFieldFulfillmentsArgs = {
|
|
1047
|
+
where?: InputMaybe<Array<BuildingBlockFieldFulfillmentsFilterInput>>;
|
|
1048
|
+
};
|
|
1049
|
+
|
|
1050
|
+
|
|
1051
|
+
export type ExperienceComponentGridPlacementsArgs = {
|
|
1052
|
+
where?: InputMaybe<Array<GridPlacementsFilterInput>>;
|
|
1053
|
+
};
|
|
1054
|
+
|
|
1055
|
+
export type ExperienceComponentEdge = {
|
|
1056
|
+
__typename?: 'ExperienceComponentEdge';
|
|
1057
|
+
cursor: Scalars['String']['output'];
|
|
1058
|
+
node: ExperienceComponent;
|
|
1059
|
+
};
|
|
1060
|
+
|
|
1061
|
+
export type ExperienceComponentsConnection = {
|
|
1062
|
+
__typename?: 'ExperienceComponentsConnection';
|
|
1063
|
+
edges: Array<ExperienceComponentEdge>;
|
|
1064
|
+
pageInfo: PageInfo;
|
|
1065
|
+
totalCount: Scalars['Int']['output'];
|
|
1066
|
+
};
|
|
1067
|
+
|
|
1068
|
+
/** The filter input type for 'ExperienceComponents'. Objects/maps are treated as AND, while arrays are treated as OR. */
|
|
1069
|
+
export type ExperienceComponentsFilterInput = {
|
|
1070
|
+
_not?: InputMaybe<Array<ExperienceComponentsFilterInput>>;
|
|
1071
|
+
createdAt?: InputMaybe<Array<DateFilter>>;
|
|
1072
|
+
isDraft?: InputMaybe<Array<BooleanFilter>>;
|
|
1073
|
+
isGlobal?: InputMaybe<Array<BooleanFilter>>;
|
|
1074
|
+
name?: InputMaybe<Array<StringFilter>>;
|
|
1075
|
+
prn?: InputMaybe<Array<PrnFilter>>;
|
|
1076
|
+
updatedAt?: InputMaybe<Array<DateFilter>>;
|
|
1077
|
+
};
|
|
1078
|
+
|
|
1079
|
+
export type FindPathPartByPathInput = {
|
|
1080
|
+
/** The Channel of the new Path Part. */
|
|
1081
|
+
channel: Scalars['PRN']['input'];
|
|
1082
|
+
/** The path of the Path Part. Must contain a leading '/'. */
|
|
1083
|
+
path: Scalars['String']['input'];
|
|
1084
|
+
};
|
|
1085
|
+
|
|
1086
|
+
export type GenerateAssetUploadUrlInput = {
|
|
1087
|
+
fileName: Scalars['String']['input'];
|
|
1088
|
+
/** The size of the file in bytes. */
|
|
1089
|
+
fileSize: Scalars['Int']['input'];
|
|
1090
|
+
mimeType?: Scalars['String']['input'];
|
|
1091
|
+
};
|
|
1092
|
+
|
|
1093
|
+
export type GeneratedUploadUrl = {
|
|
1094
|
+
__typename?: 'GeneratedUploadUrl';
|
|
1095
|
+
prn: Scalars['PRN']['output'];
|
|
1096
|
+
/** The URL to upload the Asset to. */
|
|
1097
|
+
url: Scalars['String']['output'];
|
|
1098
|
+
};
|
|
1099
|
+
|
|
1100
|
+
export type Grid = {
|
|
1101
|
+
__typename?: 'Grid';
|
|
1102
|
+
/** The Grid in a fixed Blueprint that this Grid is created from. Null if not created from a fixed Blueprint. */
|
|
1103
|
+
blueprintedBy?: Maybe<Grid>;
|
|
1104
|
+
/** The models which this Blueprint definition defines. Null if this model is not a Blueprint definition. */
|
|
1105
|
+
blueprintedInstances?: Maybe<Grid>;
|
|
1106
|
+
createdAt: Scalars['DateTime']['output'];
|
|
1107
|
+
experienceComponent: ExperienceComponent;
|
|
1108
|
+
gridDefinition: GridDefinition;
|
|
1109
|
+
gridPlacements: Array<GridPlacement>;
|
|
1110
|
+
/** Not yet implemented! */
|
|
1111
|
+
organization?: Maybe<Organization>;
|
|
1112
|
+
prn: Scalars['PRN']['output'];
|
|
1113
|
+
rows: Scalars['Int']['output'];
|
|
1114
|
+
stage: Stage;
|
|
1115
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
1116
|
+
};
|
|
1117
|
+
|
|
1118
|
+
|
|
1119
|
+
export type GridBlueprintedInstancesArgs = {
|
|
1120
|
+
where?: InputMaybe<Array<GridsFilterInput>>;
|
|
1121
|
+
};
|
|
1122
|
+
|
|
1123
|
+
|
|
1124
|
+
export type GridGridPlacementsArgs = {
|
|
1125
|
+
where?: InputMaybe<Array<GridPlacementsFilterInput>>;
|
|
1126
|
+
};
|
|
1127
|
+
|
|
1128
|
+
export type GridDefinition = {
|
|
1129
|
+
__typename?: 'GridDefinition';
|
|
1130
|
+
buildingBlock: BuildingBlock;
|
|
1131
|
+
createdAt: Scalars['DateTime']['output'];
|
|
1132
|
+
maxRows: Scalars['Int']['output'];
|
|
1133
|
+
/** Not yet implemented! */
|
|
1134
|
+
organization?: Maybe<Organization>;
|
|
1135
|
+
prn: Scalars['PRN']['output'];
|
|
1136
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
1137
|
+
};
|
|
1138
|
+
|
|
1139
|
+
export type GridPlacement = {
|
|
1140
|
+
__typename?: 'GridPlacement';
|
|
1141
|
+
/** The Grid Placement in a fixed Blueprint that this Grid Placement is created from. Null if not created from a fixed Blueprint. */
|
|
1142
|
+
blueprintedBy?: Maybe<GridPlacement>;
|
|
1143
|
+
/** The Grid Placements which this Blueprint definition defines. Null if this model is not a Blueprint definition. */
|
|
1144
|
+
blueprintedInstances?: Maybe<Array<GridPlacement>>;
|
|
1145
|
+
createdAt: Scalars['DateTime']['output'];
|
|
1146
|
+
experienceComponent: ExperienceComponent;
|
|
1147
|
+
grid: Grid;
|
|
1148
|
+
/** Not yet implemented! */
|
|
1149
|
+
organization?: Maybe<Organization>;
|
|
1150
|
+
prn: Scalars['PRN']['output'];
|
|
1151
|
+
/** The Content Values that use this Grid Placement as an referenced value. Reverse relation of referencedGridPlacements. */
|
|
1152
|
+
referencedBySmartTextContentValues: Array<ContentValue>;
|
|
1153
|
+
row: Scalars['Int']['output'];
|
|
1154
|
+
stage: Stage;
|
|
1155
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
1156
|
+
};
|
|
1157
|
+
|
|
1158
|
+
|
|
1159
|
+
export type GridPlacementBlueprintedInstancesArgs = {
|
|
1160
|
+
where?: InputMaybe<Array<GridPlacementsFilterInput>>;
|
|
1161
|
+
};
|
|
1162
|
+
|
|
1163
|
+
export type GridPlacementEdge = {
|
|
1164
|
+
__typename?: 'GridPlacementEdge';
|
|
1165
|
+
cursor: Scalars['String']['output'];
|
|
1166
|
+
node: GridPlacement;
|
|
1167
|
+
};
|
|
1168
|
+
|
|
1169
|
+
export type GridPlacementsConnection = {
|
|
1170
|
+
__typename?: 'GridPlacementsConnection';
|
|
1171
|
+
edges: Array<GridPlacementEdge>;
|
|
1172
|
+
pageInfo: PageInfo;
|
|
1173
|
+
totalCount: Scalars['Int']['output'];
|
|
1174
|
+
};
|
|
1175
|
+
|
|
1176
|
+
/** The filter input type for 'GridPlacements'. Objects/maps are treated as AND, while arrays are treated as OR. */
|
|
1177
|
+
export type GridPlacementsFilterInput = {
|
|
1178
|
+
_not?: InputMaybe<Array<GridPlacementsFilterInput>>;
|
|
1179
|
+
createdAt?: InputMaybe<Array<DateFilter>>;
|
|
1180
|
+
prn?: InputMaybe<Array<PrnFilter>>;
|
|
1181
|
+
row?: InputMaybe<Array<IntFilter>>;
|
|
1182
|
+
updatedAt?: InputMaybe<Array<DateFilter>>;
|
|
1183
|
+
};
|
|
1184
|
+
|
|
1185
|
+
/** The filter input type for 'Grids'. Objects/maps are treated as AND, while arrays are treated as OR. */
|
|
1186
|
+
export type GridsFilterInput = {
|
|
1187
|
+
_not?: InputMaybe<Array<GridsFilterInput>>;
|
|
1188
|
+
createdAt?: InputMaybe<Array<DateFilter>>;
|
|
1189
|
+
prn?: InputMaybe<Array<PrnFilter>>;
|
|
1190
|
+
rows?: InputMaybe<Array<IntFilter>>;
|
|
1191
|
+
updatedAt?: InputMaybe<Array<DateFilter>>;
|
|
1192
|
+
};
|
|
1193
|
+
|
|
1194
|
+
export type HandleInvitationInput = {
|
|
1195
|
+
prn: Scalars['PRN']['input'];
|
|
1196
|
+
};
|
|
1197
|
+
|
|
1198
|
+
export type IntFilter = {
|
|
1199
|
+
/** Equals */
|
|
1200
|
+
_eq?: InputMaybe<Scalars['Int']['input']>;
|
|
1201
|
+
/** Greater than */
|
|
1202
|
+
_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
1203
|
+
/** Greater than or equals */
|
|
1204
|
+
_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
1205
|
+
/** In list */
|
|
1206
|
+
_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
1207
|
+
/** Is not null */
|
|
1208
|
+
_is_not_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1209
|
+
/** Is null */
|
|
1210
|
+
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1211
|
+
/** Less than */
|
|
1212
|
+
_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
1213
|
+
/** Less than or equals */
|
|
1214
|
+
_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
1215
|
+
/** Not equals */
|
|
1216
|
+
_neq?: InputMaybe<Scalars['Int']['input']>;
|
|
1217
|
+
/** Not in list */
|
|
1218
|
+
_nin?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
1219
|
+
};
|
|
1220
|
+
|
|
1221
|
+
export type Invitation = {
|
|
1222
|
+
__typename?: 'Invitation';
|
|
1223
|
+
createdAt: Scalars['DateTime']['output'];
|
|
1224
|
+
prn: Scalars['PRN']['output'];
|
|
1225
|
+
role: Role;
|
|
1226
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
1227
|
+
userEmail: Scalars['String']['output'];
|
|
1228
|
+
};
|
|
1229
|
+
|
|
1230
|
+
export type Mutation = {
|
|
1231
|
+
__typename?: 'Mutation';
|
|
1232
|
+
/** Accepts an Invitation for the current Subject (e.g. the logged in user) */
|
|
1233
|
+
acceptInvitation: RoleAssignment;
|
|
1234
|
+
/** Assign the PlateMaintainer role to a user */
|
|
1235
|
+
addPlateMaintainer: Subject;
|
|
1236
|
+
/** Confirm an Asset upload. Unconfirmed Assets are deleted. */
|
|
1237
|
+
confirmAssetUpload: Array<Asset>;
|
|
1238
|
+
/** Copy a Blueprint. Does not copy instances. */
|
|
1239
|
+
copyBlueprint: Array<Blueprint>;
|
|
1240
|
+
createAllowedValuesContentValidationRule: ContentValidationRule;
|
|
1241
|
+
/** Creates one or many new ApiTokens. */
|
|
1242
|
+
createApiToken: Array<CreateApiTokenResponse>;
|
|
1243
|
+
/** Creates one or many new Blueprints. */
|
|
1244
|
+
createBlueprint: Array<Blueprint>;
|
|
1245
|
+
/** Creates one or many new Blueprints from Content Experiences. */
|
|
1246
|
+
createBlueprintFromContentExperience: Array<Blueprint>;
|
|
1247
|
+
/** Creates one or many new BuildingBlocks. */
|
|
1248
|
+
createBuildingBlock: Array<BuildingBlock>;
|
|
1249
|
+
/** Creates one or many new BuildingBlockFields. */
|
|
1250
|
+
createBuildingBlockField: Array<BuildingBlockField>;
|
|
1251
|
+
/** !!!WARNING!!! This is not validated for duplicate BuildingBlockFields or Experience Components. Creates a new BuildingBlockFieldFulfillment. */
|
|
1252
|
+
createBuildingBlockFieldFulfillment: Array<BuildingBlockFieldFulfillment>;
|
|
1253
|
+
/** Creates one or many new Channels. */
|
|
1254
|
+
createChannel: Array<Channel>;
|
|
1255
|
+
/** Creates one or many new ContentExperiences with an existing PathPart. See 'createContentExperienceWithNewPathPart' to create new ContentExperiences with new Path Parts. */
|
|
1256
|
+
createContentExperienceWithExistingPathPart: Array<ContentExperience>;
|
|
1257
|
+
/** Creates one or many new ContentExperiences with a new PathPart. See 'createContentExperienceWithExistingPathPart' to create new ContentExperiences with existing Path Parts. */
|
|
1258
|
+
createContentExperienceWithNewPathPart: Array<ContentExperience>;
|
|
1259
|
+
/** Creates one or many new ContentFields. */
|
|
1260
|
+
createContentField: Array<ContentField>;
|
|
1261
|
+
/** Creates one or many new ContentItems. */
|
|
1262
|
+
createContentItem: Array<ContentItem>;
|
|
1263
|
+
/** Creates one or many new ContentTypes. */
|
|
1264
|
+
createContentType: Array<ContentType>;
|
|
1265
|
+
/** Creates one or many new ContentValues. */
|
|
1266
|
+
createContentValue: Array<ContentValue>;
|
|
1267
|
+
createCountContentValidationRule: ContentValidationRule;
|
|
1268
|
+
createDateBetweenContentValidationRule: ContentValidationRule;
|
|
1269
|
+
createDecimalCountContentValidationRule: ContentValidationRule;
|
|
1270
|
+
/**
|
|
1271
|
+
* Creates a new Experience Component with optional Building Block Field Fulfillments and Grid.
|
|
1272
|
+
* Throws BadRequestException when the given Building Block does not exist.
|
|
1273
|
+
* Throws BadRequestException when the given Building Block has a Grid Definition but no Grid was given.
|
|
1274
|
+
* Throws BadRequestException when the given Building Block does not have a Grid Definition but a Grid was given anyway.
|
|
1275
|
+
* Throws BadRequestException when the given Building Block Field Fulfillments do not exactly match the Building Block Fields of the given Building Block.
|
|
1276
|
+
*/
|
|
1277
|
+
createExperienceComponent: Array<ExperienceComponent>;
|
|
1278
|
+
/**
|
|
1279
|
+
* Creates a new global Experience Component with optional Building Block Field Fulfillments and Grid.
|
|
1280
|
+
* Throws BadRequestException when the given Building Block does not exist.
|
|
1281
|
+
* Throws BadRequestException when the given Building Block has a Grid Definition but no Grid was given.
|
|
1282
|
+
* Throws BadRequestException when the given Building Block does not have a Grid Definition but a Grid was given anyway.
|
|
1283
|
+
* Throws BadRequestException when the given Building Block Field Fulfillments do not exactly match the Building Block Fields of the given Building Block.
|
|
1284
|
+
*/
|
|
1285
|
+
createGlobalExperienceComponent: Array<ExperienceComponent>;
|
|
1286
|
+
/**
|
|
1287
|
+
* Creates a new Grid.
|
|
1288
|
+
* Throws BadRequestException when no Grid Definition is given.
|
|
1289
|
+
* Throws BadRequestException when no Experience Component is given.
|
|
1290
|
+
* Throws BadRequestException when the given Grid Definition does not exist.
|
|
1291
|
+
*/
|
|
1292
|
+
createGrid: Array<Grid>;
|
|
1293
|
+
/** Creates one or many new GridDefinitions. */
|
|
1294
|
+
createGridDefinition: Array<GridDefinition>;
|
|
1295
|
+
/**
|
|
1296
|
+
* Creates a new Grid Placement.
|
|
1297
|
+
* Moves Grid Placements below the new Grid Placement down by one.
|
|
1298
|
+
* Throws BadRequestException when no Experience Component PRN is given.
|
|
1299
|
+
*/
|
|
1300
|
+
createGridPlacement: Array<GridPlacement>;
|
|
1301
|
+
/** Creates one or many new Invitations. */
|
|
1302
|
+
createInvitation: Array<Invitation>;
|
|
1303
|
+
createNumberBetweenContentValidationRule: ContentValidationRule;
|
|
1304
|
+
createOrganization: Organization;
|
|
1305
|
+
/** Create a new Path Part using a parent Path Part. */
|
|
1306
|
+
createPathPartFromParent: Array<PathPart>;
|
|
1307
|
+
/** Create a new Path Part using a path. */
|
|
1308
|
+
createPathPartFromPath: Array<PathPart>;
|
|
1309
|
+
createRelatableContentTypesContentValidationRule: ContentValidationRule;
|
|
1310
|
+
createStringFormatContentValidationRule: ContentValidationRule;
|
|
1311
|
+
/** Create a new Tag. */
|
|
1312
|
+
createTag: Array<Tag>;
|
|
1313
|
+
/** Creates one or many new Themes. */
|
|
1314
|
+
createTheme: Array<Theme>;
|
|
1315
|
+
createValueTypeContentValidationRule: ContentValidationRule;
|
|
1316
|
+
/** Declines an Invitation for the current Subject (e.g. the logged in user) */
|
|
1317
|
+
declineInvitation: Invitation;
|
|
1318
|
+
/**
|
|
1319
|
+
* Generates the upload URL for one or many new Assets.
|
|
1320
|
+
* See the wiki for an example: https://plate.atlassian.net/wiki/spaces/DW/pages/1488945153/Asset+Manager#Uploading-Assets
|
|
1321
|
+
*/
|
|
1322
|
+
generateAssetUploadUrl: Array<GeneratedUploadUrl>;
|
|
1323
|
+
/** Regenerate one or many new ApiTokens. */
|
|
1324
|
+
regenerateApiToken: Array<CreateApiTokenResponse>;
|
|
1325
|
+
/**
|
|
1326
|
+
* Removes one or many ApiTokens.
|
|
1327
|
+
* Throws NotFoundException when no ApiToken could be found.
|
|
1328
|
+
*/
|
|
1329
|
+
removeApiToken: Array<ApiToken>;
|
|
1330
|
+
/**
|
|
1331
|
+
* Removes one or many Blueprints.
|
|
1332
|
+
* Throws NotFoundException when no Blueprint could be found.
|
|
1333
|
+
*/
|
|
1334
|
+
removeBlueprint: Array<RemoveBlueprintResponse>;
|
|
1335
|
+
/**
|
|
1336
|
+
* Removes one or many BuildingBlocks.
|
|
1337
|
+
* Throws NotFoundException when no BuildingBlock could be found.
|
|
1338
|
+
*/
|
|
1339
|
+
removeBuildingBlock: Array<RemoveBuildingBlockResponse>;
|
|
1340
|
+
/**
|
|
1341
|
+
* Removes one or many BuildingBlockFields.
|
|
1342
|
+
* Throws NotFoundException when no BuildingBlockField could be found.
|
|
1343
|
+
*/
|
|
1344
|
+
removeBuildingBlockField: Array<BuildingBlockField>;
|
|
1345
|
+
/**
|
|
1346
|
+
* Removes one or many BuildingBlockFieldFulfillments.
|
|
1347
|
+
* Throws NotFoundException when no BuildingBlockFieldFulfillments could be found.
|
|
1348
|
+
*/
|
|
1349
|
+
removeBuildingBlockFieldFulfillment: Array<BuildingBlockFieldFulfillment>;
|
|
1350
|
+
/**
|
|
1351
|
+
* Removes one or many Channels.
|
|
1352
|
+
* Throws NotFoundException when no Channels could be found.
|
|
1353
|
+
*/
|
|
1354
|
+
removeChannel: Array<Channel>;
|
|
1355
|
+
/**
|
|
1356
|
+
* Removes one or many ContentExperiences.
|
|
1357
|
+
* Throws NotFoundException when no ContentExperiences could be found.
|
|
1358
|
+
*/
|
|
1359
|
+
removeContentExperience: Array<RemoveContentExperienceResponse>;
|
|
1360
|
+
/**
|
|
1361
|
+
* Removes one or many ContentFields.
|
|
1362
|
+
* Throws NotFoundException when no ContentField could be found.
|
|
1363
|
+
* Throws UnprocessableContentError when attempting to remove a Content Field outside of the DEVELOPMENT stage.
|
|
1364
|
+
* Throws UnprocessableContentError when attempting to remove a Content Field that is being used by Content Values.
|
|
1365
|
+
* Throws BadRequestError when attempting to remove a Content Field that is being used in the displayNameTemplate of its Content Type.
|
|
1366
|
+
* Throws BadRequestError when attempting to remove a Content Field that is being used in the displayImageField of its Content Type.
|
|
1367
|
+
*/
|
|
1368
|
+
removeContentField: Array<ContentField>;
|
|
1369
|
+
/**
|
|
1370
|
+
* Removes a ContentItem. Also removes connected ContentValues.
|
|
1371
|
+
* Throws NotFoundException when no ContentItem could be found.
|
|
1372
|
+
*/
|
|
1373
|
+
removeContentItem: Array<ContentItem>;
|
|
1374
|
+
/**
|
|
1375
|
+
* Removes a ContentType. Also removes connected ContentFields.
|
|
1376
|
+
* Throws NotFoundException when no ContentType could be found.
|
|
1377
|
+
*/
|
|
1378
|
+
removeContentType: Array<ContentType>;
|
|
1379
|
+
/**
|
|
1380
|
+
* Removes one or many ContentValidationRules.
|
|
1381
|
+
* Throws NotFoundException when no ContentValidationRules could be found.
|
|
1382
|
+
*/
|
|
1383
|
+
removeContentValidationRule: Array<ContentValidationRule>;
|
|
1384
|
+
/**
|
|
1385
|
+
* Removes one or many ContentValues.
|
|
1386
|
+
* Throws NotFoundException when no ContentValue could be found.
|
|
1387
|
+
*/
|
|
1388
|
+
removeContentValue: Array<RemoveContentValueResponse>;
|
|
1389
|
+
/**
|
|
1390
|
+
* Removes one or many ExperienceComponents.
|
|
1391
|
+
* Throws NotFoundException when no ExperienceComponents could be found.
|
|
1392
|
+
*/
|
|
1393
|
+
removeExperienceComponent: Array<RemoveExperienceComponentResponse>;
|
|
1394
|
+
/**
|
|
1395
|
+
* Removes one or many Grids.
|
|
1396
|
+
* Throws NotFoundException when no Grids could be found.
|
|
1397
|
+
*/
|
|
1398
|
+
removeGrid: Array<Grid>;
|
|
1399
|
+
/**
|
|
1400
|
+
* Removes one or many GridDefinitions.
|
|
1401
|
+
* Throws NotFoundException when no GridDefinition could be found.
|
|
1402
|
+
*/
|
|
1403
|
+
removeGridDefinition: Array<GridDefinition>;
|
|
1404
|
+
/**
|
|
1405
|
+
* Removes one or many GridPlacements.
|
|
1406
|
+
* Throws NotFoundException when no GridPlacements could be found.
|
|
1407
|
+
*/
|
|
1408
|
+
removeGridPlacement: Array<GridPlacement>;
|
|
1409
|
+
/**
|
|
1410
|
+
* Removes one or many Invitations.
|
|
1411
|
+
* Throws NotFoundException when no Invitation could be found.
|
|
1412
|
+
*/
|
|
1413
|
+
removeInvitation: Array<Invitation>;
|
|
1414
|
+
/**
|
|
1415
|
+
* Removes one or many Organizations.
|
|
1416
|
+
* Throws NotFoundException when no Organization could be found.
|
|
1417
|
+
*/
|
|
1418
|
+
removeOrganization: Array<RemoveOrganizationResponse>;
|
|
1419
|
+
/**
|
|
1420
|
+
* Removes one or many Path Parts.
|
|
1421
|
+
* Throws NotFoundException when no Path Parts could be found.
|
|
1422
|
+
*/
|
|
1423
|
+
removePathPart: Array<PathPart>;
|
|
1424
|
+
/** Remove the PlateMaintainer role of a user */
|
|
1425
|
+
removePlateMaintainer: Subject;
|
|
1426
|
+
/**
|
|
1427
|
+
* Removes one or many RoleAssignments.
|
|
1428
|
+
* Throws NotFoundException when no RoleAssignment could be found.
|
|
1429
|
+
*/
|
|
1430
|
+
removeRoleAssignment: Array<RoleAssignment>;
|
|
1431
|
+
/**
|
|
1432
|
+
* Removes one or many Tags.
|
|
1433
|
+
* Throws NotFoundException when no Tags could be found.
|
|
1434
|
+
*/
|
|
1435
|
+
removeTag: Array<Tag>;
|
|
1436
|
+
/**
|
|
1437
|
+
* Removes one or many Themes.
|
|
1438
|
+
* Throws NotFoundException when no Theme could be found.
|
|
1439
|
+
*/
|
|
1440
|
+
removeTheme: Array<Theme>;
|
|
1441
|
+
/** Starts the creation of the a given seed for the current organization. This removes existing content and creates new content */
|
|
1442
|
+
runSeeder: Scalars['Boolean']['output'];
|
|
1443
|
+
/** Synchronizes the current state of the given Blueprint to all of its instances. */
|
|
1444
|
+
syncBlueprint: Scalars['Boolean']['output'];
|
|
1445
|
+
/** Syncs the visibility of a Tag to its descendants. */
|
|
1446
|
+
syncTagVisibilityToDescendants: Array<Scalars['Boolean']['output']>;
|
|
1447
|
+
updateAllowedValuesContentValidationRule: ContentValidationRule;
|
|
1448
|
+
/**
|
|
1449
|
+
* Updates one or many ApiTokens with new values.
|
|
1450
|
+
* Throws NotFoundException when no ApiToken could be found.
|
|
1451
|
+
*/
|
|
1452
|
+
updateApiToken: Array<ApiToken>;
|
|
1453
|
+
/**
|
|
1454
|
+
* Updates one or many Assets with new values.
|
|
1455
|
+
* Throws NotFoundException when no Asset could be found.
|
|
1456
|
+
*/
|
|
1457
|
+
updateAsset: Array<Asset>;
|
|
1458
|
+
/**
|
|
1459
|
+
* Updates one or many Blueprints with new values.
|
|
1460
|
+
* Throws NotFoundException when no Blueprint could be found.
|
|
1461
|
+
*/
|
|
1462
|
+
updateBlueprint: Array<Blueprint>;
|
|
1463
|
+
/**
|
|
1464
|
+
* Updates one or many BuildingBlocks with new values.
|
|
1465
|
+
* Throws NotFoundException when no BuildingBlock could be found.
|
|
1466
|
+
*/
|
|
1467
|
+
updateBuildingBlock: Array<BuildingBlock>;
|
|
1468
|
+
/**
|
|
1469
|
+
* Updates one or many BuildingBlockFields with new values.
|
|
1470
|
+
* Throws NotFoundException when no BuildingBlockField could be found.
|
|
1471
|
+
*/
|
|
1472
|
+
updateBuildingBlockField: Array<BuildingBlockField>;
|
|
1473
|
+
/** !!!WARNING!!! This currently removes an existing Fulfillment and then creates a new one, so the PRN changes with this mutationUpdates an existing BuildingBlockFieldFulfillment. */
|
|
1474
|
+
updateBuildingBlockFieldFulfillment: Array<BuildingBlockFieldFulfillment>;
|
|
1475
|
+
/**
|
|
1476
|
+
* Updates one or many Channel with new values.
|
|
1477
|
+
* Throws NotFoundException when no Channel could be found.
|
|
1478
|
+
*/
|
|
1479
|
+
updateChannel: Array<Channel>;
|
|
1480
|
+
/**
|
|
1481
|
+
* Updates one or many ContentExperience with new values.
|
|
1482
|
+
* Throws NotFoundException when no ContentExperience could be found.
|
|
1483
|
+
*/
|
|
1484
|
+
updateContentExperience: Array<ContentExperience>;
|
|
1485
|
+
/**
|
|
1486
|
+
* Updates one or many ContentFields with new values.
|
|
1487
|
+
* Throws NotFoundException when no ContentField could be found.
|
|
1488
|
+
*/
|
|
1489
|
+
updateContentField: Array<ContentField>;
|
|
1490
|
+
/**
|
|
1491
|
+
* Updates one or many ContentItem with new values.
|
|
1492
|
+
* Throws NotFoundException when no ContentItem could be found.
|
|
1493
|
+
*/
|
|
1494
|
+
updateContentItem: Array<ContentItem>;
|
|
1495
|
+
/**
|
|
1496
|
+
* Updates one or many ContentTypes with new values.
|
|
1497
|
+
* Throws NotFoundException when no ContentType could be found.
|
|
1498
|
+
*/
|
|
1499
|
+
updateContentType: Array<ContentType>;
|
|
1500
|
+
/**
|
|
1501
|
+
* Updates one or many ContentValues with new values.
|
|
1502
|
+
* Throws NotFoundException when no ContentValue could be found.
|
|
1503
|
+
*/
|
|
1504
|
+
updateContentValue: Array<ContentValue>;
|
|
1505
|
+
updateCountContentValidationRule: ContentValidationRule;
|
|
1506
|
+
updateDateBetweenContentValidationRule: ContentValidationRule;
|
|
1507
|
+
updateDecimalCountContentValidationRule: ContentValidationRule;
|
|
1508
|
+
/**
|
|
1509
|
+
* Updates one or many ExperienceComponent with new values.
|
|
1510
|
+
* Throws NotFoundException when no ExperienceComponent could be found.
|
|
1511
|
+
*/
|
|
1512
|
+
updateExperienceComponent: Array<ExperienceComponent>;
|
|
1513
|
+
/**
|
|
1514
|
+
* Updates one or many Grid with new values.
|
|
1515
|
+
* Throws NotFoundException when no Grid could be found.
|
|
1516
|
+
*/
|
|
1517
|
+
updateGrid: Array<Grid>;
|
|
1518
|
+
/**
|
|
1519
|
+
* Updates one or many GridDefinitions with new values.
|
|
1520
|
+
* Throws NotFoundException when no GridDefinition could be found.
|
|
1521
|
+
*/
|
|
1522
|
+
updateGridDefinition: Array<GridDefinition>;
|
|
1523
|
+
/**
|
|
1524
|
+
* Updates a Grid Placement with new values.
|
|
1525
|
+
* Updates the Grid Placements between the old row and the new row to move accordingly.
|
|
1526
|
+
* Throws NotFoundException when no Grid Placement could be found.
|
|
1527
|
+
*/
|
|
1528
|
+
updateGridPlacement: Array<GridPlacement>;
|
|
1529
|
+
updateNumberBetweenContentValidationRule: ContentValidationRule;
|
|
1530
|
+
/**
|
|
1531
|
+
* Updates one or many Organizations with new values.
|
|
1532
|
+
* Throws NotFoundException when no Organization could be found.
|
|
1533
|
+
*/
|
|
1534
|
+
updateOrganization: Array<Organization>;
|
|
1535
|
+
/**
|
|
1536
|
+
* Updates one or many Path Part with new values.
|
|
1537
|
+
* Throws NotFoundException when no Path Part could be found.
|
|
1538
|
+
*/
|
|
1539
|
+
updatePathPart: Array<PathPart>;
|
|
1540
|
+
/**
|
|
1541
|
+
* Updates one or many Path Part from a path.
|
|
1542
|
+
* Throws NotFoundException when no Path Part could be found.
|
|
1543
|
+
*/
|
|
1544
|
+
updatePathPartFromPath: Array<PathPart>;
|
|
1545
|
+
updateRelatableContentTypesContentValidationRule: ContentValidationRule;
|
|
1546
|
+
updateStringFormatContentValidationRule: ContentValidationRule;
|
|
1547
|
+
/**
|
|
1548
|
+
* Updates one or many Tags with new values.
|
|
1549
|
+
* Throws NotFoundException when no Tag could be found.
|
|
1550
|
+
*/
|
|
1551
|
+
updateTag: Array<Tag>;
|
|
1552
|
+
/**
|
|
1553
|
+
* Updates one or many Themes with new values.
|
|
1554
|
+
* Throws NotFoundException when no Theme could be found.
|
|
1555
|
+
*/
|
|
1556
|
+
updateTheme: Array<Theme>;
|
|
1557
|
+
updateValueTypeContentValidationRule: ContentValidationRule;
|
|
1558
|
+
};
|
|
1559
|
+
|
|
1560
|
+
|
|
1561
|
+
export type MutationAcceptInvitationArgs = {
|
|
1562
|
+
input: HandleInvitationInput;
|
|
1563
|
+
};
|
|
1564
|
+
|
|
1565
|
+
|
|
1566
|
+
export type MutationAddPlateMaintainerArgs = {
|
|
1567
|
+
email: Scalars['String']['input'];
|
|
1568
|
+
};
|
|
1569
|
+
|
|
1570
|
+
|
|
1571
|
+
export type MutationConfirmAssetUploadArgs = {
|
|
1572
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
1573
|
+
};
|
|
1574
|
+
|
|
1575
|
+
|
|
1576
|
+
export type MutationCopyBlueprintArgs = {
|
|
1577
|
+
input: Array<CopyBlueprintInput>;
|
|
1578
|
+
};
|
|
1579
|
+
|
|
1580
|
+
|
|
1581
|
+
export type MutationCreateAllowedValuesContentValidationRuleArgs = {
|
|
1582
|
+
input: CreateAllowedValuesContentValidationRuleInput;
|
|
1583
|
+
};
|
|
1584
|
+
|
|
1585
|
+
|
|
1586
|
+
export type MutationCreateApiTokenArgs = {
|
|
1587
|
+
input: Array<CreateApiTokenInput>;
|
|
1588
|
+
};
|
|
1589
|
+
|
|
1590
|
+
|
|
1591
|
+
export type MutationCreateBlueprintArgs = {
|
|
1592
|
+
input: Array<CreateBlueprintInput>;
|
|
1593
|
+
};
|
|
1594
|
+
|
|
1595
|
+
|
|
1596
|
+
export type MutationCreateBlueprintFromContentExperienceArgs = {
|
|
1597
|
+
input: Array<CreateBlueprintFromContentExperienceInput>;
|
|
1598
|
+
};
|
|
1599
|
+
|
|
1600
|
+
|
|
1601
|
+
export type MutationCreateBuildingBlockArgs = {
|
|
1602
|
+
input: Array<CreateBuildingBlockInput>;
|
|
1603
|
+
};
|
|
1604
|
+
|
|
1605
|
+
|
|
1606
|
+
export type MutationCreateBuildingBlockFieldArgs = {
|
|
1607
|
+
input: Array<CreateBuildingBlockFieldInput>;
|
|
1608
|
+
};
|
|
1609
|
+
|
|
1610
|
+
|
|
1611
|
+
export type MutationCreateBuildingBlockFieldFulfillmentArgs = {
|
|
1612
|
+
input: Array<CreateBuildingBlockFieldFulfillmentInput>;
|
|
1613
|
+
};
|
|
1614
|
+
|
|
1615
|
+
|
|
1616
|
+
export type MutationCreateChannelArgs = {
|
|
1617
|
+
input: Array<CreateChannelInput>;
|
|
1618
|
+
};
|
|
1619
|
+
|
|
1620
|
+
|
|
1621
|
+
export type MutationCreateContentExperienceWithExistingPathPartArgs = {
|
|
1622
|
+
input: Array<CreateContentExperienceWithExistingPathPartInput>;
|
|
1623
|
+
};
|
|
1624
|
+
|
|
1625
|
+
|
|
1626
|
+
export type MutationCreateContentExperienceWithNewPathPartArgs = {
|
|
1627
|
+
input: Array<CreateContentExperienceWithNewPathPartInput>;
|
|
1628
|
+
};
|
|
1629
|
+
|
|
1630
|
+
|
|
1631
|
+
export type MutationCreateContentFieldArgs = {
|
|
1632
|
+
input: Array<CreateContentFieldInput>;
|
|
1633
|
+
};
|
|
1634
|
+
|
|
1635
|
+
|
|
1636
|
+
export type MutationCreateContentItemArgs = {
|
|
1637
|
+
input: Array<CreateContentItemInput>;
|
|
1638
|
+
};
|
|
1639
|
+
|
|
1640
|
+
|
|
1641
|
+
export type MutationCreateContentTypeArgs = {
|
|
1642
|
+
input: Array<CreateContentTypeInput>;
|
|
1643
|
+
};
|
|
1644
|
+
|
|
1645
|
+
|
|
1646
|
+
export type MutationCreateContentValueArgs = {
|
|
1647
|
+
input: Array<CreateContentValueInput>;
|
|
1648
|
+
};
|
|
1649
|
+
|
|
1650
|
+
|
|
1651
|
+
export type MutationCreateCountContentValidationRuleArgs = {
|
|
1652
|
+
input: CreateCountContentValidationRuleInput;
|
|
1653
|
+
};
|
|
1654
|
+
|
|
1655
|
+
|
|
1656
|
+
export type MutationCreateDateBetweenContentValidationRuleArgs = {
|
|
1657
|
+
input: CreateDateBetweenContentValidationRuleInput;
|
|
1658
|
+
};
|
|
1659
|
+
|
|
1660
|
+
|
|
1661
|
+
export type MutationCreateDecimalCountContentValidationRuleArgs = {
|
|
1662
|
+
input: CreateDecimalCountContentValidationRuleInput;
|
|
1663
|
+
};
|
|
1664
|
+
|
|
1665
|
+
|
|
1666
|
+
export type MutationCreateExperienceComponentArgs = {
|
|
1667
|
+
input: Array<CreateExperienceComponentInput>;
|
|
1668
|
+
};
|
|
1669
|
+
|
|
1670
|
+
|
|
1671
|
+
export type MutationCreateGlobalExperienceComponentArgs = {
|
|
1672
|
+
input: Array<CreateGlobalExperienceComponentInput>;
|
|
1673
|
+
};
|
|
1674
|
+
|
|
1675
|
+
|
|
1676
|
+
export type MutationCreateGridArgs = {
|
|
1677
|
+
input: Array<CreateGridInput>;
|
|
1678
|
+
};
|
|
1679
|
+
|
|
1680
|
+
|
|
1681
|
+
export type MutationCreateGridDefinitionArgs = {
|
|
1682
|
+
input: Array<CreateGridDefinitionInput>;
|
|
1683
|
+
};
|
|
1684
|
+
|
|
1685
|
+
|
|
1686
|
+
export type MutationCreateGridPlacementArgs = {
|
|
1687
|
+
input: Array<CreateGridPlacementInput>;
|
|
1688
|
+
};
|
|
1689
|
+
|
|
1690
|
+
|
|
1691
|
+
export type MutationCreateInvitationArgs = {
|
|
1692
|
+
input: Array<CreateInvitationInput>;
|
|
1693
|
+
};
|
|
1694
|
+
|
|
1695
|
+
|
|
1696
|
+
export type MutationCreateNumberBetweenContentValidationRuleArgs = {
|
|
1697
|
+
input: CreateNumberBetweenContentValidationRuleInput;
|
|
1698
|
+
};
|
|
1699
|
+
|
|
1700
|
+
|
|
1701
|
+
export type MutationCreateOrganizationArgs = {
|
|
1702
|
+
input: CreateOrganizationInput;
|
|
1703
|
+
};
|
|
1704
|
+
|
|
1705
|
+
|
|
1706
|
+
export type MutationCreatePathPartFromParentArgs = {
|
|
1707
|
+
input: Array<CreatePathPartFromParentInput>;
|
|
1708
|
+
};
|
|
1709
|
+
|
|
1710
|
+
|
|
1711
|
+
export type MutationCreatePathPartFromPathArgs = {
|
|
1712
|
+
input: Array<CreatePathPartFromPathInput>;
|
|
1713
|
+
};
|
|
1714
|
+
|
|
1715
|
+
|
|
1716
|
+
export type MutationCreateRelatableContentTypesContentValidationRuleArgs = {
|
|
1717
|
+
input: CreateRelatableContentTypesContentValidationRuleInput;
|
|
1718
|
+
};
|
|
1719
|
+
|
|
1720
|
+
|
|
1721
|
+
export type MutationCreateStringFormatContentValidationRuleArgs = {
|
|
1722
|
+
input: CreateStringFormatContentValidationRuleInput;
|
|
1723
|
+
};
|
|
1724
|
+
|
|
1725
|
+
|
|
1726
|
+
export type MutationCreateTagArgs = {
|
|
1727
|
+
input: Array<CreateTagInput>;
|
|
1728
|
+
};
|
|
1729
|
+
|
|
1730
|
+
|
|
1731
|
+
export type MutationCreateThemeArgs = {
|
|
1732
|
+
input: Array<CreateThemeInput>;
|
|
1733
|
+
};
|
|
1734
|
+
|
|
1735
|
+
|
|
1736
|
+
export type MutationCreateValueTypeContentValidationRuleArgs = {
|
|
1737
|
+
input: CreateValueTypeContentValidationRuleInput;
|
|
1738
|
+
};
|
|
1739
|
+
|
|
1740
|
+
|
|
1741
|
+
export type MutationDeclineInvitationArgs = {
|
|
1742
|
+
input: HandleInvitationInput;
|
|
1743
|
+
};
|
|
1744
|
+
|
|
1745
|
+
|
|
1746
|
+
export type MutationGenerateAssetUploadUrlArgs = {
|
|
1747
|
+
input: Array<GenerateAssetUploadUrlInput>;
|
|
1748
|
+
};
|
|
1749
|
+
|
|
1750
|
+
|
|
1751
|
+
export type MutationRegenerateApiTokenArgs = {
|
|
1752
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
1753
|
+
};
|
|
1754
|
+
|
|
1755
|
+
|
|
1756
|
+
export type MutationRemoveApiTokenArgs = {
|
|
1757
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
1758
|
+
};
|
|
1759
|
+
|
|
1760
|
+
|
|
1761
|
+
export type MutationRemoveBlueprintArgs = {
|
|
1762
|
+
input: Array<RemoveBlueprintInput>;
|
|
1763
|
+
};
|
|
1764
|
+
|
|
1765
|
+
|
|
1766
|
+
export type MutationRemoveBuildingBlockArgs = {
|
|
1767
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
1768
|
+
};
|
|
1769
|
+
|
|
1770
|
+
|
|
1771
|
+
export type MutationRemoveBuildingBlockFieldArgs = {
|
|
1772
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
1773
|
+
};
|
|
1774
|
+
|
|
1775
|
+
|
|
1776
|
+
export type MutationRemoveBuildingBlockFieldFulfillmentArgs = {
|
|
1777
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
1778
|
+
};
|
|
1779
|
+
|
|
1780
|
+
|
|
1781
|
+
export type MutationRemoveChannelArgs = {
|
|
1782
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
1783
|
+
};
|
|
1784
|
+
|
|
1785
|
+
|
|
1786
|
+
export type MutationRemoveContentExperienceArgs = {
|
|
1787
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
1788
|
+
};
|
|
1789
|
+
|
|
1790
|
+
|
|
1791
|
+
export type MutationRemoveContentFieldArgs = {
|
|
1792
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
1793
|
+
};
|
|
1794
|
+
|
|
1795
|
+
|
|
1796
|
+
export type MutationRemoveContentItemArgs = {
|
|
1797
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
1798
|
+
};
|
|
1799
|
+
|
|
1800
|
+
|
|
1801
|
+
export type MutationRemoveContentTypeArgs = {
|
|
1802
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
1803
|
+
};
|
|
1804
|
+
|
|
1805
|
+
|
|
1806
|
+
export type MutationRemoveContentValidationRuleArgs = {
|
|
1807
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
1808
|
+
};
|
|
1809
|
+
|
|
1810
|
+
|
|
1811
|
+
export type MutationRemoveContentValueArgs = {
|
|
1812
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
1813
|
+
};
|
|
1814
|
+
|
|
1815
|
+
|
|
1816
|
+
export type MutationRemoveExperienceComponentArgs = {
|
|
1817
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
1818
|
+
};
|
|
1819
|
+
|
|
1820
|
+
|
|
1821
|
+
export type MutationRemoveGridArgs = {
|
|
1822
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
1823
|
+
};
|
|
1824
|
+
|
|
1825
|
+
|
|
1826
|
+
export type MutationRemoveGridDefinitionArgs = {
|
|
1827
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
1828
|
+
};
|
|
1829
|
+
|
|
1830
|
+
|
|
1831
|
+
export type MutationRemoveGridPlacementArgs = {
|
|
1832
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
1833
|
+
};
|
|
1834
|
+
|
|
1835
|
+
|
|
1836
|
+
export type MutationRemoveInvitationArgs = {
|
|
1837
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
1838
|
+
};
|
|
1839
|
+
|
|
1840
|
+
|
|
1841
|
+
export type MutationRemoveOrganizationArgs = {
|
|
1842
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
1843
|
+
};
|
|
1844
|
+
|
|
1845
|
+
|
|
1846
|
+
export type MutationRemovePathPartArgs = {
|
|
1847
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
1848
|
+
};
|
|
1849
|
+
|
|
1850
|
+
|
|
1851
|
+
export type MutationRemovePlateMaintainerArgs = {
|
|
1852
|
+
id: Scalars['String']['input'];
|
|
1853
|
+
};
|
|
1854
|
+
|
|
1855
|
+
|
|
1856
|
+
export type MutationRemoveRoleAssignmentArgs = {
|
|
1857
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
1858
|
+
};
|
|
1859
|
+
|
|
1860
|
+
|
|
1861
|
+
export type MutationRemoveTagArgs = {
|
|
1862
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
1863
|
+
};
|
|
1864
|
+
|
|
1865
|
+
|
|
1866
|
+
export type MutationRemoveThemeArgs = {
|
|
1867
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
1868
|
+
};
|
|
1869
|
+
|
|
1870
|
+
|
|
1871
|
+
export type MutationRunSeederArgs = {
|
|
1872
|
+
seedType: SeedType;
|
|
1873
|
+
};
|
|
1874
|
+
|
|
1875
|
+
|
|
1876
|
+
export type MutationSyncBlueprintArgs = {
|
|
1877
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
1878
|
+
};
|
|
1879
|
+
|
|
1880
|
+
|
|
1881
|
+
export type MutationSyncTagVisibilityToDescendantsArgs = {
|
|
1882
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
1883
|
+
};
|
|
1884
|
+
|
|
1885
|
+
|
|
1886
|
+
export type MutationUpdateAllowedValuesContentValidationRuleArgs = {
|
|
1887
|
+
input: UpdateAllowedValuesContentValidationRuleInput;
|
|
1888
|
+
};
|
|
1889
|
+
|
|
1890
|
+
|
|
1891
|
+
export type MutationUpdateApiTokenArgs = {
|
|
1892
|
+
input: Array<UpdateApiTokenInput>;
|
|
1893
|
+
};
|
|
1894
|
+
|
|
1895
|
+
|
|
1896
|
+
export type MutationUpdateAssetArgs = {
|
|
1897
|
+
input: Array<UpdateAssetInput>;
|
|
1898
|
+
};
|
|
1899
|
+
|
|
1900
|
+
|
|
1901
|
+
export type MutationUpdateBlueprintArgs = {
|
|
1902
|
+
input: Array<UpdateBlueprintInput>;
|
|
1903
|
+
};
|
|
1904
|
+
|
|
1905
|
+
|
|
1906
|
+
export type MutationUpdateBuildingBlockArgs = {
|
|
1907
|
+
input: Array<UpdateBuildingBlockInput>;
|
|
1908
|
+
};
|
|
1909
|
+
|
|
1910
|
+
|
|
1911
|
+
export type MutationUpdateBuildingBlockFieldArgs = {
|
|
1912
|
+
input: Array<UpdateBuildingBlockFieldInput>;
|
|
1913
|
+
};
|
|
1914
|
+
|
|
1915
|
+
|
|
1916
|
+
export type MutationUpdateBuildingBlockFieldFulfillmentArgs = {
|
|
1917
|
+
input: Array<UpdateBuildingBlockFieldFulfillmentInput>;
|
|
1918
|
+
};
|
|
1919
|
+
|
|
1920
|
+
|
|
1921
|
+
export type MutationUpdateChannelArgs = {
|
|
1922
|
+
input: Array<UpdateChannelInput>;
|
|
1923
|
+
};
|
|
1924
|
+
|
|
1925
|
+
|
|
1926
|
+
export type MutationUpdateContentExperienceArgs = {
|
|
1927
|
+
input: Array<UpdateContentExperienceInput>;
|
|
1928
|
+
};
|
|
1929
|
+
|
|
1930
|
+
|
|
1931
|
+
export type MutationUpdateContentFieldArgs = {
|
|
1932
|
+
input: Array<UpdateContentFieldInput>;
|
|
1933
|
+
};
|
|
1934
|
+
|
|
1935
|
+
|
|
1936
|
+
export type MutationUpdateContentItemArgs = {
|
|
1937
|
+
input: Array<UpdateContentItemInput>;
|
|
1938
|
+
};
|
|
1939
|
+
|
|
1940
|
+
|
|
1941
|
+
export type MutationUpdateContentTypeArgs = {
|
|
1942
|
+
input: Array<UpdateContentTypeInput>;
|
|
1943
|
+
};
|
|
1944
|
+
|
|
1945
|
+
|
|
1946
|
+
export type MutationUpdateContentValueArgs = {
|
|
1947
|
+
input: Array<UpdateContentValueInput>;
|
|
1948
|
+
};
|
|
1949
|
+
|
|
1950
|
+
|
|
1951
|
+
export type MutationUpdateCountContentValidationRuleArgs = {
|
|
1952
|
+
input: UpdateCountContentValidationRuleInput;
|
|
1953
|
+
};
|
|
1954
|
+
|
|
1955
|
+
|
|
1956
|
+
export type MutationUpdateDateBetweenContentValidationRuleArgs = {
|
|
1957
|
+
input: UpdateDateBetweenContentValidationRuleInput;
|
|
1958
|
+
};
|
|
1959
|
+
|
|
1960
|
+
|
|
1961
|
+
export type MutationUpdateDecimalCountContentValidationRuleArgs = {
|
|
1962
|
+
input: UpdateDecimalCountContentValidationRuleInput;
|
|
1963
|
+
};
|
|
1964
|
+
|
|
1965
|
+
|
|
1966
|
+
export type MutationUpdateExperienceComponentArgs = {
|
|
1967
|
+
input: Array<UpdateExperienceComponentInput>;
|
|
1968
|
+
};
|
|
1969
|
+
|
|
1970
|
+
|
|
1971
|
+
export type MutationUpdateGridArgs = {
|
|
1972
|
+
input: Array<UpdateGridInput>;
|
|
1973
|
+
};
|
|
1974
|
+
|
|
1975
|
+
|
|
1976
|
+
export type MutationUpdateGridDefinitionArgs = {
|
|
1977
|
+
input: Array<UpdateGridDefinitionInput>;
|
|
1978
|
+
};
|
|
1979
|
+
|
|
1980
|
+
|
|
1981
|
+
export type MutationUpdateGridPlacementArgs = {
|
|
1982
|
+
input: Array<UpdateGridPlacementInput>;
|
|
1983
|
+
};
|
|
1984
|
+
|
|
1985
|
+
|
|
1986
|
+
export type MutationUpdateNumberBetweenContentValidationRuleArgs = {
|
|
1987
|
+
input: UpdateNumberBetweenContentValidationRuleInput;
|
|
1988
|
+
};
|
|
1989
|
+
|
|
1990
|
+
|
|
1991
|
+
export type MutationUpdateOrganizationArgs = {
|
|
1992
|
+
input: Array<UpdateOrganizationInput>;
|
|
1993
|
+
};
|
|
1994
|
+
|
|
1995
|
+
|
|
1996
|
+
export type MutationUpdatePathPartArgs = {
|
|
1997
|
+
input: Array<UpdatePathPartInput>;
|
|
1998
|
+
};
|
|
1999
|
+
|
|
2000
|
+
|
|
2001
|
+
export type MutationUpdatePathPartFromPathArgs = {
|
|
2002
|
+
input: Array<UpdatePathPartByPathInput>;
|
|
2003
|
+
};
|
|
2004
|
+
|
|
2005
|
+
|
|
2006
|
+
export type MutationUpdateRelatableContentTypesContentValidationRuleArgs = {
|
|
2007
|
+
input: UpdateRelatableContentTypesContentValidationRuleInput;
|
|
2008
|
+
};
|
|
2009
|
+
|
|
2010
|
+
|
|
2011
|
+
export type MutationUpdateStringFormatContentValidationRuleArgs = {
|
|
2012
|
+
input: UpdateStringFormatContentValidationRuleInput;
|
|
2013
|
+
};
|
|
2014
|
+
|
|
2015
|
+
|
|
2016
|
+
export type MutationUpdateTagArgs = {
|
|
2017
|
+
input: Array<UpdateTagInput>;
|
|
2018
|
+
};
|
|
2019
|
+
|
|
2020
|
+
|
|
2021
|
+
export type MutationUpdateThemeArgs = {
|
|
2022
|
+
input: Array<UpdateThemeInput>;
|
|
2023
|
+
};
|
|
2024
|
+
|
|
2025
|
+
|
|
2026
|
+
export type MutationUpdateValueTypeContentValidationRuleArgs = {
|
|
2027
|
+
input: UpdateValueTypeContentValidationRuleInput;
|
|
2028
|
+
};
|
|
2029
|
+
|
|
2030
|
+
export type Name = {
|
|
2031
|
+
__typename?: 'Name';
|
|
2032
|
+
first: Scalars['String']['output'];
|
|
2033
|
+
last: Scalars['String']['output'];
|
|
2034
|
+
};
|
|
2035
|
+
|
|
2036
|
+
export type NumberBetweenContentValidationRuleSettings = {
|
|
2037
|
+
__typename?: 'NumberBetweenContentValidationRuleSettings';
|
|
2038
|
+
max: Scalars['Int']['output'];
|
|
2039
|
+
min: Scalars['Int']['output'];
|
|
2040
|
+
};
|
|
2041
|
+
|
|
2042
|
+
export type NumberBetweenContentValidationRuleSettingsInput = {
|
|
2043
|
+
max: Scalars['Int']['input'];
|
|
2044
|
+
min: Scalars['Int']['input'];
|
|
2045
|
+
};
|
|
2046
|
+
|
|
2047
|
+
/** The options to order a list result. */
|
|
2048
|
+
export type OrderOptionsInput = {
|
|
2049
|
+
/** The direction to order by. */
|
|
2050
|
+
direction?: InputMaybe<SortingDirection>;
|
|
2051
|
+
/** The key of the field to order by. This must be the name of a property that is a Primitive. Case sensitive. */
|
|
2052
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
|
2053
|
+
};
|
|
2054
|
+
|
|
2055
|
+
export type Organization = {
|
|
2056
|
+
__typename?: 'Organization';
|
|
2057
|
+
createdAt: Scalars['DateTime']['output'];
|
|
2058
|
+
logo?: Maybe<Asset>;
|
|
2059
|
+
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
2060
|
+
name: Scalars['String']['output'];
|
|
2061
|
+
prn: Scalars['PRN']['output'];
|
|
2062
|
+
roles: Array<Role>;
|
|
2063
|
+
seedStatus: SeedStatus;
|
|
2064
|
+
slug: Scalars['String']['output'];
|
|
2065
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
2066
|
+
};
|
|
2067
|
+
|
|
2068
|
+
/** The PageInfo holds all information about the pagination currently being performed. */
|
|
2069
|
+
export type PageInfo = {
|
|
2070
|
+
__typename?: 'PageInfo';
|
|
2071
|
+
/** Null if there are no results. */
|
|
2072
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
2073
|
+
/** Whether there is a next page to be retrieved. */
|
|
2074
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
2075
|
+
/** Wether there is a previous page to be retrieved. */
|
|
2076
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
2077
|
+
/** Null if there are no results. */
|
|
2078
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
2079
|
+
};
|
|
2080
|
+
|
|
2081
|
+
export type PaginationOptionsInput = {
|
|
2082
|
+
/** The cursor after which to get records. */
|
|
2083
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
2084
|
+
/** The cursor before which to get records. */
|
|
2085
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
2086
|
+
/** The amount of records to get. Works with `after`. */
|
|
2087
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2088
|
+
/** The amount of records to get. Works with `before` */
|
|
2089
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
2090
|
+
};
|
|
2091
|
+
|
|
2092
|
+
export type PathPart = {
|
|
2093
|
+
__typename?: 'PathPart';
|
|
2094
|
+
/** The amount of direct children. */
|
|
2095
|
+
amountOfChildren: Scalars['Int']['output'];
|
|
2096
|
+
/** The amount of direct children that have Content Experiences. */
|
|
2097
|
+
amountOfChildrenWithContentExperiences: Scalars['Int']['output'];
|
|
2098
|
+
/** The total amount of descendants. */
|
|
2099
|
+
amountOfDescendants: Scalars['Int']['output'];
|
|
2100
|
+
/** The amount of descendant Path Parts that have a Content Experience. */
|
|
2101
|
+
amountOfDescendantsWithContentExperiences: Scalars['Int']['output'];
|
|
2102
|
+
/** All Path Parts in a "family" (ancestors and decendents) are connected to the same Channel. This does not make sense semantically, but makes it much easier to access the Channel from any Path Part. */
|
|
2103
|
+
channel: Channel;
|
|
2104
|
+
children: Array<PathPart>;
|
|
2105
|
+
contentExperience?: Maybe<ContentExperience>;
|
|
2106
|
+
createdAt: Scalars['DateTime']['output'];
|
|
2107
|
+
/** Whether this Path Part has a Content Experience. */
|
|
2108
|
+
hasContentExperience: Scalars['Boolean']['output'];
|
|
2109
|
+
/** Not yet implemented! */
|
|
2110
|
+
organization?: Maybe<Organization>;
|
|
2111
|
+
/** The parent Path Part. Only null when this is the root PathPart. */
|
|
2112
|
+
parent?: Maybe<PathPart>;
|
|
2113
|
+
/** The ID of the parent Path Part. Only null when this is the root PathPart. */
|
|
2114
|
+
parentId?: Maybe<Scalars['String']['output']>;
|
|
2115
|
+
/** The full path of this Path Part, starting from the root. */
|
|
2116
|
+
path: Scalars['String']['output'];
|
|
2117
|
+
prn: Scalars['PRN']['output'];
|
|
2118
|
+
/** The slug of the Path Part. This is unique among siblings. */
|
|
2119
|
+
slug: Scalars['String']['output'];
|
|
2120
|
+
stage: Stage;
|
|
2121
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
2122
|
+
};
|
|
2123
|
+
|
|
2124
|
+
|
|
2125
|
+
export type PathPartChildrenArgs = {
|
|
2126
|
+
where?: InputMaybe<Array<PathPartsFilterInput>>;
|
|
2127
|
+
};
|
|
2128
|
+
|
|
2129
|
+
export type PathPartEdge = {
|
|
2130
|
+
__typename?: 'PathPartEdge';
|
|
2131
|
+
cursor: Scalars['String']['output'];
|
|
2132
|
+
node: PathPart;
|
|
2133
|
+
};
|
|
2134
|
+
|
|
2135
|
+
export type PathPartsConnection = {
|
|
2136
|
+
__typename?: 'PathPartsConnection';
|
|
2137
|
+
edges: Array<PathPartEdge>;
|
|
2138
|
+
pageInfo: PageInfo;
|
|
2139
|
+
totalCount: Scalars['Int']['output'];
|
|
2140
|
+
};
|
|
2141
|
+
|
|
2142
|
+
/** The filter input type for 'PathParts'. Objects/maps are treated as AND, while arrays are treated as OR. */
|
|
2143
|
+
export type PathPartsFilterInput = {
|
|
2144
|
+
_not?: InputMaybe<Array<PathPartsFilterInput>>;
|
|
2145
|
+
amountOfChildren?: InputMaybe<Array<IntFilter>>;
|
|
2146
|
+
amountOfChildrenWithContentExperiences?: InputMaybe<Array<IntFilter>>;
|
|
2147
|
+
amountOfDescendants?: InputMaybe<Array<IntFilter>>;
|
|
2148
|
+
amountOfDescendantsWithContentExperiences?: InputMaybe<Array<IntFilter>>;
|
|
2149
|
+
createdAt?: InputMaybe<Array<DateFilter>>;
|
|
2150
|
+
hasContentExperience?: InputMaybe<Array<BooleanFilter>>;
|
|
2151
|
+
parentId?: InputMaybe<Array<StringFilter>>;
|
|
2152
|
+
path?: InputMaybe<Array<StringFilter>>;
|
|
2153
|
+
prn?: InputMaybe<Array<PrnFilter>>;
|
|
2154
|
+
slug?: InputMaybe<Array<StringFilter>>;
|
|
2155
|
+
updatedAt?: InputMaybe<Array<DateFilter>>;
|
|
2156
|
+
};
|
|
2157
|
+
|
|
2158
|
+
export type PatternFlag = {
|
|
2159
|
+
enabled?: Scalars['Boolean']['input'];
|
|
2160
|
+
name: Scalars['String']['input'];
|
|
2161
|
+
};
|
|
2162
|
+
|
|
2163
|
+
export type PrnFilter = {
|
|
2164
|
+
/** Equals */
|
|
2165
|
+
_eq?: InputMaybe<Scalars['PRN']['input']>;
|
|
2166
|
+
/** In list */
|
|
2167
|
+
_in?: InputMaybe<Array<Scalars['PRN']['input']>>;
|
|
2168
|
+
/** Is not null */
|
|
2169
|
+
_is_not_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2170
|
+
/** Is null */
|
|
2171
|
+
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2172
|
+
/** Not equals */
|
|
2173
|
+
_neq?: InputMaybe<Scalars['PRN']['input']>;
|
|
2174
|
+
/** Not in list */
|
|
2175
|
+
_nin?: InputMaybe<Array<Scalars['PRN']['input']>>;
|
|
2176
|
+
};
|
|
2177
|
+
|
|
2178
|
+
export type ProcessedAssetOptionsInput = {
|
|
2179
|
+
/** Device pixel ratio (e.g., 2 for retina, must be > 0) */
|
|
2180
|
+
dpr?: InputMaybe<Scalars['Float']['input']>;
|
|
2181
|
+
/** Output format (png, jpg, jpeg, webp, avif, gif, ico, bmp, tiff) */
|
|
2182
|
+
format?: InputMaybe<Scalars['String']['input']>;
|
|
2183
|
+
height?: InputMaybe<Scalars['Int']['input']>;
|
|
2184
|
+
/** Quality (1-100) */
|
|
2185
|
+
quality?: InputMaybe<Scalars['Int']['input']>;
|
|
2186
|
+
/** Resizing type: fit, fill, fill-down, force, auto */
|
|
2187
|
+
resizingType?: InputMaybe<Scalars['String']['input']>;
|
|
2188
|
+
width?: InputMaybe<Scalars['Int']['input']>;
|
|
2189
|
+
};
|
|
2190
|
+
|
|
2191
|
+
export type Query = {
|
|
2192
|
+
__typename?: 'Query';
|
|
2193
|
+
/** Finds one or many ApiTokens by PRN. Throws NotFoundException when no ApiToken could be found. */
|
|
2194
|
+
apiToken: Array<ApiToken>;
|
|
2195
|
+
/** Orders all ApiTokens. */
|
|
2196
|
+
apiTokens: Array<ApiToken>;
|
|
2197
|
+
/** Finds one or many Blueprints by PRN. Throws NotFoundException when no Blueprint could be found. */
|
|
2198
|
+
blueprint: Array<Blueprint>;
|
|
2199
|
+
/** Orders and paginates all Blueprints. */
|
|
2200
|
+
blueprints: BlueprintsConnection;
|
|
2201
|
+
/** Finds one or many BuildingBlocks by PRN. Throws NotFoundException when no BuildingBlock could be found. */
|
|
2202
|
+
buildingBlock: Array<BuildingBlock>;
|
|
2203
|
+
/** Finds one or many BuildingBlockFields by PRN. Throws NotFoundException when no BuildingBlockField could be found. */
|
|
2204
|
+
buildingBlockField: Array<BuildingBlockField>;
|
|
2205
|
+
/** Finds one or many BuildingBlockFieldFulfillments by PRN. Throws NotFoundException when no BuildingBlockFieldFulfillment could be found. */
|
|
2206
|
+
buildingBlockFieldFulfillment: Array<BuildingBlockFieldFulfillment>;
|
|
2207
|
+
/** Orders and paginates all BuildingBlockFieldFulfillments. */
|
|
2208
|
+
buildingBlockFieldFulfillments: BuildingBlockFieldFulfillmentsConnection;
|
|
2209
|
+
/** Orders and paginates all BuildingBlockFields. */
|
|
2210
|
+
buildingBlockFields: BuildingBlockFieldsConnection;
|
|
2211
|
+
casRegexSuggestions: Array<CasRegexSuggestion>;
|
|
2212
|
+
casStringMatches: Array<CasDatabaseMatch>;
|
|
2213
|
+
/** Finds one or many Channels by PRN. Throws NotFoundException when no Channel could be found. */
|
|
2214
|
+
channel: Array<Channel>;
|
|
2215
|
+
/** Orders and paginates all Channels. */
|
|
2216
|
+
channels: ChannelsConnection;
|
|
2217
|
+
/** Finds one or many ContentExperiences by PRN. Throws NotFoundException when no ContentExperience could be found. */
|
|
2218
|
+
contentExperience: Array<ContentExperience>;
|
|
2219
|
+
/** Find a Content Experience by its path. */
|
|
2220
|
+
contentExperienceByPath: Array<ContentExperience>;
|
|
2221
|
+
/** Orders and paginates all ContentExperiences. */
|
|
2222
|
+
contentExperiences: ContentExperiencesConnection;
|
|
2223
|
+
/** Finds one or many ContentFields by PRN. Throws NotFoundException when no ContentField could be found. */
|
|
2224
|
+
contentField: Array<ContentField>;
|
|
2225
|
+
/** Orders and paginates all ContentFields. */
|
|
2226
|
+
contentFields: ContentFieldsConnection;
|
|
2227
|
+
/** Finds one or many ContentItems by PRN. Throws NotFoundException when no ContentItem could be found. */
|
|
2228
|
+
contentItem: Array<ContentItem>;
|
|
2229
|
+
/** Orders and paginates all ContentItems. */
|
|
2230
|
+
contentItems: ContentItemsConnection;
|
|
2231
|
+
/** Finds one or many ContentTypes by PRN. Throws NotFoundException when no ContentType could be found. */
|
|
2232
|
+
contentType: Array<ContentType>;
|
|
2233
|
+
/** Orders and paginates all ContentTypes. */
|
|
2234
|
+
contentTypes: ContentTypesConnection;
|
|
2235
|
+
/** Finds one or many ContentValues by PRN. Throws NotFoundException when no ContentValue could be found. */
|
|
2236
|
+
contentValue: Array<ContentValue>;
|
|
2237
|
+
/** Orders and paginates all ContentValues. */
|
|
2238
|
+
contentValues: ContentValuesConnection;
|
|
2239
|
+
currentSubject: Subject;
|
|
2240
|
+
/** Finds one or many ExperienceComponents by PRN. Throws NotFoundException when no ExperienceComponent could be found. */
|
|
2241
|
+
experienceComponent: Array<ExperienceComponent>;
|
|
2242
|
+
/** Orders and paginates all ExperienceComponents. */
|
|
2243
|
+
experienceComponents: ExperienceComponentsConnection;
|
|
2244
|
+
/** Finds one or many Grids by PRN. Throws NotFoundException when no Grid could be found. */
|
|
2245
|
+
grid: Array<Grid>;
|
|
2246
|
+
/** Finds one or many GridDefinitions by PRN. Throws NotFoundException when no GridDefinition could be found. */
|
|
2247
|
+
gridDefinition: Array<GridDefinition>;
|
|
2248
|
+
/** Finds one or many GridPlacements by PRN. Throws NotFoundException when no GridPlacement could be found. */
|
|
2249
|
+
gridPlacement: Array<GridPlacement>;
|
|
2250
|
+
/** Orders and paginates all GridPlacements. */
|
|
2251
|
+
gridPlacements: GridPlacementsConnection;
|
|
2252
|
+
/** Finds one or many Invitations by PRN. Throws NotFoundException when no Invitation could be found. */
|
|
2253
|
+
invitation: Array<Invitation>;
|
|
2254
|
+
/** Finds all Invitations for the current Subject (e.g. the logged in user) */
|
|
2255
|
+
invitationsForCurrentSubject: Array<Invitation>;
|
|
2256
|
+
/** Finds all Invitations for the given Organization */
|
|
2257
|
+
invitationsForOrganization: Array<Invitation>;
|
|
2258
|
+
/** Finds one or many Organizations by PRN. Throws NotFoundException when no Organization could be found. */
|
|
2259
|
+
organization: Array<Organization>;
|
|
2260
|
+
/** Finds one or many Path Parts by PRN. Throws NotFoundException when no Path Part could be found. */
|
|
2261
|
+
pathPart: Array<PathPart>;
|
|
2262
|
+
/** Find a Path Part by its path. */
|
|
2263
|
+
pathPartByPath: Array<PathPart>;
|
|
2264
|
+
/** Orders and paginates all Path Parts. */
|
|
2265
|
+
pathParts: PathPartsConnection;
|
|
2266
|
+
plateMaintainers: Array<Subject>;
|
|
2267
|
+
/** Finds all RoleAssignments for the current Subject (e.g. the logged in user) */
|
|
2268
|
+
roleAssignmentsForCurrentSubject: Array<RoleAssignment>;
|
|
2269
|
+
/** Finds all RoleAssignments for the given Organization */
|
|
2270
|
+
roleAssignmentsForOrganization: Array<RoleAssignment>;
|
|
2271
|
+
/** Finds one or many Tags by PRN. Throws NotFoundException when no Tag could be found. */
|
|
2272
|
+
tag: Array<Tag>;
|
|
2273
|
+
/** Orders and paginates all Tags. */
|
|
2274
|
+
tags: TagsConnection;
|
|
2275
|
+
/** Finds one or many Themes by PRN. Throws NotFoundException when no Theme could be found. */
|
|
2276
|
+
theme: Array<Theme>;
|
|
2277
|
+
/** Orders and paginates all Themes. */
|
|
2278
|
+
themes: ThemesConnection;
|
|
2279
|
+
};
|
|
2280
|
+
|
|
2281
|
+
|
|
2282
|
+
export type QueryApiTokenArgs = {
|
|
2283
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
2284
|
+
};
|
|
2285
|
+
|
|
2286
|
+
|
|
2287
|
+
export type QueryApiTokensArgs = {
|
|
2288
|
+
orderBy?: InputMaybe<OrderOptionsInput>;
|
|
2289
|
+
};
|
|
2290
|
+
|
|
2291
|
+
|
|
2292
|
+
export type QueryBlueprintArgs = {
|
|
2293
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
2294
|
+
};
|
|
2295
|
+
|
|
2296
|
+
|
|
2297
|
+
export type QueryBlueprintsArgs = {
|
|
2298
|
+
orderBy?: InputMaybe<OrderOptionsInput>;
|
|
2299
|
+
paginate: PaginationOptionsInput;
|
|
2300
|
+
where?: InputMaybe<Array<BlueprintsFilterInput>>;
|
|
2301
|
+
};
|
|
2302
|
+
|
|
2303
|
+
|
|
2304
|
+
export type QueryBuildingBlockArgs = {
|
|
2305
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
2306
|
+
};
|
|
2307
|
+
|
|
2308
|
+
|
|
2309
|
+
export type QueryBuildingBlockFieldArgs = {
|
|
2310
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
2311
|
+
};
|
|
2312
|
+
|
|
2313
|
+
|
|
2314
|
+
export type QueryBuildingBlockFieldFulfillmentArgs = {
|
|
2315
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
2316
|
+
};
|
|
2317
|
+
|
|
2318
|
+
|
|
2319
|
+
export type QueryBuildingBlockFieldFulfillmentsArgs = {
|
|
2320
|
+
orderBy?: InputMaybe<OrderOptionsInput>;
|
|
2321
|
+
paginate: PaginationOptionsInput;
|
|
2322
|
+
where?: InputMaybe<Array<BuildingBlockFieldFulfillmentsFilterInput>>;
|
|
2323
|
+
};
|
|
2324
|
+
|
|
2325
|
+
|
|
2326
|
+
export type QueryBuildingBlockFieldsArgs = {
|
|
2327
|
+
orderBy?: InputMaybe<OrderOptionsInput>;
|
|
2328
|
+
paginate: PaginationOptionsInput;
|
|
2329
|
+
where?: InputMaybe<Array<BuildingBlockFieldsFilterInput>>;
|
|
2330
|
+
};
|
|
2331
|
+
|
|
2332
|
+
|
|
2333
|
+
export type QueryCasRegexSuggestionsArgs = {
|
|
2334
|
+
inputText: Scalars['String']['input'];
|
|
2335
|
+
limit: Scalars['Int']['input'];
|
|
2336
|
+
regexConfig?: InputMaybe<RegexExtractionConfig>;
|
|
2337
|
+
};
|
|
2338
|
+
|
|
2339
|
+
|
|
2340
|
+
export type QueryCasStringMatchesArgs = {
|
|
2341
|
+
inputText: Scalars['String']['input'];
|
|
2342
|
+
limit: Scalars['Int']['input'];
|
|
2343
|
+
matchConfig?: InputMaybe<DatabaseMatchConfig>;
|
|
2344
|
+
};
|
|
2345
|
+
|
|
2346
|
+
|
|
2347
|
+
export type QueryChannelArgs = {
|
|
2348
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
2349
|
+
};
|
|
2350
|
+
|
|
2351
|
+
|
|
2352
|
+
export type QueryChannelsArgs = {
|
|
2353
|
+
orderBy?: InputMaybe<OrderOptionsInput>;
|
|
2354
|
+
paginate: PaginationOptionsInput;
|
|
2355
|
+
where?: InputMaybe<Array<ChannelsFilterInput>>;
|
|
2356
|
+
};
|
|
2357
|
+
|
|
2358
|
+
|
|
2359
|
+
export type QueryContentExperienceArgs = {
|
|
2360
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
2361
|
+
};
|
|
2362
|
+
|
|
2363
|
+
|
|
2364
|
+
export type QueryContentExperienceByPathArgs = {
|
|
2365
|
+
input: Array<FindPathPartByPathInput>;
|
|
2366
|
+
};
|
|
2367
|
+
|
|
2368
|
+
|
|
2369
|
+
export type QueryContentExperiencesArgs = {
|
|
2370
|
+
orderBy?: InputMaybe<OrderOptionsInput>;
|
|
2371
|
+
paginate: PaginationOptionsInput;
|
|
2372
|
+
where?: InputMaybe<Array<ContentExperiencesFilterInput>>;
|
|
2373
|
+
};
|
|
2374
|
+
|
|
2375
|
+
|
|
2376
|
+
export type QueryContentFieldArgs = {
|
|
2377
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
2378
|
+
};
|
|
2379
|
+
|
|
2380
|
+
|
|
2381
|
+
export type QueryContentFieldsArgs = {
|
|
2382
|
+
orderBy?: InputMaybe<OrderOptionsInput>;
|
|
2383
|
+
paginate: PaginationOptionsInput;
|
|
2384
|
+
where?: InputMaybe<Array<ContentFieldsFilterInput>>;
|
|
2385
|
+
};
|
|
2386
|
+
|
|
2387
|
+
|
|
2388
|
+
export type QueryContentItemArgs = {
|
|
2389
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
2390
|
+
};
|
|
2391
|
+
|
|
2392
|
+
|
|
2393
|
+
export type QueryContentItemsArgs = {
|
|
2394
|
+
orderBy?: InputMaybe<OrderOptionsInput>;
|
|
2395
|
+
paginate: PaginationOptionsInput;
|
|
2396
|
+
where?: InputMaybe<Array<ContentItemsFilterInput>>;
|
|
2397
|
+
};
|
|
2398
|
+
|
|
2399
|
+
|
|
2400
|
+
export type QueryContentTypeArgs = {
|
|
2401
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
2402
|
+
};
|
|
2403
|
+
|
|
2404
|
+
|
|
2405
|
+
export type QueryContentTypesArgs = {
|
|
2406
|
+
orderBy?: InputMaybe<OrderOptionsInput>;
|
|
2407
|
+
paginate: PaginationOptionsInput;
|
|
2408
|
+
where?: InputMaybe<Array<ContentTypesFilterInput>>;
|
|
2409
|
+
};
|
|
2410
|
+
|
|
2411
|
+
|
|
2412
|
+
export type QueryContentValueArgs = {
|
|
2413
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
2414
|
+
};
|
|
2415
|
+
|
|
2416
|
+
|
|
2417
|
+
export type QueryContentValuesArgs = {
|
|
2418
|
+
orderBy?: InputMaybe<OrderOptionsInput>;
|
|
2419
|
+
paginate: PaginationOptionsInput;
|
|
2420
|
+
where?: InputMaybe<Array<ContentValuesFilterInput>>;
|
|
2421
|
+
};
|
|
2422
|
+
|
|
2423
|
+
|
|
2424
|
+
export type QueryExperienceComponentArgs = {
|
|
2425
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
2426
|
+
};
|
|
2427
|
+
|
|
2428
|
+
|
|
2429
|
+
export type QueryExperienceComponentsArgs = {
|
|
2430
|
+
orderBy?: InputMaybe<OrderOptionsInput>;
|
|
2431
|
+
paginate: PaginationOptionsInput;
|
|
2432
|
+
where?: InputMaybe<Array<ExperienceComponentsFilterInput>>;
|
|
2433
|
+
};
|
|
2434
|
+
|
|
2435
|
+
|
|
2436
|
+
export type QueryGridArgs = {
|
|
2437
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
2438
|
+
};
|
|
2439
|
+
|
|
2440
|
+
|
|
2441
|
+
export type QueryGridDefinitionArgs = {
|
|
2442
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
2443
|
+
};
|
|
2444
|
+
|
|
2445
|
+
|
|
2446
|
+
export type QueryGridPlacementArgs = {
|
|
2447
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
2448
|
+
};
|
|
2449
|
+
|
|
2450
|
+
|
|
2451
|
+
export type QueryGridPlacementsArgs = {
|
|
2452
|
+
orderBy?: InputMaybe<OrderOptionsInput>;
|
|
2453
|
+
paginate: PaginationOptionsInput;
|
|
2454
|
+
where?: InputMaybe<Array<GridPlacementsFilterInput>>;
|
|
2455
|
+
};
|
|
2456
|
+
|
|
2457
|
+
|
|
2458
|
+
export type QueryInvitationArgs = {
|
|
2459
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
2460
|
+
};
|
|
2461
|
+
|
|
2462
|
+
|
|
2463
|
+
export type QueryOrganizationArgs = {
|
|
2464
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
2465
|
+
};
|
|
2466
|
+
|
|
2467
|
+
|
|
2468
|
+
export type QueryPathPartArgs = {
|
|
2469
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
2470
|
+
};
|
|
2471
|
+
|
|
2472
|
+
|
|
2473
|
+
export type QueryPathPartByPathArgs = {
|
|
2474
|
+
input: Array<FindPathPartByPathInput>;
|
|
2475
|
+
};
|
|
2476
|
+
|
|
2477
|
+
|
|
2478
|
+
export type QueryPathPartsArgs = {
|
|
2479
|
+
orderBy?: InputMaybe<OrderOptionsInput>;
|
|
2480
|
+
paginate: PaginationOptionsInput;
|
|
2481
|
+
where?: InputMaybe<Array<PathPartsFilterInput>>;
|
|
2482
|
+
};
|
|
2483
|
+
|
|
2484
|
+
|
|
2485
|
+
export type QueryTagArgs = {
|
|
2486
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
2487
|
+
};
|
|
2488
|
+
|
|
2489
|
+
|
|
2490
|
+
export type QueryTagsArgs = {
|
|
2491
|
+
orderBy?: InputMaybe<OrderOptionsInput>;
|
|
2492
|
+
paginate: PaginationOptionsInput;
|
|
2493
|
+
where?: InputMaybe<Array<TagsFilterInput>>;
|
|
2494
|
+
};
|
|
2495
|
+
|
|
2496
|
+
|
|
2497
|
+
export type QueryThemeArgs = {
|
|
2498
|
+
prn: Array<Scalars['PRN']['input']>;
|
|
2499
|
+
};
|
|
2500
|
+
|
|
2501
|
+
|
|
2502
|
+
export type QueryThemesArgs = {
|
|
2503
|
+
orderBy?: InputMaybe<OrderOptionsInput>;
|
|
2504
|
+
paginate: PaginationOptionsInput;
|
|
2505
|
+
where?: InputMaybe<Array<ThemesFilterInput>>;
|
|
2506
|
+
};
|
|
2507
|
+
|
|
2508
|
+
export type RegexExtractionConfig = {
|
|
2509
|
+
patterns?: InputMaybe<Array<PatternFlag>>;
|
|
2510
|
+
threshold?: InputMaybe<Scalars['Float']['input']>;
|
|
2511
|
+
};
|
|
2512
|
+
|
|
2513
|
+
export type RelatableContentTypesContentValidationRuleSettings = {
|
|
2514
|
+
__typename?: 'RelatableContentTypesContentValidationRuleSettings';
|
|
2515
|
+
allowedContentTypes: Array<Scalars['PRN']['output']>;
|
|
2516
|
+
};
|
|
2517
|
+
|
|
2518
|
+
export type RelatableContentTypesContentValidationRuleSettingsInput = {
|
|
2519
|
+
allowedContentTypes: Array<Scalars['PRN']['input']>;
|
|
2520
|
+
};
|
|
2521
|
+
|
|
2522
|
+
export type RemoveBlueprintInput = {
|
|
2523
|
+
prn: Scalars['PRN']['input'];
|
|
2524
|
+
/** Required when removing a fixed Blueprint. */
|
|
2525
|
+
removeBlueprintInstanceMode?: InputMaybe<RemoveBlueprintInstanceMode>;
|
|
2526
|
+
};
|
|
2527
|
+
|
|
2528
|
+
export enum RemoveBlueprintInstanceMode {
|
|
2529
|
+
Disconnect = 'DISCONNECT',
|
|
2530
|
+
Remove = 'REMOVE'
|
|
2531
|
+
}
|
|
2532
|
+
|
|
2533
|
+
export type RemoveBlueprintResponse = {
|
|
2534
|
+
__typename?: 'RemoveBlueprintResponse';
|
|
2535
|
+
channel: Channel;
|
|
2536
|
+
createdAt: Scalars['DateTime']['output'];
|
|
2537
|
+
/** The Experience Component which defines this Blueprint. */
|
|
2538
|
+
definedBy: ExperienceComponent;
|
|
2539
|
+
isFixed: Scalars['Boolean']['output'];
|
|
2540
|
+
name: Scalars['String']['output'];
|
|
2541
|
+
/** Not yet implemented! */
|
|
2542
|
+
organization?: Maybe<Organization>;
|
|
2543
|
+
prn: Scalars['PRN']['output'];
|
|
2544
|
+
stage: Stage;
|
|
2545
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
2546
|
+
};
|
|
2547
|
+
|
|
2548
|
+
export type RemoveBuildingBlockResponse = {
|
|
2549
|
+
__typename?: 'RemoveBuildingBlockResponse';
|
|
2550
|
+
buildingBlockFields: Array<BuildingBlockField>;
|
|
2551
|
+
createdAt: Scalars['DateTime']['output'];
|
|
2552
|
+
experienceComponents: Array<ExperienceComponent>;
|
|
2553
|
+
gridDefinition?: Maybe<GridDefinition>;
|
|
2554
|
+
next?: Maybe<BuildingBlock>;
|
|
2555
|
+
/** Not yet implemented! */
|
|
2556
|
+
organization?: Maybe<Organization>;
|
|
2557
|
+
previous?: Maybe<BuildingBlock>;
|
|
2558
|
+
prn: Scalars['PRN']['output'];
|
|
2559
|
+
slug: Scalars['String']['output'];
|
|
2560
|
+
theme: Theme;
|
|
2561
|
+
title: Scalars['String']['output'];
|
|
2562
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
2563
|
+
};
|
|
2564
|
+
|
|
2565
|
+
export type RemoveContentExperienceResponse = {
|
|
2566
|
+
__typename?: 'RemoveContentExperienceResponse';
|
|
2567
|
+
createdAt: Scalars['DateTime']['output'];
|
|
2568
|
+
experienceComponent: ExperienceComponent;
|
|
2569
|
+
/** Not yet implemented! */
|
|
2570
|
+
organization?: Maybe<Organization>;
|
|
2571
|
+
pathPart: PathPart;
|
|
2572
|
+
prn: Scalars['PRN']['output'];
|
|
2573
|
+
/** The Content Values that use this Content Experience as an referenced value. Reverse relation of referencedContentExperiences. */
|
|
2574
|
+
referencedBySmartTextContentValues: Array<ContentValue>;
|
|
2575
|
+
slug: Scalars['String']['output'];
|
|
2576
|
+
stage: Stage;
|
|
2577
|
+
/** The ids of the tags this Content Experience are tagged with, including all ancestor tags. Should only be used for filtering. */
|
|
2578
|
+
tagIds: Array<Scalars['String']['output']>;
|
|
2579
|
+
/** The tags this Content Experience are tagged with. */
|
|
2580
|
+
tags: Array<Tag>;
|
|
2581
|
+
title: Scalars['String']['output'];
|
|
2582
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
2583
|
+
};
|
|
2584
|
+
|
|
2585
|
+
export type RemoveContentValueResponse = {
|
|
2586
|
+
__typename?: 'RemoveContentValueResponse';
|
|
2587
|
+
buildingBlockFieldFulfillments: Array<BuildingBlockFieldFulfillment>;
|
|
2588
|
+
contentField?: Maybe<ContentField>;
|
|
2589
|
+
contentItem?: Maybe<ContentItem>;
|
|
2590
|
+
createdAt: Scalars['DateTime']['output'];
|
|
2591
|
+
/** Whether the ContentValue is structured in a Content Item. */
|
|
2592
|
+
hasContentItem: Scalars['Boolean']['output'];
|
|
2593
|
+
/** The CAST tree for the smart text with all Content Values interpolated. */
|
|
2594
|
+
interpolatedSmartText?: Maybe<Scalars['CAST']['output']>;
|
|
2595
|
+
/** Whether the ContentValue is reusable. Defaults to false. */
|
|
2596
|
+
isReusable: Scalars['Boolean']['output'];
|
|
2597
|
+
linkedContentType?: Maybe<ContentType>;
|
|
2598
|
+
linkedGridPlacement?: Maybe<GridPlacement>;
|
|
2599
|
+
linkedPathPart?: Maybe<PathPart>;
|
|
2600
|
+
linkedTag?: Maybe<Tag>;
|
|
2601
|
+
next?: Maybe<ContentValue>;
|
|
2602
|
+
/** Not yet implemented! */
|
|
2603
|
+
organization?: Maybe<Organization>;
|
|
2604
|
+
/** The plain text representation of the smart text. This is used internally. If you really need the plain text representation of CAST, use the castToPlainText utility function. */
|
|
2605
|
+
plainText?: Maybe<Scalars['String']['output']>;
|
|
2606
|
+
previous?: Maybe<ContentValue>;
|
|
2607
|
+
/** !!!Warning!!! The filter generated for this field is a hardcoded StringFilter. This means all primitiveValues will be converted to and compared as a string! */
|
|
2608
|
+
primitiveValue?: Maybe<Scalars['PrimitiveValue']['output']>;
|
|
2609
|
+
prn: Scalars['PRN']['output'];
|
|
2610
|
+
/** The Content Values that use this Content Value as an referenced value. Reverse relation of referencedContentValues. */
|
|
2611
|
+
referencedBy: Array<ContentValue>;
|
|
2612
|
+
/** The Content Experiences that are referenced in internal links in the smart text. This is calculated based on the CAST tree in the smart text and cannot be updated manually. */
|
|
2613
|
+
referencedContentExperiences: Array<ContentExperience>;
|
|
2614
|
+
/** The Content Values that are referenced in the smart text. This is calculated based on the CAST tree in the smart text and cannot be updated manually. */
|
|
2615
|
+
referencedContentValues: Array<ContentValue>;
|
|
2616
|
+
/** The Grid Placements that are referenced in internal links in the smart text. This is calculated based on the CAST tree in the smart text and cannot be updated manually. */
|
|
2617
|
+
referencedGridPlacements: Array<GridPlacement>;
|
|
2618
|
+
relatedContentItem?: Maybe<ContentItem>;
|
|
2619
|
+
/** The CAST tree for the smart text. */
|
|
2620
|
+
smartText?: Maybe<Scalars['CAST']['output']>;
|
|
2621
|
+
stage: Stage;
|
|
2622
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
2623
|
+
};
|
|
2624
|
+
|
|
2625
|
+
export type RemoveExperienceComponentResponse = {
|
|
2626
|
+
__typename?: 'RemoveExperienceComponentResponse';
|
|
2627
|
+
/** The Blueprint which this Experience Component defines. This is different from the `blueprintedBy` field, which is the Experience Component which defines part of a Blueprint to create this Experience Component from. */
|
|
2628
|
+
blueprint?: Maybe<Blueprint>;
|
|
2629
|
+
/** The Experience Component in a fixed Blueprint that this Experience Component is created from.Null if not created from a Blueprint, or when created from a free Blueprint. */
|
|
2630
|
+
blueprintedBy?: Maybe<ExperienceComponent>;
|
|
2631
|
+
/** The Experience Components which this Blueprint definition defines. Null if this model is not a Blueprint definition. */
|
|
2632
|
+
blueprintedInstances?: Maybe<Array<ExperienceComponent>>;
|
|
2633
|
+
buildingBlock: BuildingBlock;
|
|
2634
|
+
buildingBlockFieldFulfillments: Array<BuildingBlockFieldFulfillment>;
|
|
2635
|
+
contentExperience?: Maybe<ContentExperience>;
|
|
2636
|
+
createdAt: Scalars['DateTime']['output'];
|
|
2637
|
+
grid?: Maybe<Grid>;
|
|
2638
|
+
/** The Grid Placements this Experience Component is placed in. */
|
|
2639
|
+
gridPlacements: Array<GridPlacement>;
|
|
2640
|
+
/** Whether the Experience Component is a draft. Drafts cannot be used in Grid Placements. */
|
|
2641
|
+
isDraft: Scalars['Boolean']['output'];
|
|
2642
|
+
isGlobal: Scalars['Boolean']['output'];
|
|
2643
|
+
/** The name of the Experience Component. Only applicable for global Experience Components. */
|
|
2644
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2645
|
+
/** Not yet implemented! */
|
|
2646
|
+
organization?: Maybe<Organization>;
|
|
2647
|
+
prn: Scalars['PRN']['output'];
|
|
2648
|
+
stage: Stage;
|
|
2649
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
2650
|
+
};
|
|
2651
|
+
|
|
2652
|
+
export type RemoveOrganizationResponse = {
|
|
2653
|
+
__typename?: 'RemoveOrganizationResponse';
|
|
2654
|
+
createdAt: Scalars['DateTime']['output'];
|
|
2655
|
+
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
2656
|
+
name: Scalars['String']['output'];
|
|
2657
|
+
prn: Scalars['PRN']['output'];
|
|
2658
|
+
roles: Array<Role>;
|
|
2659
|
+
seedStatus: SeedStatus;
|
|
2660
|
+
slug: Scalars['String']['output'];
|
|
2661
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
2662
|
+
};
|
|
2663
|
+
|
|
2664
|
+
export type Role = {
|
|
2665
|
+
__typename?: 'Role';
|
|
2666
|
+
createdAt: Scalars['DateTime']['output'];
|
|
2667
|
+
invitations: Array<Invitation>;
|
|
2668
|
+
name: DefaultRoleName;
|
|
2669
|
+
organization: Organization;
|
|
2670
|
+
prn: Scalars['PRN']['output'];
|
|
2671
|
+
roleAssignments: Array<RoleAssignment>;
|
|
2672
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
2673
|
+
};
|
|
2674
|
+
|
|
2675
|
+
export type RoleAssignment = {
|
|
2676
|
+
__typename?: 'RoleAssignment';
|
|
2677
|
+
createdAt: Scalars['DateTime']['output'];
|
|
2678
|
+
prn: Scalars['PRN']['output'];
|
|
2679
|
+
role: Role;
|
|
2680
|
+
subject: Subject;
|
|
2681
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
2682
|
+
};
|
|
2683
|
+
|
|
2684
|
+
export enum RuleType {
|
|
2685
|
+
AllowedValues = 'ALLOWED_VALUES',
|
|
2686
|
+
Count = 'COUNT',
|
|
2687
|
+
DateBetween = 'DATE_BETWEEN',
|
|
2688
|
+
DecimalCount = 'DECIMAL_COUNT',
|
|
2689
|
+
NumberBetween = 'NUMBER_BETWEEN',
|
|
2690
|
+
RelatableContentTypes = 'RELATABLE_CONTENT_TYPES',
|
|
2691
|
+
StringFormat = 'STRING_FORMAT',
|
|
2692
|
+
ValueType = 'VALUE_TYPE'
|
|
2693
|
+
}
|
|
2694
|
+
|
|
2695
|
+
export enum SeedStatus {
|
|
2696
|
+
Completed = 'COMPLETED',
|
|
2697
|
+
InProgress = 'IN_PROGRESS',
|
|
2698
|
+
NotStarted = 'NOT_STARTED'
|
|
2699
|
+
}
|
|
2700
|
+
|
|
2701
|
+
export enum SeedType {
|
|
2702
|
+
Hotel = 'HOTEL',
|
|
2703
|
+
Performance_500 = 'PERFORMANCE_500',
|
|
2704
|
+
Performance_1000 = 'PERFORMANCE_1000',
|
|
2705
|
+
Performance_2000 = 'PERFORMANCE_2000',
|
|
2706
|
+
Performance_5000 = 'PERFORMANCE_5000'
|
|
2707
|
+
}
|
|
2708
|
+
|
|
2709
|
+
export enum SortingDirection {
|
|
2710
|
+
Asc = 'ASC',
|
|
2711
|
+
Desc = 'DESC'
|
|
2712
|
+
}
|
|
2713
|
+
|
|
2714
|
+
export enum Stage {
|
|
2715
|
+
Development = 'DEVELOPMENT',
|
|
2716
|
+
Production = 'PRODUCTION'
|
|
2717
|
+
}
|
|
2718
|
+
|
|
2719
|
+
export type StringArrayFilter = {
|
|
2720
|
+
/** Contains */
|
|
2721
|
+
_contains?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2722
|
+
/** Equals (values match exactly) */
|
|
2723
|
+
_eq?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2724
|
+
/** Not equals (values do not match exactly) */
|
|
2725
|
+
_neq?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2726
|
+
/** Not contains */
|
|
2727
|
+
_not_contains?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2728
|
+
};
|
|
2729
|
+
|
|
2730
|
+
export type StringFilter = {
|
|
2731
|
+
/** Equals */
|
|
2732
|
+
_eq?: InputMaybe<Scalars['String']['input']>;
|
|
2733
|
+
/** Case-insensitive like (substring) */
|
|
2734
|
+
_ilike?: InputMaybe<Scalars['String']['input']>;
|
|
2735
|
+
/** In list */
|
|
2736
|
+
_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2737
|
+
/** Is not null */
|
|
2738
|
+
_is_not_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2739
|
+
/** Is null */
|
|
2740
|
+
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2741
|
+
/** Like (substring) */
|
|
2742
|
+
_like?: InputMaybe<Scalars['String']['input']>;
|
|
2743
|
+
/** Not equals */
|
|
2744
|
+
_neq?: InputMaybe<Scalars['String']['input']>;
|
|
2745
|
+
/** Not in list */
|
|
2746
|
+
_nin?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2747
|
+
};
|
|
2748
|
+
|
|
2749
|
+
export type StringFormatContentValidationRuleSettings = {
|
|
2750
|
+
__typename?: 'StringFormatContentValidationRuleSettings';
|
|
2751
|
+
allowedFormat: Scalars['String']['output'];
|
|
2752
|
+
};
|
|
2753
|
+
|
|
2754
|
+
export type StringFormatContentValidationRuleSettingsInput = {
|
|
2755
|
+
allowedFormat: Scalars['String']['input'];
|
|
2756
|
+
};
|
|
2757
|
+
|
|
2758
|
+
export type Subject = {
|
|
2759
|
+
__typename?: 'Subject';
|
|
2760
|
+
email: Scalars['String']['output'];
|
|
2761
|
+
id: Scalars['String']['output'];
|
|
2762
|
+
isPlateMaintainer: Scalars['Boolean']['output'];
|
|
2763
|
+
/** Can have values 'en' or 'nl'. */
|
|
2764
|
+
language: Scalars['String']['output'];
|
|
2765
|
+
name: Name;
|
|
2766
|
+
roleAssignments: Array<RoleAssignment>;
|
|
2767
|
+
};
|
|
2768
|
+
|
|
2769
|
+
export type Tag = {
|
|
2770
|
+
__typename?: 'Tag';
|
|
2771
|
+
/** The amount of direct children. */
|
|
2772
|
+
amountOfChildren: Scalars['Int']['output'];
|
|
2773
|
+
/** The amount of Content Experiences that are tagged with this Tag. */
|
|
2774
|
+
amountOfContentExperiences: Scalars['Int']['output'];
|
|
2775
|
+
/** The amount of Content Items that are tagged with this Tag. */
|
|
2776
|
+
amountOfContentItems: Scalars['Int']['output'];
|
|
2777
|
+
/** The child Tags of this Tag. */
|
|
2778
|
+
children: Array<Tag>;
|
|
2779
|
+
/** The color of the Tag. This is the color of the nearest ancestor that has a color, or if no ancestor has a color, the Tag's own color. */
|
|
2780
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
2781
|
+
/** The Content Experiences that are tagged with this Tag. */
|
|
2782
|
+
contentExperiences: Array<ContentExperience>;
|
|
2783
|
+
/** The Content Items that are tagged with this Tag. */
|
|
2784
|
+
contentItems: Array<ContentItem>;
|
|
2785
|
+
createdAt: Scalars['DateTime']['output'];
|
|
2786
|
+
/** Whether to force the visibility of the Tag on its descendants. */
|
|
2787
|
+
forceVisibilityOnDescendants: Scalars['Boolean']['output'];
|
|
2788
|
+
/** Whether the Tag has forced visibility from its ancestors. */
|
|
2789
|
+
hasForcedVisibility: Scalars['Boolean']['output'];
|
|
2790
|
+
/** The name of the Tag. */
|
|
2791
|
+
name: Scalars['String']['output'];
|
|
2792
|
+
/** The nesting level of the Tag. */
|
|
2793
|
+
nestingLevel: Scalars['Int']['output'];
|
|
2794
|
+
/** Not yet implemented! */
|
|
2795
|
+
organization?: Maybe<Organization>;
|
|
2796
|
+
/** The parent Tag of this Tag. */
|
|
2797
|
+
parent?: Maybe<Tag>;
|
|
2798
|
+
/** The ID of the parent Tag. Only null when this is a root Tag. */
|
|
2799
|
+
parentId?: Maybe<Scalars['String']['output']>;
|
|
2800
|
+
/** The path of this Tag. */
|
|
2801
|
+
path: Scalars['String']['output'];
|
|
2802
|
+
prn: Scalars['PRN']['output'];
|
|
2803
|
+
stage: Stage;
|
|
2804
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
2805
|
+
/** The visibility of the Tag. Defaults to the parent's visibility, or PUBLIC if there is no parent. This has a string filter. */
|
|
2806
|
+
visibility: TagVisibility;
|
|
2807
|
+
};
|
|
2808
|
+
|
|
2809
|
+
|
|
2810
|
+
export type TagChildrenArgs = {
|
|
2811
|
+
where?: InputMaybe<Array<TagsFilterInput>>;
|
|
2812
|
+
};
|
|
2813
|
+
|
|
2814
|
+
|
|
2815
|
+
export type TagParentArgs = {
|
|
2816
|
+
where?: InputMaybe<Array<TagsFilterInput>>;
|
|
2817
|
+
};
|
|
2818
|
+
|
|
2819
|
+
export type TagEdge = {
|
|
2820
|
+
__typename?: 'TagEdge';
|
|
2821
|
+
cursor: Scalars['String']['output'];
|
|
2822
|
+
node: Tag;
|
|
2823
|
+
};
|
|
2824
|
+
|
|
2825
|
+
export enum TagVisibility {
|
|
2826
|
+
Private = 'PRIVATE',
|
|
2827
|
+
Public = 'PUBLIC'
|
|
2828
|
+
}
|
|
2829
|
+
|
|
2830
|
+
export type TagsConnection = {
|
|
2831
|
+
__typename?: 'TagsConnection';
|
|
2832
|
+
edges: Array<TagEdge>;
|
|
2833
|
+
pageInfo: PageInfo;
|
|
2834
|
+
totalCount: Scalars['Int']['output'];
|
|
2835
|
+
};
|
|
2836
|
+
|
|
2837
|
+
/** The filter input type for 'Tags'. Objects/maps are treated as AND, while arrays are treated as OR. */
|
|
2838
|
+
export type TagsFilterInput = {
|
|
2839
|
+
_not?: InputMaybe<Array<TagsFilterInput>>;
|
|
2840
|
+
amountOfChildren?: InputMaybe<Array<IntFilter>>;
|
|
2841
|
+
amountOfContentExperiences?: InputMaybe<Array<IntFilter>>;
|
|
2842
|
+
amountOfContentItems?: InputMaybe<Array<IntFilter>>;
|
|
2843
|
+
color?: InputMaybe<Array<StringFilter>>;
|
|
2844
|
+
createdAt?: InputMaybe<Array<DateFilter>>;
|
|
2845
|
+
forceVisibilityOnDescendants?: InputMaybe<Array<BooleanFilter>>;
|
|
2846
|
+
hasForcedVisibility?: InputMaybe<Array<BooleanFilter>>;
|
|
2847
|
+
name?: InputMaybe<Array<StringFilter>>;
|
|
2848
|
+
nestingLevel?: InputMaybe<Array<IntFilter>>;
|
|
2849
|
+
parentId?: InputMaybe<Array<StringFilter>>;
|
|
2850
|
+
path?: InputMaybe<Array<StringFilter>>;
|
|
2851
|
+
prn?: InputMaybe<Array<PrnFilter>>;
|
|
2852
|
+
updatedAt?: InputMaybe<Array<DateFilter>>;
|
|
2853
|
+
visibility?: InputMaybe<Array<StringFilter>>;
|
|
2854
|
+
};
|
|
2855
|
+
|
|
2856
|
+
export type Theme = {
|
|
2857
|
+
__typename?: 'Theme';
|
|
2858
|
+
buildingBlocks: Array<BuildingBlock>;
|
|
2859
|
+
channels: Array<Channel>;
|
|
2860
|
+
createdAt: Scalars['DateTime']['output'];
|
|
2861
|
+
name: Scalars['String']['output'];
|
|
2862
|
+
/** Not yet implemented! */
|
|
2863
|
+
organization?: Maybe<Organization>;
|
|
2864
|
+
prn: Scalars['PRN']['output'];
|
|
2865
|
+
repositoryUrl: Scalars['String']['output'];
|
|
2866
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
2867
|
+
};
|
|
2868
|
+
|
|
2869
|
+
|
|
2870
|
+
export type ThemeBuildingBlocksArgs = {
|
|
2871
|
+
where?: InputMaybe<Array<BuildingBlocksFilterInput>>;
|
|
2872
|
+
};
|
|
2873
|
+
|
|
2874
|
+
|
|
2875
|
+
export type ThemeChannelsArgs = {
|
|
2876
|
+
where?: InputMaybe<Array<ChannelsFilterInput>>;
|
|
2877
|
+
};
|
|
2878
|
+
|
|
2879
|
+
export type ThemeEdge = {
|
|
2880
|
+
__typename?: 'ThemeEdge';
|
|
2881
|
+
cursor: Scalars['String']['output'];
|
|
2882
|
+
node: Theme;
|
|
2883
|
+
};
|
|
2884
|
+
|
|
2885
|
+
export type ThemesConnection = {
|
|
2886
|
+
__typename?: 'ThemesConnection';
|
|
2887
|
+
edges: Array<ThemeEdge>;
|
|
2888
|
+
pageInfo: PageInfo;
|
|
2889
|
+
totalCount: Scalars['Int']['output'];
|
|
2890
|
+
};
|
|
2891
|
+
|
|
2892
|
+
/** The filter input type for 'Themes'. Objects/maps are treated as AND, while arrays are treated as OR. */
|
|
2893
|
+
export type ThemesFilterInput = {
|
|
2894
|
+
_not?: InputMaybe<Array<ThemesFilterInput>>;
|
|
2895
|
+
createdAt?: InputMaybe<Array<DateFilter>>;
|
|
2896
|
+
name?: InputMaybe<Array<StringFilter>>;
|
|
2897
|
+
prn?: InputMaybe<Array<PrnFilter>>;
|
|
2898
|
+
repositoryUrl?: InputMaybe<Array<StringFilter>>;
|
|
2899
|
+
updatedAt?: InputMaybe<Array<DateFilter>>;
|
|
2900
|
+
};
|
|
2901
|
+
|
|
2902
|
+
export type UpdateAllowedValuesContentValidationRuleInput = {
|
|
2903
|
+
prn: Scalars['PRN']['input'];
|
|
2904
|
+
settings: AllowedValuesContentValidationRuleSettingsInput;
|
|
2905
|
+
};
|
|
2906
|
+
|
|
2907
|
+
export type UpdateApiTokenInput = {
|
|
2908
|
+
name: Scalars['String']['input'];
|
|
2909
|
+
prn: Scalars['PRN']['input'];
|
|
2910
|
+
};
|
|
2911
|
+
|
|
2912
|
+
export type UpdateAssetInput = {
|
|
2913
|
+
fileName?: InputMaybe<Scalars['String']['input']>;
|
|
2914
|
+
prn: Scalars['PRN']['input'];
|
|
2915
|
+
};
|
|
2916
|
+
|
|
2917
|
+
export type UpdateBlueprintInput = {
|
|
2918
|
+
channel?: InputMaybe<Scalars['PRN']['input']>;
|
|
2919
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
2920
|
+
preview?: InputMaybe<Scalars['PRN']['input']>;
|
|
2921
|
+
prn: Scalars['PRN']['input'];
|
|
2922
|
+
};
|
|
2923
|
+
|
|
2924
|
+
export type UpdateBuildingBlockFieldFulfillmentInput = {
|
|
2925
|
+
/** The PRNs of the Content Value which this BuildingBlockFieldFulfillment is filled by. */
|
|
2926
|
+
contentValue?: InputMaybe<Scalars['PRN']['input']>;
|
|
2927
|
+
/** The PRN of the BuildingBlockFieldFulfillment that this BuildingBlockFieldFulfillment should manually be sorted after. */
|
|
2928
|
+
next?: InputMaybe<Scalars['PRN']['input']>;
|
|
2929
|
+
prn: Scalars['PRN']['input'];
|
|
2930
|
+
};
|
|
2931
|
+
|
|
2932
|
+
export type UpdateBuildingBlockFieldInput = {
|
|
2933
|
+
/** The PRN of the BuildingBlockField that this BuildingBlockField should manually be sorted after. */
|
|
2934
|
+
next?: InputMaybe<Scalars['PRN']['input']>;
|
|
2935
|
+
prn: Scalars['PRN']['input'];
|
|
2936
|
+
slug?: InputMaybe<Scalars['String']['input']>;
|
|
2937
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
2938
|
+
};
|
|
2939
|
+
|
|
2940
|
+
export type UpdateBuildingBlockInput = {
|
|
2941
|
+
/** The PRN of the BuildingBlock that this BuildingBlock should manually be sorted after. */
|
|
2942
|
+
next?: InputMaybe<Scalars['PRN']['input']>;
|
|
2943
|
+
preview?: InputMaybe<Scalars['PRN']['input']>;
|
|
2944
|
+
prn: Scalars['PRN']['input'];
|
|
2945
|
+
slug?: InputMaybe<Scalars['String']['input']>;
|
|
2946
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
2947
|
+
};
|
|
2948
|
+
|
|
2949
|
+
export type UpdateChannelInput = {
|
|
2950
|
+
defaultBlueprint?: InputMaybe<Scalars['PRN']['input']>;
|
|
2951
|
+
domain?: InputMaybe<Scalars['String']['input']>;
|
|
2952
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
2953
|
+
prn: Scalars['PRN']['input'];
|
|
2954
|
+
slug?: InputMaybe<Scalars['String']['input']>;
|
|
2955
|
+
};
|
|
2956
|
+
|
|
2957
|
+
export type UpdateContentExperienceInput = {
|
|
2958
|
+
createPathPartFromParent?: InputMaybe<CreatePathPartFromParentInput>;
|
|
2959
|
+
createPathPartFromPath?: InputMaybe<CreatePathPartFromPathInput>;
|
|
2960
|
+
/** The PRN of the Blueprint to create a Content Experience from. This will replace everything in the existing Content Experience! */
|
|
2961
|
+
fromBlueprint?: InputMaybe<Scalars['PRN']['input']>;
|
|
2962
|
+
/** The PRN of the Path Part to publish this Content Experience to. The Channel the Path Part points to must have the same Theme as the current Path Part's Channel's Theme. */
|
|
2963
|
+
pathPart?: InputMaybe<Scalars['PRN']['input']>;
|
|
2964
|
+
preview?: InputMaybe<Scalars['PRN']['input']>;
|
|
2965
|
+
prn: Scalars['PRN']['input'];
|
|
2966
|
+
slug?: InputMaybe<Scalars['String']['input']>;
|
|
2967
|
+
tags?: InputMaybe<Array<Scalars['PRN']['input']>>;
|
|
2968
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
2969
|
+
};
|
|
2970
|
+
|
|
2971
|
+
export type UpdateContentFieldInput = {
|
|
2972
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
2973
|
+
/** The PRN of the ContentField that this ContentField should manually be sorted after. */
|
|
2974
|
+
next?: InputMaybe<Scalars['PRN']['input']>;
|
|
2975
|
+
prn: Scalars['PRN']['input'];
|
|
2976
|
+
};
|
|
2977
|
+
|
|
2978
|
+
/** Note that in the near future this input will also allow for changing the ContentItem's ContentValues. */
|
|
2979
|
+
export type UpdateContentItemInput = {
|
|
2980
|
+
contentValuesToConnect?: InputMaybe<Array<ConnectContentValueInput>>;
|
|
2981
|
+
contentValuesToCreate?: InputMaybe<Array<CreateContentValueForContentItemInput>>;
|
|
2982
|
+
isDraft?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2983
|
+
prn: Scalars['PRN']['input'];
|
|
2984
|
+
tags?: InputMaybe<Array<Scalars['PRN']['input']>>;
|
|
2985
|
+
};
|
|
2986
|
+
|
|
2987
|
+
export type UpdateContentTypeInput = {
|
|
2988
|
+
displayImageField?: InputMaybe<Scalars['PRN']['input']>;
|
|
2989
|
+
/** The display name template for the content type. Use {{contentFieldPrn}} to reference Content Fields. */
|
|
2990
|
+
displayNameTemplate?: InputMaybe<Scalars['String']['input']>;
|
|
2991
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
2992
|
+
prn: Scalars['PRN']['input'];
|
|
2993
|
+
};
|
|
2994
|
+
|
|
2995
|
+
export type UpdateContentValueInput = {
|
|
2996
|
+
contentField?: InputMaybe<Scalars['PRN']['input']>;
|
|
2997
|
+
contentItem?: InputMaybe<Scalars['PRN']['input']>;
|
|
2998
|
+
/** Whether the ContentValue is reusable. */
|
|
2999
|
+
isReusable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3000
|
+
linkedContentType?: InputMaybe<Scalars['PRN']['input']>;
|
|
3001
|
+
linkedGridPlacement?: InputMaybe<Scalars['PRN']['input']>;
|
|
3002
|
+
linkedPathPart?: InputMaybe<Scalars['PRN']['input']>;
|
|
3003
|
+
linkedTag?: InputMaybe<Scalars['PRN']['input']>;
|
|
3004
|
+
/** The PRN of the ContentValue that this ContentValue should manually be sorted after. */
|
|
3005
|
+
next?: InputMaybe<Scalars['PRN']['input']>;
|
|
3006
|
+
/** !!!Warning!!! The filter generated for this field is a hardcoded StringFilter. This means all primitiveValues will be converted to and compared as a string! */
|
|
3007
|
+
primitiveValue?: InputMaybe<Scalars['PrimitiveValue']['input']>;
|
|
3008
|
+
prn: Scalars['PRN']['input'];
|
|
3009
|
+
relatedAsset?: InputMaybe<Scalars['PRN']['input']>;
|
|
3010
|
+
relatedContentItem?: InputMaybe<Scalars['PRN']['input']>;
|
|
3011
|
+
/** The CAST tree for the smart text. */
|
|
3012
|
+
smartText?: InputMaybe<Scalars['CAST']['input']>;
|
|
3013
|
+
};
|
|
3014
|
+
|
|
3015
|
+
export type UpdateCountContentValidationRuleInput = {
|
|
3016
|
+
prn: Scalars['PRN']['input'];
|
|
3017
|
+
settings: CountContentValidationRuleSettingsInput;
|
|
3018
|
+
};
|
|
3019
|
+
|
|
3020
|
+
export type UpdateDateBetweenContentValidationRuleInput = {
|
|
3021
|
+
prn: Scalars['PRN']['input'];
|
|
3022
|
+
settings: DateBetweenContentValidationRuleSettingsInput;
|
|
3023
|
+
};
|
|
3024
|
+
|
|
3025
|
+
export type UpdateDecimalCountContentValidationRuleInput = {
|
|
3026
|
+
prn: Scalars['PRN']['input'];
|
|
3027
|
+
settings: DecimalCountContentValidationRuleSettingsInput;
|
|
3028
|
+
};
|
|
3029
|
+
|
|
3030
|
+
export type UpdateExperienceComponentInput = {
|
|
3031
|
+
/** !!!WARNING!!! If you update to a new Building Block, all existing Building Block Field Fulfillments will be removed! Content Values and Grid Placements will remain. */
|
|
3032
|
+
buildingBlock?: InputMaybe<Scalars['PRN']['input']>;
|
|
3033
|
+
/** Whether the Experience Component is a draft. Drafts cannot be used in Grid Placements. */
|
|
3034
|
+
isDraft?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3035
|
+
/** The name of the Experience Component. Only applicable for global Experience Components. */
|
|
3036
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
3037
|
+
preview?: InputMaybe<Scalars['PRN']['input']>;
|
|
3038
|
+
prn: Scalars['PRN']['input'];
|
|
3039
|
+
};
|
|
3040
|
+
|
|
3041
|
+
export type UpdateGridDefinitionInput = {
|
|
3042
|
+
maxRows?: InputMaybe<Scalars['Int']['input']>;
|
|
3043
|
+
prn: Scalars['PRN']['input'];
|
|
3044
|
+
};
|
|
3045
|
+
|
|
3046
|
+
export type UpdateGridInput = {
|
|
3047
|
+
prn: Scalars['PRN']['input'];
|
|
3048
|
+
rows?: InputMaybe<Scalars['Int']['input']>;
|
|
3049
|
+
};
|
|
3050
|
+
|
|
3051
|
+
export type UpdateGridPlacementInput = {
|
|
3052
|
+
prn: Scalars['PRN']['input'];
|
|
3053
|
+
row?: InputMaybe<Scalars['Int']['input']>;
|
|
3054
|
+
};
|
|
3055
|
+
|
|
3056
|
+
export type UpdateNumberBetweenContentValidationRuleInput = {
|
|
3057
|
+
prn: Scalars['PRN']['input'];
|
|
3058
|
+
settings: NumberBetweenContentValidationRuleSettingsInput;
|
|
3059
|
+
};
|
|
3060
|
+
|
|
3061
|
+
export type UpdateOrganizationInput = {
|
|
3062
|
+
/** The logo of the Organization. This is the PRN of an Asset. */
|
|
3063
|
+
logo?: InputMaybe<Scalars['PRN']['input']>;
|
|
3064
|
+
logoUrl?: InputMaybe<Scalars['String']['input']>;
|
|
3065
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
3066
|
+
prn: Scalars['PRN']['input'];
|
|
3067
|
+
slug?: InputMaybe<Scalars['String']['input']>;
|
|
3068
|
+
};
|
|
3069
|
+
|
|
3070
|
+
/** Input to update a Path Part by path. Cannot update the root Path Part (path "/"). */
|
|
3071
|
+
export type UpdatePathPartByPathInput = {
|
|
3072
|
+
/** The path of the Path Part. This is unique per Channel. Must contain a leading '/'. If the path contains slugs that do not exist, it will recursively create them. This overrides both parent and slug if it is provided. */
|
|
3073
|
+
path: Scalars['String']['input'];
|
|
3074
|
+
prn: Scalars['PRN']['input'];
|
|
3075
|
+
};
|
|
3076
|
+
|
|
3077
|
+
/** Input to update a Path Part. Cannot update the root Path Part (slug ""). */
|
|
3078
|
+
export type UpdatePathPartInput = {
|
|
3079
|
+
parent?: InputMaybe<Scalars['String']['input']>;
|
|
3080
|
+
prn: Scalars['PRN']['input'];
|
|
3081
|
+
/** The slug of the Path Part. This is unique among siblings. */
|
|
3082
|
+
slug?: InputMaybe<Scalars['String']['input']>;
|
|
3083
|
+
};
|
|
3084
|
+
|
|
3085
|
+
export type UpdateRelatableContentTypesContentValidationRuleInput = {
|
|
3086
|
+
prn: Scalars['PRN']['input'];
|
|
3087
|
+
settings: RelatableContentTypesContentValidationRuleSettingsInput;
|
|
3088
|
+
};
|
|
3089
|
+
|
|
3090
|
+
export type UpdateStringFormatContentValidationRuleInput = {
|
|
3091
|
+
prn: Scalars['PRN']['input'];
|
|
3092
|
+
settings: StringFormatContentValidationRuleSettingsInput;
|
|
3093
|
+
};
|
|
3094
|
+
|
|
3095
|
+
export type UpdateTagInput = {
|
|
3096
|
+
/** The color of the Tag. */
|
|
3097
|
+
color?: InputMaybe<Scalars['String']['input']>;
|
|
3098
|
+
/** Whether to force the visibility of the Tag on its descendants. */
|
|
3099
|
+
forceVisibilityOnDescendants?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3100
|
+
/** The name of the Tag. */
|
|
3101
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
3102
|
+
parent?: InputMaybe<Scalars['String']['input']>;
|
|
3103
|
+
prn: Scalars['PRN']['input'];
|
|
3104
|
+
/** The visibility of the Tag. If the visibility is forced by a parent this field cannot be updated. */
|
|
3105
|
+
visibility?: InputMaybe<TagVisibility>;
|
|
3106
|
+
};
|
|
3107
|
+
|
|
3108
|
+
export type UpdateThemeInput = {
|
|
3109
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
3110
|
+
prn: Scalars['PRN']['input'];
|
|
3111
|
+
repositoryUrl?: InputMaybe<Scalars['String']['input']>;
|
|
3112
|
+
};
|
|
3113
|
+
|
|
3114
|
+
export type UpdateValueTypeContentValidationRuleInput = {
|
|
3115
|
+
prn: Scalars['PRN']['input'];
|
|
3116
|
+
settings: ValueTypeContentValidationRuleSettingsInput;
|
|
3117
|
+
};
|
|
3118
|
+
|
|
3119
|
+
export type ValueTypeContentValidationRuleSettings = {
|
|
3120
|
+
__typename?: 'ValueTypeContentValidationRuleSettings';
|
|
3121
|
+
allowedTypes: Array<ContentValueTypeNames>;
|
|
3122
|
+
};
|
|
3123
|
+
|
|
3124
|
+
export type ValueTypeContentValidationRuleSettingsInput = {
|
|
3125
|
+
allowedTypes: Array<ContentValueTypeNames>;
|
|
3126
|
+
};
|
|
3127
|
+
|
|
3128
|
+
export type TagQueryVariables = Exact<{
|
|
3129
|
+
prn: Array<Scalars['PRN']['input']> | Scalars['PRN']['input'];
|
|
3130
|
+
}>;
|
|
3131
|
+
|
|
3132
|
+
|
|
3133
|
+
export type TagQuery = { __typename?: 'Query', tag: Array<(
|
|
3134
|
+
{ __typename?: 'Tag' }
|
|
3135
|
+
& { ' $fragmentRefs'?: { 'TagFragmentFragment': TagFragmentFragment } }
|
|
3136
|
+
)> };
|
|
3137
|
+
|
|
3138
|
+
export type TagFragmentFragment = { __typename?: 'Tag', prn: any, name: string, path: string, color?: string | null, visibility: TagVisibility, forceVisibilityOnDescendants: boolean, stage: Stage, amountOfChildren: number, amountOfContentExperiences: number, amountOfContentItems: number, hasForcedVisibility: boolean, nestingLevel: number, createdAt: any, updatedAt: any, _id: any } & { ' $fragmentName'?: 'TagFragmentFragment' };
|
|
3139
|
+
|
|
3140
|
+
export const TagFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"tagFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Tag"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"path"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"visibility"}},{"kind":"Field","name":{"kind":"Name","value":"forceVisibilityOnDescendants"}},{"kind":"Field","name":{"kind":"Name","value":"stage"}},{"kind":"Field","name":{"kind":"Name","value":"amountOfChildren"}},{"kind":"Field","name":{"kind":"Name","value":"amountOfContentExperiences"}},{"kind":"Field","name":{"kind":"Name","value":"amountOfContentItems"}},{"kind":"Field","name":{"kind":"Name","value":"hasForcedVisibility"}},{"kind":"Field","name":{"kind":"Name","value":"nestingLevel"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]} as unknown as DocumentNode<TagFragmentFragment, unknown>;
|
|
3141
|
+
export const TagDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"tag"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"prn"}},"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PRN"}}}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tag"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"prn"},"value":{"kind":"Variable","name":{"kind":"Name","value":"prn"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"tagFragment"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"tagFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Tag"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"_id"},"name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"prn"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"path"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"visibility"}},{"kind":"Field","name":{"kind":"Name","value":"forceVisibilityOnDescendants"}},{"kind":"Field","name":{"kind":"Name","value":"stage"}},{"kind":"Field","name":{"kind":"Name","value":"amountOfChildren"}},{"kind":"Field","name":{"kind":"Name","value":"amountOfContentExperiences"}},{"kind":"Field","name":{"kind":"Name","value":"amountOfContentItems"}},{"kind":"Field","name":{"kind":"Name","value":"hasForcedVisibility"}},{"kind":"Field","name":{"kind":"Name","value":"nestingLevel"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]} as unknown as DocumentNode<TagQuery, TagQueryVariables>;
|