@droz-js/sdk 0.8.2 → 0.8.3-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/drozbase-ws.d.ts +1 -3
- package/src/drozbase.d.ts +1 -3
- package/src/sdks/drozbase.d.ts +115 -106
- package/src/sdks/drozbase.js +1 -4
package/package.json
CHANGED
package/src/drozbase-ws.d.ts
CHANGED
|
@@ -664,10 +664,8 @@ declare const DrozBaseWs_base: new () => {
|
|
|
664
664
|
}>, options?: unknown): Promise<import("./sdks/drozbase").ToggleReactionMutation>;
|
|
665
665
|
search(variables?: import("./sdks/drozbase").Exact<{
|
|
666
666
|
query?: import("./sdks/drozbase").InputMaybe<import("./sdks/drozbase").Scalars["String"]["input"]>;
|
|
667
|
-
similarQuery?: import("./sdks/drozbase").InputMaybe<import("./sdks/drozbase").Scalars["String"]["input"]>;
|
|
668
|
-
parent?: import("./sdks/drozbase").InputMaybe<import("./sdks/drozbase").Scalars["String"]["input"]>;
|
|
669
667
|
typename?: import("./sdks/drozbase").InputMaybe<import("./sdks/drozbase").Scalars["String"]["input"]>;
|
|
670
|
-
filters?: import("./sdks/drozbase").InputMaybe<Array<import("./sdks/drozbase").
|
|
668
|
+
filters?: import("./sdks/drozbase").InputMaybe<Array<import("./sdks/drozbase").ContentSearchFilterInput> | import("./sdks/drozbase").ContentSearchFilterInput>;
|
|
671
669
|
after?: import("./sdks/drozbase").InputMaybe<import("./sdks/drozbase").Scalars["String"]["input"]>;
|
|
672
670
|
highlight?: import("./sdks/drozbase").InputMaybe<import("./sdks/drozbase").Scalars["Boolean"]["input"]>;
|
|
673
671
|
sorting?: import("./sdks/drozbase").InputMaybe<import("./sdks/drozbase").SearchSorting>;
|
package/src/drozbase.d.ts
CHANGED
|
@@ -667,10 +667,8 @@ declare const DrozBase_base: new (options?: import("./client/http").HttpClientOp
|
|
|
667
667
|
}>, options?: unknown): Promise<import("./sdks/drozbase").ToggleReactionMutation>;
|
|
668
668
|
search(variables?: import("./sdks/drozbase").Exact<{
|
|
669
669
|
query?: import("./sdks/drozbase").InputMaybe<import("./sdks/drozbase").Scalars["String"]["input"]>;
|
|
670
|
-
similarQuery?: import("./sdks/drozbase").InputMaybe<import("./sdks/drozbase").Scalars["String"]["input"]>;
|
|
671
|
-
parent?: import("./sdks/drozbase").InputMaybe<import("./sdks/drozbase").Scalars["String"]["input"]>;
|
|
672
670
|
typename?: import("./sdks/drozbase").InputMaybe<import("./sdks/drozbase").Scalars["String"]["input"]>;
|
|
673
|
-
filters?: import("./sdks/drozbase").InputMaybe<Array<import("./sdks/drozbase").
|
|
671
|
+
filters?: import("./sdks/drozbase").InputMaybe<Array<import("./sdks/drozbase").ContentSearchFilterInput> | import("./sdks/drozbase").ContentSearchFilterInput>;
|
|
674
672
|
after?: import("./sdks/drozbase").InputMaybe<import("./sdks/drozbase").Scalars["String"]["input"]>;
|
|
675
673
|
highlight?: import("./sdks/drozbase").InputMaybe<import("./sdks/drozbase").Scalars["Boolean"]["input"]>;
|
|
676
674
|
sorting?: import("./sdks/drozbase").InputMaybe<import("./sdks/drozbase").SearchSorting>;
|
package/src/sdks/drozbase.d.ts
CHANGED
|
@@ -288,6 +288,19 @@ export type CompleteCourseEntryInput = {
|
|
|
288
288
|
entryId: Scalars['ID']['input'];
|
|
289
289
|
};
|
|
290
290
|
export type ContentSearchFacet = AuthorSearchResultsFacet | RecordSearchResultsFacet | SearchResultsFacet;
|
|
291
|
+
export type ContentSearchFilterInput = {
|
|
292
|
+
authors?: InputMaybe<StringMatcherInput>;
|
|
293
|
+
contentTypes?: InputMaybe<StringMatcherInput>;
|
|
294
|
+
createdAt?: InputMaybe<NumberMatcherInput>;
|
|
295
|
+
entities?: InputMaybe<StringMatcherInput>;
|
|
296
|
+
features?: InputMaybe<StringMatcherInput>;
|
|
297
|
+
labels?: InputMaybe<StringMatcherInput>;
|
|
298
|
+
parent?: InputMaybe<StringMatcherInput>;
|
|
299
|
+
promotedAt?: InputMaybe<NumberMatcherInput>;
|
|
300
|
+
tags?: InputMaybe<StringMatcherInput>;
|
|
301
|
+
trail?: InputMaybe<StringMatcherInput>;
|
|
302
|
+
typename?: InputMaybe<StringMatcherInput>;
|
|
303
|
+
};
|
|
291
304
|
export type ContentSearchHit = Course | Doc | Form | Space | Storage;
|
|
292
305
|
export type Course = ICourse & {
|
|
293
306
|
authors?: Maybe<Array<UserInfo>>;
|
|
@@ -2172,12 +2185,10 @@ export type QueryRecordsArgs = {
|
|
|
2172
2185
|
};
|
|
2173
2186
|
export type QuerySearchArgs = {
|
|
2174
2187
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
2175
|
-
filters?: InputMaybe<Array<
|
|
2188
|
+
filters?: InputMaybe<Array<ContentSearchFilterInput>>;
|
|
2176
2189
|
highlight?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2177
2190
|
parent?: InputMaybe<Scalars['String']['input']>;
|
|
2178
|
-
parentOnly?: InputMaybe<Scalars['String']['input']>;
|
|
2179
2191
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
2180
|
-
similarQuery?: InputMaybe<Scalars['String']['input']>;
|
|
2181
2192
|
sorting?: InputMaybe<SearchSorting>;
|
|
2182
2193
|
typename?: InputMaybe<Scalars['String']['input']>;
|
|
2183
2194
|
};
|
|
@@ -3433,7 +3444,7 @@ export type UpdateChecklistItemMutation = {
|
|
|
3433
3444
|
updateChecklistItem: ChecklistItemFragment;
|
|
3434
3445
|
};
|
|
3435
3446
|
export type PageInfoFragment = Pick<PageInfo, 'next' | 'hasNext'>;
|
|
3436
|
-
export type RecordFragment = Pick<Record, 'id' | 'slug' | 'title' | 'trail' | 'typename' | 'color' | 'thumbnailUrl' | 'downloadUrl' | 'origin' | 'identifier' | 'createdAt' | 'updatedAt' | '
|
|
3447
|
+
export type RecordFragment = Pick<Record, 'id' | 'slug' | 'title' | 'trail' | 'typename' | 'color' | 'thumbnailUrl' | 'downloadUrl' | 'origin' | 'identifier' | 'createdAt' | 'updatedAt' | 'status'>;
|
|
3437
3448
|
export type RecordWithParentFragment = ({
|
|
3438
3449
|
parent?: Maybe<Pick<Record, 'id' | 'slug' | 'title' | 'typename' | 'color' | 'thumbnailUrl'>>;
|
|
3439
3450
|
} & RecordFragment);
|
|
@@ -4673,10 +4684,8 @@ type Facets_SearchResultsFacet_Fragment = (Pick<SearchResultsFacet, 'name'> & {
|
|
|
4673
4684
|
export type FacetsFragment = Facets_AuthorSearchResultsFacet_Fragment | Facets_RecordSearchResultsFacet_Fragment | Facets_SearchResultsFacet_Fragment;
|
|
4674
4685
|
export type SearchQueryVariables = Exact<{
|
|
4675
4686
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
4676
|
-
similarQuery?: InputMaybe<Scalars['String']['input']>;
|
|
4677
|
-
parent?: InputMaybe<Scalars['String']['input']>;
|
|
4678
4687
|
typename?: InputMaybe<Scalars['String']['input']>;
|
|
4679
|
-
filters?: InputMaybe<Array<
|
|
4688
|
+
filters?: InputMaybe<Array<ContentSearchFilterInput> | ContentSearchFilterInput>;
|
|
4680
4689
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
4681
4690
|
highlight?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4682
4691
|
sorting?: InputMaybe<SearchSorting>;
|
|
@@ -5083,7 +5092,7 @@ export declare const UserFragmentDoc = "\n fragment user on User {\n usernam
|
|
|
5083
5092
|
export declare const SessionFragmentDoc = "\n fragment session on Session {\n token_use\n sub\n name\n email\n picture\n groups\n error {\n code\n message\n }\n}\n ";
|
|
5084
5093
|
export declare const ChecklistItemFragmentDoc = "\n fragment checklistItem on ChecklistItem {\n id\n value\n}\n ";
|
|
5085
5094
|
export declare const PageInfoFragmentDoc = "\n fragment pageInfo on PageInfo {\n next\n hasNext\n}\n ";
|
|
5086
|
-
export declare const RecordFragmentDoc = "\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5095
|
+
export declare const RecordFragmentDoc = "\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n ";
|
|
5087
5096
|
export declare const CourseWithoutChaptersFragmentDoc = "\n fragment courseWithoutChapters on Course {\n id\n version\n typename\n title\n slug\n tags\n duration\n progress\n points\n enrollmentDate\n createdAt\n updatedAt\n ttl\n versionId\n thumbnailUrl\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n ";
|
|
5088
5097
|
export declare const CourseLessonWithoutContentFragmentDoc = "\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n ";
|
|
5089
5098
|
export declare const CourseLessonFragmentDoc = "\n fragment courseLesson on CourseLesson {\n ...courseLessonWithoutContent\n content\n}\n ";
|
|
@@ -5164,7 +5173,7 @@ export declare const TaskFragmentDoc = "\n fragment task on Task {\n id\n a
|
|
|
5164
5173
|
export declare const WebhookFragmentDoc = "\n fragment webhook on Webhook {\n id\n title\n endpoint\n events\n token\n status\n}\n ";
|
|
5165
5174
|
export declare const GenerateOrganizationAnalyticsEmbedUrlDocument = "\n mutation generateOrganizationAnalyticsEmbedUrl {\n generateOverviewEmbedUrl {\n iframeUrl\n }\n generateUsersEmbedUrl {\n iframeUrl\n }\n generateContentsEmbedUrl {\n iframeUrl\n }\n generatePermissionsEmbedUrl {\n iframeUrl\n }\n generateSearchesEmbedUrl {\n iframeUrl\n }\n}\n ";
|
|
5166
5175
|
export declare const GenerateRecordAnalyticsEmbedUrlDocument = "\n mutation generateRecordAnalyticsEmbedUrl($resourceId: ID!) {\n generateOverviewEmbedUrl(resourceId: $resourceId) {\n iframeUrl\n }\n generateUsersEmbedUrl(resourceId: $resourceId) {\n iframeUrl\n }\n generateContentEmbedUrl(resourceId: $resourceId) {\n iframeUrl\n }\n}\n ";
|
|
5167
|
-
export declare const FindAnswerDocument = "\n query findAnswer($query: String, $parent: String, $cacheOnly: Boolean) {\n systemTime\n findAnswer(query: $query, parent: $parent, cacheOnly: $cacheOnly) {\n cached\n answer\n relatedQuestions\n record {\n ...recordWithParent\n }\n documents {\n id\n content\n }\n }\n}\n \n fragment recordWithParent on Record {\n ...record\n parent {\n id\n slug\n title\n typename\n color\n thumbnailUrl\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5176
|
+
export declare const FindAnswerDocument = "\n query findAnswer($query: String, $parent: String, $cacheOnly: Boolean) {\n systemTime\n findAnswer(query: $query, parent: $parent, cacheOnly: $cacheOnly) {\n cached\n answer\n relatedQuestions\n record {\n ...recordWithParent\n }\n documents {\n id\n content\n }\n }\n}\n \n fragment recordWithParent on Record {\n ...record\n parent {\n id\n slug\n title\n typename\n color\n thumbnailUrl\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n ";
|
|
5168
5177
|
export declare const ListAnswersDocument = "\n query listAnswers {\n listAnswers {\n id\n query\n answer\n hits\n createdAt\n updatedAt\n }\n}\n ";
|
|
5169
5178
|
export declare const QueryVectorStoreDocument = "\n query queryVectorStore($query: String!, $parent: String) {\n queryVectorStore(query: $query, parent: $parent) {\n id\n content\n }\n}\n ";
|
|
5170
5179
|
export declare const CleanAnswerCacheDocument = "\n mutation cleanAnswerCache {\n cleanAnswerCache\n}\n ";
|
|
@@ -5208,116 +5217,116 @@ export declare const AddUserToGroupDocument = "\n mutation addUserToGroup($in
|
|
|
5208
5217
|
export declare const RemoveUserFromGroupDocument = "\n mutation removeUserFromGroup($input: RemoveUserFromGroupInput!) {\n removeUserFromGroup(input: $input)\n}\n ";
|
|
5209
5218
|
export declare const GetChecklistItemDocument = "\n query getChecklistItem($id: ID!) {\n getChecklistItem(id: $id) {\n ...checklistItem\n }\n}\n \n fragment checklistItem on ChecklistItem {\n id\n value\n}\n ";
|
|
5210
5219
|
export declare const UpdateChecklistItemDocument = "\n mutation updateChecklistItem($input: UpdateChecklistItemInput!) {\n updateChecklistItem(input: $input) {\n ...checklistItem\n }\n}\n \n fragment checklistItem on ChecklistItem {\n id\n value\n}\n ";
|
|
5211
|
-
export declare const GetRecordDocument = "\n query getRecord($id: ID!, $withContent: Boolean = false) {\n record(id: $id) {\n ...recordWithParent\n content @include(if: $withContent)\n }\n}\n \n fragment recordWithParent on Record {\n ...record\n parent {\n id\n slug\n title\n typename\n color\n thumbnailUrl\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5212
|
-
export declare const GetRecordsDocument = "\n query getRecords($ids: [ID!]!, $withContent: Boolean = false) {\n records(ids: $ids) {\n ...recordWithParent\n content @include(if: $withContent)\n }\n}\n \n fragment recordWithParent on Record {\n ...record\n parent {\n id\n slug\n title\n typename\n color\n thumbnailUrl\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5220
|
+
export declare const GetRecordDocument = "\n query getRecord($id: ID!, $withContent: Boolean = false) {\n record(id: $id) {\n ...recordWithParent\n content @include(if: $withContent)\n }\n}\n \n fragment recordWithParent on Record {\n ...record\n parent {\n id\n slug\n title\n typename\n color\n thumbnailUrl\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n ";
|
|
5221
|
+
export declare const GetRecordsDocument = "\n query getRecords($ids: [ID!]!, $withContent: Boolean = false) {\n records(ids: $ids) {\n ...recordWithParent\n content @include(if: $withContent)\n }\n}\n \n fragment recordWithParent on Record {\n ...record\n parent {\n id\n slug\n title\n typename\n color\n thumbnailUrl\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n ";
|
|
5213
5222
|
export declare const GetRecordInfoDocument = "\n query getRecordInfo($id: ID!) {\n recordInfo(id: $id) {\n id\n slug\n title\n typename\n }\n}\n ";
|
|
5214
|
-
export declare const GetRecordByOriginDocument = "\n query getRecordByOrigin($origin: String!, $identifier: String!, $typename: String) {\n recordByOrigin(origin: $origin, identifier: $identifier, typename: $typename) {\n ...recordWithParent\n }\n}\n \n fragment recordWithParent on Record {\n ...record\n parent {\n id\n slug\n title\n typename\n color\n thumbnailUrl\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5215
|
-
export declare const GetTrailDocument = "\n query getTrail($id: ID!) {\n trail(id: $id) {\n ...record\n }\n}\n \n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5216
|
-
export declare const GetTrashBinItemsDocument = "\n query getTrashBinItems($next: String) {\n trashBinItems(next: $next) {\n pageInfo {\n ...pageInfo\n }\n nodes {\n ...recordWithParent\n }\n }\n}\n \n fragment pageInfo on PageInfo {\n next\n hasNext\n}\n \n\n fragment recordWithParent on Record {\n ...record\n parent {\n id\n slug\n title\n typename\n color\n thumbnailUrl\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5223
|
+
export declare const GetRecordByOriginDocument = "\n query getRecordByOrigin($origin: String!, $identifier: String!, $typename: String) {\n recordByOrigin(origin: $origin, identifier: $identifier, typename: $typename) {\n ...recordWithParent\n }\n}\n \n fragment recordWithParent on Record {\n ...record\n parent {\n id\n slug\n title\n typename\n color\n thumbnailUrl\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n ";
|
|
5224
|
+
export declare const GetTrailDocument = "\n query getTrail($id: ID!) {\n trail(id: $id) {\n ...record\n }\n}\n \n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n ";
|
|
5225
|
+
export declare const GetTrashBinItemsDocument = "\n query getTrashBinItems($next: String) {\n trashBinItems(next: $next) {\n pageInfo {\n ...pageInfo\n }\n nodes {\n ...recordWithParent\n }\n }\n}\n \n fragment pageInfo on PageInfo {\n next\n hasNext\n}\n \n\n fragment recordWithParent on Record {\n ...record\n parent {\n id\n slug\n title\n typename\n color\n thumbnailUrl\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n ";
|
|
5217
5226
|
export declare const ListSimilarItemsDocument = "\n query listSimilarItems {\n listSimilarItems {\n node {\n id\n title\n typename\n slug\n }\n nodes {\n similarity\n node {\n id\n title\n typename\n slug\n }\n }\n }\n}\n ";
|
|
5218
5227
|
export declare const FindSimilarItemsDocument = "\n query findSimilarItems($id: ID!) {\n findSimilarItems(id: $id) {\n similarity\n node {\n id\n title\n typename\n }\n }\n}\n ";
|
|
5219
5228
|
export declare const TriggerSimilarityCheckDocument = "\n mutation triggerSimilarityCheck {\n triggerSimilarityCheck\n}\n ";
|
|
5220
5229
|
export declare const IgnoreSimilarityForDocsDocument = "\n mutation ignoreSimilarityForDocs($input: IgnoreSimilarityForDocsInput!) {\n ignoreSimilarityForDocs(input: $input)\n}\n ";
|
|
5221
|
-
export declare const CreateSymlinkDocument = "\n mutation createSymlink($input: CreateSymlinkInput!) {\n createSymlink(input: $input) {\n ...recordWithParent\n }\n}\n \n fragment recordWithParent on Record {\n ...record\n parent {\n id\n slug\n title\n typename\n color\n thumbnailUrl\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5222
|
-
export declare const RestoreItemFromTrashBinDocument = "\n mutation restoreItemFromTrashBin($input: RestoreItemFromTrashBinInput!) {\n restoreItemFromTrashBin(input: $input) {\n ...recordWithParent\n }\n}\n \n fragment recordWithParent on Record {\n ...record\n parent {\n id\n slug\n title\n typename\n color\n thumbnailUrl\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5230
|
+
export declare const CreateSymlinkDocument = "\n mutation createSymlink($input: CreateSymlinkInput!) {\n createSymlink(input: $input) {\n ...recordWithParent\n }\n}\n \n fragment recordWithParent on Record {\n ...record\n parent {\n id\n slug\n title\n typename\n color\n thumbnailUrl\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n ";
|
|
5231
|
+
export declare const RestoreItemFromTrashBinDocument = "\n mutation restoreItemFromTrashBin($input: RestoreItemFromTrashBinInput!) {\n restoreItemFromTrashBin(input: $input) {\n ...recordWithParent\n }\n}\n \n fragment recordWithParent on Record {\n ...record\n parent {\n id\n slug\n title\n typename\n color\n thumbnailUrl\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n ";
|
|
5223
5232
|
export declare const ReindexDocument = "\n mutation reindex($input: ReindexInput!) {\n reindex(input: $input)\n}\n ";
|
|
5224
5233
|
export declare const FullReindexDocument = "\n mutation fullReindex {\n fullReindex\n}\n ";
|
|
5225
5234
|
export declare const FullDumpDocument = "\n mutation fullDump {\n fullDump\n}\n ";
|
|
5226
|
-
export declare const GetCourseDocument = "\n query getCourse($id: ID!) {\n trail(id: $id) {\n ...record\n }\n course(id: $id) {\n ... on Course {\n ...course\n isEligible\n }\n ... on CourseVersion {\n ...courseVersionWithApprovalFlow\n }\n }\n}\n \n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5227
|
-
export declare const GetCoursesDocument = "\n query getCourses($parent: ID!, $after: String, $limit: Int) {\n courses(parent: $parent, after: $after, limit: $limit) {\n nodes {\n ...courseWithoutChapters\n }\n pageInfo {\n ...pageInfo\n }\n }\n}\n \n fragment courseWithoutChapters on Course {\n id\n version\n typename\n title\n slug\n tags\n duration\n progress\n points\n enrollmentDate\n createdAt\n updatedAt\n ttl\n versionId\n thumbnailUrl\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5228
|
-
export declare const GetCourseVersionsDocument = "\n query getCourseVersions($id: ID!, $after: String, $limit: Int) {\n courseVersions(id: $id, after: $after, limit: $limit) {\n nodes {\n ...courseVersionWithoutContent\n diff {\n title\n content\n }\n }\n pageInfo {\n ...pageInfo\n }\n }\n}\n \n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5229
|
-
export declare const GetCourseChapterDocument = "\n query getCourseChapter($id: ID!) {\n courseChapter(id: $id) {\n ...courseChapter\n }\n}\n \n fragment courseChapter on CourseChapter {\n ...courseChapterWithoutContent\n content\n}\n \n\n fragment courseChapterWithoutContent on CourseChapter {\n typename\n id\n version\n title\n slug\n duration\n progress\n entries {\n ...courseLessonWithoutContent\n ...courseQuizWithoutContent\n }\n}\n \n\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n \n\n fragment courseQuizWithoutContent on Quiz {\n ...quizWithoutContent\n completedDate\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5235
|
+
export declare const GetCourseDocument = "\n query getCourse($id: ID!) {\n trail(id: $id) {\n ...record\n }\n course(id: $id) {\n ... on Course {\n ...course\n isEligible\n }\n ... on CourseVersion {\n ...courseVersionWithApprovalFlow\n }\n }\n}\n \n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment course on Course {\n ...courseWithoutContent\n content\n}\n \n\n fragment courseWithoutContent on Course {\n id\n version\n typename\n title\n slug\n tags\n duration\n progress\n points\n enrollmentDate\n createdAt\n updatedAt\n ttl\n versionId\n thumbnailUrl\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment courseChapterWithoutContent on CourseChapter {\n typename\n id\n version\n title\n slug\n duration\n progress\n entries {\n ...courseLessonWithoutContent\n ...courseQuizWithoutContent\n }\n}\n \n\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n \n\n fragment courseQuizWithoutContent on Quiz {\n ...quizWithoutContent\n completedDate\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment courseVersionWithApprovalFlow on CourseVersion {\n ...courseVersion\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment courseVersion on CourseVersion {\n ...courseVersionWithoutContent\n content\n}\n \n\n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n \n\n fragment approvalFlowExecution on ApprovalFlowExecution {\n id\n status\n currentStepId\n flow {\n ...executableApprovalFlow\n }\n}\n \n\n fragment executableApprovalFlow on ExecutableApprovalFlow {\n id\n title\n steps {\n id\n status\n title\n approvers {\n ...subject\n }\n minimumApprovals\n approvals {\n ...userInfo\n }\n rejections {\n ...userInfo\n }\n autoProceedOnMinimumReached\n }\n}\n \n\n fragment subject on Subject {\n __typename\n ...userInfo\n ...group\n}\n \n\n fragment group on Group {\n groupName\n description\n precedence\n}\n ";
|
|
5236
|
+
export declare const GetCoursesDocument = "\n query getCourses($parent: ID!, $after: String, $limit: Int) {\n courses(parent: $parent, after: $after, limit: $limit) {\n nodes {\n ...courseWithoutChapters\n }\n pageInfo {\n ...pageInfo\n }\n }\n}\n \n fragment courseWithoutChapters on Course {\n id\n version\n typename\n title\n slug\n tags\n duration\n progress\n points\n enrollmentDate\n createdAt\n updatedAt\n ttl\n versionId\n thumbnailUrl\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment pageInfo on PageInfo {\n next\n hasNext\n}\n ";
|
|
5237
|
+
export declare const GetCourseVersionsDocument = "\n query getCourseVersions($id: ID!, $after: String, $limit: Int) {\n courseVersions(id: $id, after: $after, limit: $limit) {\n nodes {\n ...courseVersionWithoutContent\n diff {\n title\n content\n }\n }\n pageInfo {\n ...pageInfo\n }\n }\n}\n \n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment courseChapterWithoutContent on CourseChapter {\n typename\n id\n version\n title\n slug\n duration\n progress\n entries {\n ...courseLessonWithoutContent\n ...courseQuizWithoutContent\n }\n}\n \n\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n \n\n fragment courseQuizWithoutContent on Quiz {\n ...quizWithoutContent\n completedDate\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment pageInfo on PageInfo {\n next\n hasNext\n}\n ";
|
|
5238
|
+
export declare const GetCourseChapterDocument = "\n query getCourseChapter($id: ID!) {\n courseChapter(id: $id) {\n ...courseChapter\n }\n}\n \n fragment courseChapter on CourseChapter {\n ...courseChapterWithoutContent\n content\n}\n \n\n fragment courseChapterWithoutContent on CourseChapter {\n typename\n id\n version\n title\n slug\n duration\n progress\n entries {\n ...courseLessonWithoutContent\n ...courseQuizWithoutContent\n }\n}\n \n\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n \n\n fragment courseQuizWithoutContent on Quiz {\n ...quizWithoutContent\n completedDate\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n ";
|
|
5230
5239
|
export declare const GetCourseLessonDocument = "\n query getCourseLesson($id: ID!) {\n courseLesson(id: $id) {\n ...courseLesson\n }\n}\n \n fragment courseLesson on CourseLesson {\n ...courseLessonWithoutContent\n content\n}\n \n\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n ";
|
|
5231
|
-
export declare const GetCourseEntryDocument = "\n query getCourseEntry($id: ID!) {\n courseEntry(id: $id) {\n ...courseEntry\n }\n}\n \n fragment courseEntry on CourseEntry {\n ...courseLesson\n ...courseQuiz\n}\n \n\n fragment courseLesson on CourseLesson {\n ...courseLessonWithoutContent\n content\n}\n \n\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n \n\n fragment courseQuiz on Quiz {\n ...quiz\n completedDate\n}\n \n\n fragment quiz on Quiz {\n ...quizWithoutContent\n content\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5232
|
-
export declare const GetCourseSettingsDocument = "\n query getCourseSettings($id: ID!, $scopes: [String!]) {\n courseSettings(id: $id, scopes: $scopes) {\n general {\n ...courseGeneralSettings\n prerequisiteCourses {\n ... on Course {\n ...courseWithoutChapters\n progressInfo {\n ...courseProgressInfo\n }\n }\n }\n }\n certificate {\n ...courseCertificateSettings\n }\n quiz {\n ...courseQuizSettings\n }\n }\n}\n \n fragment courseGeneralSettings on CourseGeneralSettings {\n blockNavigationForDuration\n allowFreeNavigation\n prerequisiteCoursesIds\n}\n \n\n fragment courseWithoutChapters on Course {\n id\n version\n typename\n title\n slug\n tags\n duration\n progress\n points\n enrollmentDate\n createdAt\n updatedAt\n ttl\n versionId\n thumbnailUrl\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5240
|
+
export declare const GetCourseEntryDocument = "\n query getCourseEntry($id: ID!) {\n courseEntry(id: $id) {\n ...courseEntry\n }\n}\n \n fragment courseEntry on CourseEntry {\n ...courseLesson\n ...courseQuiz\n}\n \n\n fragment courseLesson on CourseLesson {\n ...courseLessonWithoutContent\n content\n}\n \n\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n \n\n fragment courseQuiz on Quiz {\n ...quiz\n completedDate\n}\n \n\n fragment quiz on Quiz {\n ...quizWithoutContent\n content\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n ";
|
|
5241
|
+
export declare const GetCourseSettingsDocument = "\n query getCourseSettings($id: ID!, $scopes: [String!]) {\n courseSettings(id: $id, scopes: $scopes) {\n general {\n ...courseGeneralSettings\n prerequisiteCourses {\n ... on Course {\n ...courseWithoutChapters\n progressInfo {\n ...courseProgressInfo\n }\n }\n }\n }\n certificate {\n ...courseCertificateSettings\n }\n quiz {\n ...courseQuizSettings\n }\n }\n}\n \n fragment courseGeneralSettings on CourseGeneralSettings {\n blockNavigationForDuration\n allowFreeNavigation\n prerequisiteCoursesIds\n}\n \n\n fragment courseWithoutChapters on Course {\n id\n version\n typename\n title\n slug\n tags\n duration\n progress\n points\n enrollmentDate\n createdAt\n updatedAt\n ttl\n versionId\n thumbnailUrl\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment courseProgressInfo on CourseProgressInfo {\n progress\n isCompleted\n isApproved\n userPoints\n certificateKey\n certificateUrl\n courseHasCertificate\n}\n \n\n fragment courseCertificateSettings on CourseCertificateSettings {\n templateId\n templateUrl\n}\n \n\n fragment courseQuizSettings on CourseQuizSettings {\n retriesOnWrongAnswer\n showGradeAfterSubmission\n showQuestionPoints\n minimumPointsPercentageForApproval\n shuffleQuestions\n}\n ";
|
|
5233
5242
|
export declare const GetCourseProgressInfoDocument = "\n query getCourseProgressInfo($id: ID!) {\n courseProgressInfo(id: $id) {\n ...courseProgressInfo\n }\n}\n \n fragment courseProgressInfo on CourseProgressInfo {\n progress\n isCompleted\n isApproved\n userPoints\n certificateKey\n certificateUrl\n courseHasCertificate\n}\n ";
|
|
5234
5243
|
export declare const GetCourseEnrolledUsersDocument = "\n query getCourseEnrolledUsers($id: ID!, $after: String, $limit: Int) {\n courseEnrolledUsers(id: $id, after: $after, limit: $limit) {\n nodes {\n ...courseUser\n }\n pageInfo {\n ...pageInfo\n }\n }\n}\n \n fragment courseUser on CourseUser {\n user {\n ...userInfo\n }\n startedAt\n completedAt\n progressInfo {\n ...courseProgressInfo\n }\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment courseProgressInfo on CourseProgressInfo {\n progress\n isCompleted\n isApproved\n userPoints\n certificateKey\n certificateUrl\n courseHasCertificate\n}\n \n\n fragment pageInfo on PageInfo {\n next\n hasNext\n}\n ";
|
|
5235
|
-
export declare const ListEnrolledCoursesDocument = "\n query listEnrolledCourses($enrollmentStatus: EnrollmentStatus, $after: String, $limit: Int) {\n enrolledCourses(\n enrollmentStatus: $enrollmentStatus\n after: $after\n limit: $limit\n ) {\n nodes {\n ...courseUser\n course {\n ...courseWithoutChapters\n }\n }\n pageInfo {\n ...pageInfo\n }\n }\n}\n \n fragment courseUser on CourseUser {\n user {\n ...userInfo\n }\n startedAt\n completedAt\n progressInfo {\n ...courseProgressInfo\n }\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment courseProgressInfo on CourseProgressInfo {\n progress\n isCompleted\n isApproved\n userPoints\n certificateKey\n certificateUrl\n courseHasCertificate\n}\n \n\n fragment courseWithoutChapters on Course {\n id\n version\n typename\n title\n slug\n tags\n duration\n progress\n points\n enrollmentDate\n createdAt\n updatedAt\n ttl\n versionId\n thumbnailUrl\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5236
|
-
export declare const CreateCourseDocument = "\n mutation createCourse($input: CreateCourseInput!) {\n createCourse(input: $input) {\n ...courseVersion\n }\n}\n \n fragment courseVersion on CourseVersion {\n ...courseVersionWithoutContent\n content\n}\n \n\n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5237
|
-
export declare const EditCourseDocument = "\n mutation editCourse($input: EditCourseInput!) {\n editCourse(input: $input) {\n ...courseVersion\n }\n}\n \n fragment courseVersion on CourseVersion {\n ...courseVersionWithoutContent\n content\n}\n \n\n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5238
|
-
export declare const UpdateCourseDocument = "\n mutation updateCourse($input: UpdateCourseInput!) {\n updateCourse(input: $input) {\n ...courseVersion\n }\n}\n \n fragment courseVersion on CourseVersion {\n ...courseVersionWithoutContent\n content\n}\n \n\n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5239
|
-
export declare const RemoveCourseDocument = "\n mutation removeCourse($input: RemoveCourseInput!) {\n removeCourse(input: $input) {\n ... on Course {\n ...course\n }\n ... on CourseVersion {\n ...courseVersion\n }\n }\n}\n \n fragment course on Course {\n ...courseWithoutContent\n content\n}\n \n\n fragment courseWithoutContent on Course {\n id\n version\n typename\n title\n slug\n tags\n duration\n progress\n points\n enrollmentDate\n createdAt\n updatedAt\n ttl\n versionId\n thumbnailUrl\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5240
|
-
export declare const EnrollCourseDocument = "\n mutation enrollCourse($input: EnrollCourseInput!) {\n enrollCourse(input: $input) {\n ...course\n }\n}\n \n fragment course on Course {\n ...courseWithoutContent\n content\n}\n \n\n fragment courseWithoutContent on Course {\n id\n version\n typename\n title\n slug\n tags\n duration\n progress\n points\n enrollmentDate\n createdAt\n updatedAt\n ttl\n versionId\n thumbnailUrl\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5244
|
+
export declare const ListEnrolledCoursesDocument = "\n query listEnrolledCourses($enrollmentStatus: EnrollmentStatus, $after: String, $limit: Int) {\n enrolledCourses(\n enrollmentStatus: $enrollmentStatus\n after: $after\n limit: $limit\n ) {\n nodes {\n ...courseUser\n course {\n ...courseWithoutChapters\n }\n }\n pageInfo {\n ...pageInfo\n }\n }\n}\n \n fragment courseUser on CourseUser {\n user {\n ...userInfo\n }\n startedAt\n completedAt\n progressInfo {\n ...courseProgressInfo\n }\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment courseProgressInfo on CourseProgressInfo {\n progress\n isCompleted\n isApproved\n userPoints\n certificateKey\n certificateUrl\n courseHasCertificate\n}\n \n\n fragment courseWithoutChapters on Course {\n id\n version\n typename\n title\n slug\n tags\n duration\n progress\n points\n enrollmentDate\n createdAt\n updatedAt\n ttl\n versionId\n thumbnailUrl\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment pageInfo on PageInfo {\n next\n hasNext\n}\n ";
|
|
5245
|
+
export declare const CreateCourseDocument = "\n mutation createCourse($input: CreateCourseInput!) {\n createCourse(input: $input) {\n ...courseVersion\n }\n}\n \n fragment courseVersion on CourseVersion {\n ...courseVersionWithoutContent\n content\n}\n \n\n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment courseChapterWithoutContent on CourseChapter {\n typename\n id\n version\n title\n slug\n duration\n progress\n entries {\n ...courseLessonWithoutContent\n ...courseQuizWithoutContent\n }\n}\n \n\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n \n\n fragment courseQuizWithoutContent on Quiz {\n ...quizWithoutContent\n completedDate\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n ";
|
|
5246
|
+
export declare const EditCourseDocument = "\n mutation editCourse($input: EditCourseInput!) {\n editCourse(input: $input) {\n ...courseVersion\n }\n}\n \n fragment courseVersion on CourseVersion {\n ...courseVersionWithoutContent\n content\n}\n \n\n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment courseChapterWithoutContent on CourseChapter {\n typename\n id\n version\n title\n slug\n duration\n progress\n entries {\n ...courseLessonWithoutContent\n ...courseQuizWithoutContent\n }\n}\n \n\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n \n\n fragment courseQuizWithoutContent on Quiz {\n ...quizWithoutContent\n completedDate\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n ";
|
|
5247
|
+
export declare const UpdateCourseDocument = "\n mutation updateCourse($input: UpdateCourseInput!) {\n updateCourse(input: $input) {\n ...courseVersion\n }\n}\n \n fragment courseVersion on CourseVersion {\n ...courseVersionWithoutContent\n content\n}\n \n\n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment courseChapterWithoutContent on CourseChapter {\n typename\n id\n version\n title\n slug\n duration\n progress\n entries {\n ...courseLessonWithoutContent\n ...courseQuizWithoutContent\n }\n}\n \n\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n \n\n fragment courseQuizWithoutContent on Quiz {\n ...quizWithoutContent\n completedDate\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n ";
|
|
5248
|
+
export declare const RemoveCourseDocument = "\n mutation removeCourse($input: RemoveCourseInput!) {\n removeCourse(input: $input) {\n ... on Course {\n ...course\n }\n ... on CourseVersion {\n ...courseVersion\n }\n }\n}\n \n fragment course on Course {\n ...courseWithoutContent\n content\n}\n \n\n fragment courseWithoutContent on Course {\n id\n version\n typename\n title\n slug\n tags\n duration\n progress\n points\n enrollmentDate\n createdAt\n updatedAt\n ttl\n versionId\n thumbnailUrl\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment courseChapterWithoutContent on CourseChapter {\n typename\n id\n version\n title\n slug\n duration\n progress\n entries {\n ...courseLessonWithoutContent\n ...courseQuizWithoutContent\n }\n}\n \n\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n \n\n fragment courseQuizWithoutContent on Quiz {\n ...quizWithoutContent\n completedDate\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment courseVersion on CourseVersion {\n ...courseVersionWithoutContent\n content\n}\n \n\n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n ";
|
|
5249
|
+
export declare const EnrollCourseDocument = "\n mutation enrollCourse($input: EnrollCourseInput!) {\n enrollCourse(input: $input) {\n ...course\n }\n}\n \n fragment course on Course {\n ...courseWithoutContent\n content\n}\n \n\n fragment courseWithoutContent on Course {\n id\n version\n typename\n title\n slug\n tags\n duration\n progress\n points\n enrollmentDate\n createdAt\n updatedAt\n ttl\n versionId\n thumbnailUrl\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment courseChapterWithoutContent on CourseChapter {\n typename\n id\n version\n title\n slug\n duration\n progress\n entries {\n ...courseLessonWithoutContent\n ...courseQuizWithoutContent\n }\n}\n \n\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n \n\n fragment courseQuizWithoutContent on Quiz {\n ...quizWithoutContent\n completedDate\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n ";
|
|
5241
5250
|
export declare const BatchEnrollCourseDocument = "\n mutation batchEnrollCourse($input: BatchEnrollCourseInput!) {\n batchEnrollCourse(input: $input)\n}\n ";
|
|
5242
|
-
export declare const UnenrollCourseDocument = "\n mutation unenrollCourse($input: UnEnrollCourseInput!) {\n unenrollCourse(input: $input) {\n ...course\n }\n}\n \n fragment course on Course {\n ...courseWithoutContent\n content\n}\n \n\n fragment courseWithoutContent on Course {\n id\n version\n typename\n title\n slug\n tags\n duration\n progress\n points\n enrollmentDate\n createdAt\n updatedAt\n ttl\n versionId\n thumbnailUrl\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5243
|
-
export declare const ReEnrollCourseDocument = "\n mutation reEnrollCourse($input: ReEnrollCourseInput!) {\n reEnrollCourse(input: $input) {\n ...course\n }\n}\n \n fragment course on Course {\n ...courseWithoutContent\n content\n}\n \n\n fragment courseWithoutContent on Course {\n id\n version\n typename\n title\n slug\n tags\n duration\n progress\n points\n enrollmentDate\n createdAt\n updatedAt\n ttl\n versionId\n thumbnailUrl\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5251
|
+
export declare const UnenrollCourseDocument = "\n mutation unenrollCourse($input: UnEnrollCourseInput!) {\n unenrollCourse(input: $input) {\n ...course\n }\n}\n \n fragment course on Course {\n ...courseWithoutContent\n content\n}\n \n\n fragment courseWithoutContent on Course {\n id\n version\n typename\n title\n slug\n tags\n duration\n progress\n points\n enrollmentDate\n createdAt\n updatedAt\n ttl\n versionId\n thumbnailUrl\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment courseChapterWithoutContent on CourseChapter {\n typename\n id\n version\n title\n slug\n duration\n progress\n entries {\n ...courseLessonWithoutContent\n ...courseQuizWithoutContent\n }\n}\n \n\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n \n\n fragment courseQuizWithoutContent on Quiz {\n ...quizWithoutContent\n completedDate\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n ";
|
|
5252
|
+
export declare const ReEnrollCourseDocument = "\n mutation reEnrollCourse($input: ReEnrollCourseInput!) {\n reEnrollCourse(input: $input) {\n ...course\n }\n}\n \n fragment course on Course {\n ...courseWithoutContent\n content\n}\n \n\n fragment courseWithoutContent on Course {\n id\n version\n typename\n title\n slug\n tags\n duration\n progress\n points\n enrollmentDate\n createdAt\n updatedAt\n ttl\n versionId\n thumbnailUrl\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment courseChapterWithoutContent on CourseChapter {\n typename\n id\n version\n title\n slug\n duration\n progress\n entries {\n ...courseLessonWithoutContent\n ...courseQuizWithoutContent\n }\n}\n \n\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n \n\n fragment courseQuizWithoutContent on Quiz {\n ...quizWithoutContent\n completedDate\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n ";
|
|
5244
5253
|
export declare const SubmitCourseQuizEntryResponseDocument = "\n mutation submitCourseQuizEntryResponse($input: SubmitCourseQuizEntryResponseInput!) {\n submitCourseQuizEntryResponse(input: $input) {\n ...submitCourseEntryFeedback\n }\n}\n \n fragment submitCourseEntryFeedback on SubmitCourseQuizEntryFeedback {\n maxAttemptsReached\n lastAttempt\n correct\n feedback\n response\n attempts\n}\n ";
|
|
5245
5254
|
export declare const SetCourseQuizSettingsDocument = "\n mutation setCourseQuizSettings($input: CourseQuizSettingsInput!) {\n setCourseQuizSettings(input: $input) {\n ...courseQuizSettings\n }\n}\n \n fragment courseQuizSettings on CourseQuizSettings {\n retriesOnWrongAnswer\n showGradeAfterSubmission\n showQuestionPoints\n minimumPointsPercentageForApproval\n shuffleQuestions\n}\n ";
|
|
5246
|
-
export declare const SetCourseGeneralSettingsDocument = "\n mutation setCourseGeneralSettings($input: CourseGeneralSettingsInput!) {\n setCourseGeneralSettings(input: $input) {\n ...courseGeneralSettings\n prerequisiteCourses {\n ...courseWithoutChapters\n }\n }\n}\n \n fragment courseGeneralSettings on CourseGeneralSettings {\n blockNavigationForDuration\n allowFreeNavigation\n prerequisiteCoursesIds\n}\n \n\n fragment courseWithoutChapters on Course {\n id\n version\n typename\n title\n slug\n tags\n duration\n progress\n points\n enrollmentDate\n createdAt\n updatedAt\n ttl\n versionId\n thumbnailUrl\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5255
|
+
export declare const SetCourseGeneralSettingsDocument = "\n mutation setCourseGeneralSettings($input: CourseGeneralSettingsInput!) {\n setCourseGeneralSettings(input: $input) {\n ...courseGeneralSettings\n prerequisiteCourses {\n ...courseWithoutChapters\n }\n }\n}\n \n fragment courseGeneralSettings on CourseGeneralSettings {\n blockNavigationForDuration\n allowFreeNavigation\n prerequisiteCoursesIds\n}\n \n\n fragment courseWithoutChapters on Course {\n id\n version\n typename\n title\n slug\n tags\n duration\n progress\n points\n enrollmentDate\n createdAt\n updatedAt\n ttl\n versionId\n thumbnailUrl\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n ";
|
|
5247
5256
|
export declare const SetCourseCertificateSettingsDocument = "\n mutation setCourseCertificateSettings($input: CourseCertificateSettingsInput!) {\n setCourseCertificateSettings(input: $input) {\n ...courseCertificateSettings\n }\n}\n \n fragment courseCertificateSettings on CourseCertificateSettings {\n templateId\n templateUrl\n}\n ";
|
|
5248
5257
|
export declare const RemoveCourseCertificateSettingsDocument = "\n mutation removeCourseCertificateSettings($input: RemoveCourseCertificateSettingsInput!) {\n removeCourseCertificateSettings(input: $input) {\n ...courseCertificateSettings\n }\n}\n \n fragment courseCertificateSettings on CourseCertificateSettings {\n templateId\n templateUrl\n}\n ";
|
|
5249
5258
|
export declare const RegenerateCourseCertificateDocument = "\n mutation regenerateCourseCertificate($input: RegenerateCourseCertificateInput!) {\n regenerateCourseCertificate(input: $input)\n}\n ";
|
|
5250
|
-
export declare const SubmitCourseVersionForApprovalDocument = "\n mutation submitCourseVersionForApproval($input: SubmitCourseVersionForApprovalInput!) {\n submitCourseVersionForApproval(input: $input) {\n ...courseVersionWithApprovalFlow\n }\n}\n \n fragment courseVersionWithApprovalFlow on CourseVersion {\n ...courseVersion\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment courseVersion on CourseVersion {\n ...courseVersionWithoutContent\n content\n}\n \n\n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5251
|
-
export declare const RequestChangesOnCourseVersionDocument = "\n mutation requestChangesOnCourseVersion($input: RequestChangesOnCourseVersionInput!) {\n requestChangesOnCourseVersion(input: $input) {\n ...courseVersionWithApprovalFlow\n }\n}\n \n fragment courseVersionWithApprovalFlow on CourseVersion {\n ...courseVersion\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment courseVersion on CourseVersion {\n ...courseVersionWithoutContent\n content\n}\n \n\n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5252
|
-
export declare const ApproveCourseVersionDocument = "\n mutation approveCourseVersion($input: ApproveCourseVersionInput!) {\n approveCourseVersion(input: $input) {\n ...courseVersionWithApprovalFlow\n }\n}\n \n fragment courseVersionWithApprovalFlow on CourseVersion {\n ...courseVersion\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment courseVersion on CourseVersion {\n ...courseVersionWithoutContent\n content\n}\n \n\n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5253
|
-
export declare const PromoteCourseVersionDocument = "\n mutation promoteCourseVersion($input: PromoteCourseVersionInput!) {\n promoteCourseVersion(input: $input) {\n ...course\n }\n}\n \n fragment course on Course {\n ...courseWithoutContent\n content\n}\n \n\n fragment courseWithoutContent on Course {\n id\n version\n typename\n title\n slug\n tags\n duration\n progress\n points\n enrollmentDate\n createdAt\n updatedAt\n ttl\n versionId\n thumbnailUrl\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5254
|
-
export declare const ApproveAndPromoteCourseVersionDocument = "\n mutation approveAndPromoteCourseVersion($input: ApproveAndPromoteCourseVersionInput!) {\n approveAndPromoteCourseVersion(input: $input) {\n ...course\n ...courseVersionWithApprovalFlow\n }\n}\n \n fragment course on Course {\n ...courseWithoutContent\n content\n}\n \n\n fragment courseWithoutContent on Course {\n id\n version\n typename\n title\n slug\n tags\n duration\n progress\n points\n enrollmentDate\n createdAt\n updatedAt\n ttl\n versionId\n thumbnailUrl\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5255
|
-
export declare const CreateCourseChapterDocument = "\n mutation createCourseChapter($input: CreateCourseChapterInput!) {\n createCourseChapter(input: $input) {\n course {\n ...courseVersion\n }\n chapter {\n ...courseChapter\n }\n }\n}\n \n fragment courseVersion on CourseVersion {\n ...courseVersionWithoutContent\n content\n}\n \n\n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5256
|
-
export declare const UpdateCourseChapterDocument = "\n mutation updateCourseChapter($input: UpdateCourseChapterInput!) {\n updateCourseChapter(input: $input) {\n course {\n ...courseVersion\n }\n chapter {\n ...courseChapter\n }\n }\n}\n \n fragment courseVersion on CourseVersion {\n ...courseVersionWithoutContent\n content\n}\n \n\n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5257
|
-
export declare const RemoveCourseChapterDocument = "\n mutation removeCourseChapter($input: RemoveCourseChapterInput!) {\n removeCourseChapter(input: $input) {\n course {\n ...courseVersion\n }\n chapter {\n ...courseChapter\n }\n }\n}\n \n fragment courseVersion on CourseVersion {\n ...courseVersionWithoutContent\n content\n}\n \n\n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5258
|
-
export declare const CreateCourseLessonDocument = "\n mutation createCourseLesson($input: CreateCourseLessonInput!) {\n createCourseLesson(input: $input) {\n course {\n ...courseVersion\n }\n chapter {\n ...courseChapter\n }\n lesson {\n ...courseLesson\n }\n }\n}\n \n fragment courseVersion on CourseVersion {\n ...courseVersionWithoutContent\n content\n}\n \n\n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5259
|
-
export declare const CreateCourseQuizDocument = "\n mutation createCourseQuiz($input: CreateCourseQuizInput!) {\n createCourseQuiz(input: $input) {\n course {\n ...courseVersion\n }\n chapter {\n ...courseChapter\n }\n quiz {\n ...courseQuiz\n }\n }\n}\n \n fragment courseVersion on CourseVersion {\n ...courseVersionWithoutContent\n content\n}\n \n\n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5260
|
-
export declare const UpdateCourseLessonDocument = "\n mutation updateCourseLesson($input: UpdateCourseLessonInput!) {\n updateCourseLesson(input: $input) {\n course {\n ...courseVersion\n }\n chapter {\n ...courseChapter\n }\n lesson {\n ...courseLesson\n }\n }\n}\n \n fragment courseVersion on CourseVersion {\n ...courseVersionWithoutContent\n content\n}\n \n\n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5261
|
-
export declare const RemoveCourseEntryDocument = "\n mutation removeCourseEntry($input: RemoveCourseEntryInput!) {\n removeCourseEntry(input: $input) {\n course {\n ...courseVersion\n }\n chapter {\n ...courseChapter\n }\n entry {\n ...courseEntry\n }\n }\n}\n \n fragment courseVersion on CourseVersion {\n ...courseVersionWithoutContent\n content\n}\n \n\n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5262
|
-
export declare const CompleteCourseEntryDocument = "\n mutation completeCourseEntry($input: CompleteCourseEntryInput!) {\n completeCourseEntry(input: $input) {\n ...courseEntry\n }\n}\n \n fragment courseEntry on CourseEntry {\n ...courseLesson\n ...courseQuiz\n}\n \n\n fragment courseLesson on CourseLesson {\n ...courseLessonWithoutContent\n content\n}\n \n\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n \n\n fragment courseQuiz on Quiz {\n ...quiz\n completedDate\n}\n \n\n fragment quiz on Quiz {\n ...quizWithoutContent\n content\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5259
|
+
export declare const SubmitCourseVersionForApprovalDocument = "\n mutation submitCourseVersionForApproval($input: SubmitCourseVersionForApprovalInput!) {\n submitCourseVersionForApproval(input: $input) {\n ...courseVersionWithApprovalFlow\n }\n}\n \n fragment courseVersionWithApprovalFlow on CourseVersion {\n ...courseVersion\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment courseVersion on CourseVersion {\n ...courseVersionWithoutContent\n content\n}\n \n\n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment courseChapterWithoutContent on CourseChapter {\n typename\n id\n version\n title\n slug\n duration\n progress\n entries {\n ...courseLessonWithoutContent\n ...courseQuizWithoutContent\n }\n}\n \n\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n \n\n fragment courseQuizWithoutContent on Quiz {\n ...quizWithoutContent\n completedDate\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment approvalFlowExecution on ApprovalFlowExecution {\n id\n status\n currentStepId\n flow {\n ...executableApprovalFlow\n }\n}\n \n\n fragment executableApprovalFlow on ExecutableApprovalFlow {\n id\n title\n steps {\n id\n status\n title\n approvers {\n ...subject\n }\n minimumApprovals\n approvals {\n ...userInfo\n }\n rejections {\n ...userInfo\n }\n autoProceedOnMinimumReached\n }\n}\n \n\n fragment subject on Subject {\n __typename\n ...userInfo\n ...group\n}\n \n\n fragment group on Group {\n groupName\n description\n precedence\n}\n ";
|
|
5260
|
+
export declare const RequestChangesOnCourseVersionDocument = "\n mutation requestChangesOnCourseVersion($input: RequestChangesOnCourseVersionInput!) {\n requestChangesOnCourseVersion(input: $input) {\n ...courseVersionWithApprovalFlow\n }\n}\n \n fragment courseVersionWithApprovalFlow on CourseVersion {\n ...courseVersion\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment courseVersion on CourseVersion {\n ...courseVersionWithoutContent\n content\n}\n \n\n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment courseChapterWithoutContent on CourseChapter {\n typename\n id\n version\n title\n slug\n duration\n progress\n entries {\n ...courseLessonWithoutContent\n ...courseQuizWithoutContent\n }\n}\n \n\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n \n\n fragment courseQuizWithoutContent on Quiz {\n ...quizWithoutContent\n completedDate\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment approvalFlowExecution on ApprovalFlowExecution {\n id\n status\n currentStepId\n flow {\n ...executableApprovalFlow\n }\n}\n \n\n fragment executableApprovalFlow on ExecutableApprovalFlow {\n id\n title\n steps {\n id\n status\n title\n approvers {\n ...subject\n }\n minimumApprovals\n approvals {\n ...userInfo\n }\n rejections {\n ...userInfo\n }\n autoProceedOnMinimumReached\n }\n}\n \n\n fragment subject on Subject {\n __typename\n ...userInfo\n ...group\n}\n \n\n fragment group on Group {\n groupName\n description\n precedence\n}\n ";
|
|
5261
|
+
export declare const ApproveCourseVersionDocument = "\n mutation approveCourseVersion($input: ApproveCourseVersionInput!) {\n approveCourseVersion(input: $input) {\n ...courseVersionWithApprovalFlow\n }\n}\n \n fragment courseVersionWithApprovalFlow on CourseVersion {\n ...courseVersion\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment courseVersion on CourseVersion {\n ...courseVersionWithoutContent\n content\n}\n \n\n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment courseChapterWithoutContent on CourseChapter {\n typename\n id\n version\n title\n slug\n duration\n progress\n entries {\n ...courseLessonWithoutContent\n ...courseQuizWithoutContent\n }\n}\n \n\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n \n\n fragment courseQuizWithoutContent on Quiz {\n ...quizWithoutContent\n completedDate\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment approvalFlowExecution on ApprovalFlowExecution {\n id\n status\n currentStepId\n flow {\n ...executableApprovalFlow\n }\n}\n \n\n fragment executableApprovalFlow on ExecutableApprovalFlow {\n id\n title\n steps {\n id\n status\n title\n approvers {\n ...subject\n }\n minimumApprovals\n approvals {\n ...userInfo\n }\n rejections {\n ...userInfo\n }\n autoProceedOnMinimumReached\n }\n}\n \n\n fragment subject on Subject {\n __typename\n ...userInfo\n ...group\n}\n \n\n fragment group on Group {\n groupName\n description\n precedence\n}\n ";
|
|
5262
|
+
export declare const PromoteCourseVersionDocument = "\n mutation promoteCourseVersion($input: PromoteCourseVersionInput!) {\n promoteCourseVersion(input: $input) {\n ...course\n }\n}\n \n fragment course on Course {\n ...courseWithoutContent\n content\n}\n \n\n fragment courseWithoutContent on Course {\n id\n version\n typename\n title\n slug\n tags\n duration\n progress\n points\n enrollmentDate\n createdAt\n updatedAt\n ttl\n versionId\n thumbnailUrl\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment courseChapterWithoutContent on CourseChapter {\n typename\n id\n version\n title\n slug\n duration\n progress\n entries {\n ...courseLessonWithoutContent\n ...courseQuizWithoutContent\n }\n}\n \n\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n \n\n fragment courseQuizWithoutContent on Quiz {\n ...quizWithoutContent\n completedDate\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n ";
|
|
5263
|
+
export declare const ApproveAndPromoteCourseVersionDocument = "\n mutation approveAndPromoteCourseVersion($input: ApproveAndPromoteCourseVersionInput!) {\n approveAndPromoteCourseVersion(input: $input) {\n ...course\n ...courseVersionWithApprovalFlow\n }\n}\n \n fragment course on Course {\n ...courseWithoutContent\n content\n}\n \n\n fragment courseWithoutContent on Course {\n id\n version\n typename\n title\n slug\n tags\n duration\n progress\n points\n enrollmentDate\n createdAt\n updatedAt\n ttl\n versionId\n thumbnailUrl\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment courseChapterWithoutContent on CourseChapter {\n typename\n id\n version\n title\n slug\n duration\n progress\n entries {\n ...courseLessonWithoutContent\n ...courseQuizWithoutContent\n }\n}\n \n\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n \n\n fragment courseQuizWithoutContent on Quiz {\n ...quizWithoutContent\n completedDate\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment courseVersionWithApprovalFlow on CourseVersion {\n ...courseVersion\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment courseVersion on CourseVersion {\n ...courseVersionWithoutContent\n content\n}\n \n\n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n \n\n fragment approvalFlowExecution on ApprovalFlowExecution {\n id\n status\n currentStepId\n flow {\n ...executableApprovalFlow\n }\n}\n \n\n fragment executableApprovalFlow on ExecutableApprovalFlow {\n id\n title\n steps {\n id\n status\n title\n approvers {\n ...subject\n }\n minimumApprovals\n approvals {\n ...userInfo\n }\n rejections {\n ...userInfo\n }\n autoProceedOnMinimumReached\n }\n}\n \n\n fragment subject on Subject {\n __typename\n ...userInfo\n ...group\n}\n \n\n fragment group on Group {\n groupName\n description\n precedence\n}\n ";
|
|
5264
|
+
export declare const CreateCourseChapterDocument = "\n mutation createCourseChapter($input: CreateCourseChapterInput!) {\n createCourseChapter(input: $input) {\n course {\n ...courseVersion\n }\n chapter {\n ...courseChapter\n }\n }\n}\n \n fragment courseVersion on CourseVersion {\n ...courseVersionWithoutContent\n content\n}\n \n\n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment courseChapterWithoutContent on CourseChapter {\n typename\n id\n version\n title\n slug\n duration\n progress\n entries {\n ...courseLessonWithoutContent\n ...courseQuizWithoutContent\n }\n}\n \n\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n \n\n fragment courseQuizWithoutContent on Quiz {\n ...quizWithoutContent\n completedDate\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment courseChapter on CourseChapter {\n ...courseChapterWithoutContent\n content\n}\n ";
|
|
5265
|
+
export declare const UpdateCourseChapterDocument = "\n mutation updateCourseChapter($input: UpdateCourseChapterInput!) {\n updateCourseChapter(input: $input) {\n course {\n ...courseVersion\n }\n chapter {\n ...courseChapter\n }\n }\n}\n \n fragment courseVersion on CourseVersion {\n ...courseVersionWithoutContent\n content\n}\n \n\n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment courseChapterWithoutContent on CourseChapter {\n typename\n id\n version\n title\n slug\n duration\n progress\n entries {\n ...courseLessonWithoutContent\n ...courseQuizWithoutContent\n }\n}\n \n\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n \n\n fragment courseQuizWithoutContent on Quiz {\n ...quizWithoutContent\n completedDate\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment courseChapter on CourseChapter {\n ...courseChapterWithoutContent\n content\n}\n ";
|
|
5266
|
+
export declare const RemoveCourseChapterDocument = "\n mutation removeCourseChapter($input: RemoveCourseChapterInput!) {\n removeCourseChapter(input: $input) {\n course {\n ...courseVersion\n }\n chapter {\n ...courseChapter\n }\n }\n}\n \n fragment courseVersion on CourseVersion {\n ...courseVersionWithoutContent\n content\n}\n \n\n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment courseChapterWithoutContent on CourseChapter {\n typename\n id\n version\n title\n slug\n duration\n progress\n entries {\n ...courseLessonWithoutContent\n ...courseQuizWithoutContent\n }\n}\n \n\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n \n\n fragment courseQuizWithoutContent on Quiz {\n ...quizWithoutContent\n completedDate\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment courseChapter on CourseChapter {\n ...courseChapterWithoutContent\n content\n}\n ";
|
|
5267
|
+
export declare const CreateCourseLessonDocument = "\n mutation createCourseLesson($input: CreateCourseLessonInput!) {\n createCourseLesson(input: $input) {\n course {\n ...courseVersion\n }\n chapter {\n ...courseChapter\n }\n lesson {\n ...courseLesson\n }\n }\n}\n \n fragment courseVersion on CourseVersion {\n ...courseVersionWithoutContent\n content\n}\n \n\n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment courseChapterWithoutContent on CourseChapter {\n typename\n id\n version\n title\n slug\n duration\n progress\n entries {\n ...courseLessonWithoutContent\n ...courseQuizWithoutContent\n }\n}\n \n\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n \n\n fragment courseQuizWithoutContent on Quiz {\n ...quizWithoutContent\n completedDate\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment courseChapter on CourseChapter {\n ...courseChapterWithoutContent\n content\n}\n \n\n fragment courseLesson on CourseLesson {\n ...courseLessonWithoutContent\n content\n}\n ";
|
|
5268
|
+
export declare const CreateCourseQuizDocument = "\n mutation createCourseQuiz($input: CreateCourseQuizInput!) {\n createCourseQuiz(input: $input) {\n course {\n ...courseVersion\n }\n chapter {\n ...courseChapter\n }\n quiz {\n ...courseQuiz\n }\n }\n}\n \n fragment courseVersion on CourseVersion {\n ...courseVersionWithoutContent\n content\n}\n \n\n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment courseChapterWithoutContent on CourseChapter {\n typename\n id\n version\n title\n slug\n duration\n progress\n entries {\n ...courseLessonWithoutContent\n ...courseQuizWithoutContent\n }\n}\n \n\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n \n\n fragment courseQuizWithoutContent on Quiz {\n ...quizWithoutContent\n completedDate\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment courseChapter on CourseChapter {\n ...courseChapterWithoutContent\n content\n}\n \n\n fragment courseQuiz on Quiz {\n ...quiz\n completedDate\n}\n \n\n fragment quiz on Quiz {\n ...quizWithoutContent\n content\n}\n ";
|
|
5269
|
+
export declare const UpdateCourseLessonDocument = "\n mutation updateCourseLesson($input: UpdateCourseLessonInput!) {\n updateCourseLesson(input: $input) {\n course {\n ...courseVersion\n }\n chapter {\n ...courseChapter\n }\n lesson {\n ...courseLesson\n }\n }\n}\n \n fragment courseVersion on CourseVersion {\n ...courseVersionWithoutContent\n content\n}\n \n\n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment courseChapterWithoutContent on CourseChapter {\n typename\n id\n version\n title\n slug\n duration\n progress\n entries {\n ...courseLessonWithoutContent\n ...courseQuizWithoutContent\n }\n}\n \n\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n \n\n fragment courseQuizWithoutContent on Quiz {\n ...quizWithoutContent\n completedDate\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment courseChapter on CourseChapter {\n ...courseChapterWithoutContent\n content\n}\n \n\n fragment courseLesson on CourseLesson {\n ...courseLessonWithoutContent\n content\n}\n ";
|
|
5270
|
+
export declare const RemoveCourseEntryDocument = "\n mutation removeCourseEntry($input: RemoveCourseEntryInput!) {\n removeCourseEntry(input: $input) {\n course {\n ...courseVersion\n }\n chapter {\n ...courseChapter\n }\n entry {\n ...courseEntry\n }\n }\n}\n \n fragment courseVersion on CourseVersion {\n ...courseVersionWithoutContent\n content\n}\n \n\n fragment courseVersionWithoutContent on CourseVersion {\n id\n version\n typename\n title\n slug\n tags\n duration\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n status\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment courseChapterWithoutContent on CourseChapter {\n typename\n id\n version\n title\n slug\n duration\n progress\n entries {\n ...courseLessonWithoutContent\n ...courseQuizWithoutContent\n }\n}\n \n\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n \n\n fragment courseQuizWithoutContent on Quiz {\n ...quizWithoutContent\n completedDate\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment courseChapter on CourseChapter {\n ...courseChapterWithoutContent\n content\n}\n \n\n fragment courseEntry on CourseEntry {\n ...courseLesson\n ...courseQuiz\n}\n \n\n fragment courseLesson on CourseLesson {\n ...courseLessonWithoutContent\n content\n}\n \n\n fragment courseQuiz on Quiz {\n ...quiz\n completedDate\n}\n \n\n fragment quiz on Quiz {\n ...quizWithoutContent\n content\n}\n ";
|
|
5271
|
+
export declare const CompleteCourseEntryDocument = "\n mutation completeCourseEntry($input: CompleteCourseEntryInput!) {\n completeCourseEntry(input: $input) {\n ...courseEntry\n }\n}\n \n fragment courseEntry on CourseEntry {\n ...courseLesson\n ...courseQuiz\n}\n \n\n fragment courseLesson on CourseLesson {\n ...courseLessonWithoutContent\n content\n}\n \n\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n \n\n fragment courseQuiz on Quiz {\n ...quiz\n completedDate\n}\n \n\n fragment quiz on Quiz {\n ...quizWithoutContent\n content\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n ";
|
|
5263
5272
|
export declare const GetDiscussionsDocument = "\n query getDiscussions($parent: ID!) {\n discussions(parent: $parent) {\n nodes {\n ...discussion\n }\n pageInfo {\n ...pageInfo\n }\n }\n}\n \n fragment discussion on Discussion {\n id\n typename\n title\n content\n slug\n tags\n createdAt\n updatedAt\n replies\n edited\n parent\n authors {\n ...userInfo\n }\n reactions {\n ...reactions\n }\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment reactions on ReactionsSummary {\n counts {\n positive1\n positive2\n positive3\n positive4\n positive5\n negative1\n negative2\n negative3\n negative4\n negative5\n total\n }\n mine\n}\n \n\n fragment pageInfo on PageInfo {\n next\n hasNext\n}\n ";
|
|
5264
|
-
export declare const GetDiscussionDocument = "\n query getDiscussion($id: ID!) {\n trail(id: $id) {\n ...record\n }\n discussion(id: $id) {\n ...discussion\n }\n}\n \n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5273
|
+
export declare const GetDiscussionDocument = "\n query getDiscussion($id: ID!) {\n trail(id: $id) {\n ...record\n }\n discussion(id: $id) {\n ...discussion\n }\n}\n \n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment discussion on Discussion {\n id\n typename\n title\n content\n slug\n tags\n createdAt\n updatedAt\n replies\n edited\n parent\n authors {\n ...userInfo\n }\n reactions {\n ...reactions\n }\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment reactions on ReactionsSummary {\n counts {\n positive1\n positive2\n positive3\n positive4\n positive5\n negative1\n negative2\n negative3\n negative4\n negative5\n total\n }\n mine\n}\n ";
|
|
5265
5274
|
export declare const CreateDiscussionDocument = "\n mutation createDiscussion($input: CreateDiscussionInput!) {\n createDiscussion(input: $input) {\n ...discussion\n }\n}\n \n fragment discussion on Discussion {\n id\n typename\n title\n content\n slug\n tags\n createdAt\n updatedAt\n replies\n edited\n parent\n authors {\n ...userInfo\n }\n reactions {\n ...reactions\n }\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment reactions on ReactionsSummary {\n counts {\n positive1\n positive2\n positive3\n positive4\n positive5\n negative1\n negative2\n negative3\n negative4\n negative5\n total\n }\n mine\n}\n ";
|
|
5266
5275
|
export declare const UpdateDiscussionDocument = "\n mutation updateDiscussion($input: UpdateDiscussionInput!) {\n updateDiscussion(input: $input) {\n ...discussion\n }\n}\n \n fragment discussion on Discussion {\n id\n typename\n title\n content\n slug\n tags\n createdAt\n updatedAt\n replies\n edited\n parent\n authors {\n ...userInfo\n }\n reactions {\n ...reactions\n }\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment reactions on ReactionsSummary {\n counts {\n positive1\n positive2\n positive3\n positive4\n positive5\n negative1\n negative2\n negative3\n negative4\n negative5\n total\n }\n mine\n}\n ";
|
|
5267
5276
|
export declare const RemoveDiscussionDocument = "\n mutation removeDiscussion($input: RemoveDiscussionInput!) {\n removeDiscussion(input: $input) {\n ...discussion\n }\n}\n \n fragment discussion on Discussion {\n id\n typename\n title\n content\n slug\n tags\n createdAt\n updatedAt\n replies\n edited\n parent\n authors {\n ...userInfo\n }\n reactions {\n ...reactions\n }\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment reactions on ReactionsSummary {\n counts {\n positive1\n positive2\n positive3\n positive4\n positive5\n negative1\n negative2\n negative3\n negative4\n negative5\n total\n }\n mine\n}\n ";
|
|
5268
|
-
export declare const GetDocDocument = "\n query getDoc($id: ID!) {\n trail(id: $id) {\n ...record\n }\n docSettings(id: $id, scopes: \"content\") {\n ...docSettings\n }\n doc(id: $id) {\n ...doc\n ...docVersion\n }\n}\n \n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5269
|
-
export declare const GetDocsDocument = "\n query getDocs($parent: ID!, $after: String, $limit: Int) {\n docs(parent: $parent, after: $after, limit: $limit) {\n nodes {\n ...doc\n }\n pageInfo {\n ...pageInfo\n }\n }\n}\n \n fragment doc on Doc {\n ...docWithoutContent\n content\n}\n \n\n fragment docWithoutContent on Doc {\n id\n version\n typename\n origin\n identifier\n prefixCode\n title\n slug\n tags\n entities\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n toc\n showToc\n features\n references\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5270
|
-
export declare const GetDocVersionsDocument = "\n query getDocVersions($id: ID!, $after: String, $limit: Int) {\n docVersions(id: $id, after: $after, limit: $limit) {\n nodes {\n ...docVersionWithoutContent\n diff {\n title\n content\n }\n }\n pageInfo {\n ...pageInfo\n }\n }\n}\n \n fragment docVersionWithoutContent on DocVersion {\n id\n typename\n prefixCode\n title\n slug\n tags\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n status\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5277
|
+
export declare const GetDocDocument = "\n query getDoc($id: ID!) {\n trail(id: $id) {\n ...record\n }\n docSettings(id: $id, scopes: \"content\") {\n ...docSettings\n }\n doc(id: $id) {\n ...doc\n ...docVersion\n }\n}\n \n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment docSettings on DocSettings {\n content {\n ...docContentSettings\n }\n}\n \n\n fragment docContentSettings on DocContentSettings {\n daysAfterPublishToRequireReview\n dateToRequireReview\n}\n \n\n fragment doc on Doc {\n ...docWithoutContent\n content\n}\n \n\n fragment docWithoutContent on Doc {\n id\n version\n typename\n origin\n identifier\n prefixCode\n title\n slug\n tags\n entities\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n toc\n showToc\n features\n references\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment docVersion on DocVersion {\n id\n typename\n prefixCode\n title\n slug\n content\n tags\n createdAt\n updatedAt\n ttl\n toc\n showToc\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n status\n parentSymlinks\n features\n references\n diff {\n title\n content\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment approvalFlowExecution on ApprovalFlowExecution {\n id\n status\n currentStepId\n flow {\n ...executableApprovalFlow\n }\n}\n \n\n fragment executableApprovalFlow on ExecutableApprovalFlow {\n id\n title\n steps {\n id\n status\n title\n approvers {\n ...subject\n }\n minimumApprovals\n approvals {\n ...userInfo\n }\n rejections {\n ...userInfo\n }\n autoProceedOnMinimumReached\n }\n}\n \n\n fragment subject on Subject {\n __typename\n ...userInfo\n ...group\n}\n \n\n fragment group on Group {\n groupName\n description\n precedence\n}\n ";
|
|
5278
|
+
export declare const GetDocsDocument = "\n query getDocs($parent: ID!, $after: String, $limit: Int) {\n docs(parent: $parent, after: $after, limit: $limit) {\n nodes {\n ...doc\n }\n pageInfo {\n ...pageInfo\n }\n }\n}\n \n fragment doc on Doc {\n ...docWithoutContent\n content\n}\n \n\n fragment docWithoutContent on Doc {\n id\n version\n typename\n origin\n identifier\n prefixCode\n title\n slug\n tags\n entities\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n toc\n showToc\n features\n references\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment pageInfo on PageInfo {\n next\n hasNext\n}\n ";
|
|
5279
|
+
export declare const GetDocVersionsDocument = "\n query getDocVersions($id: ID!, $after: String, $limit: Int) {\n docVersions(id: $id, after: $after, limit: $limit) {\n nodes {\n ...docVersionWithoutContent\n diff {\n title\n content\n }\n }\n pageInfo {\n ...pageInfo\n }\n }\n}\n \n fragment docVersionWithoutContent on DocVersion {\n id\n typename\n prefixCode\n title\n slug\n tags\n createdAt\n updatedAt\n ttl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n status\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment pageInfo on PageInfo {\n next\n hasNext\n}\n ";
|
|
5271
5280
|
export declare const GetDocContentAsMarkdownDocument = "\n query getDocContentAsMarkdown($id: ID!) {\n docContentAsMarkdown(id: $id)\n}\n ";
|
|
5272
5281
|
export declare const GetDocSettingsDocument = "\n query getDocSettings($id: ID!, $scopes: [String!]) {\n docSettings(id: $id, scopes: $scopes) {\n ...docSettings\n }\n}\n \n fragment docSettings on DocSettings {\n content {\n ...docContentSettings\n }\n}\n \n\n fragment docContentSettings on DocContentSettings {\n daysAfterPublishToRequireReview\n dateToRequireReview\n}\n ";
|
|
5273
5282
|
export declare const CompareDocsDocument = "\n query compareDocs($id1: ID!, $id2: ID!) {\n compareDocs(id1: $id1, id2: $id2) {\n diff1 {\n title\n content\n }\n diff2 {\n title\n content\n }\n }\n}\n ";
|
|
5274
|
-
export declare const GetRecentlyViewedDocsDocument = "\n query getRecentlyViewedDocs($userId: ID!) {\n getRecentlyViewedDocs(userId: $userId) {\n ...record\n }\n}\n \n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5275
|
-
export declare const CreateDocDocument = "\n mutation createDoc($input: CreateDocInput!) {\n createDoc(input: $input) {\n ...docVersion\n }\n}\n \n fragment docVersion on DocVersion {\n id\n typename\n prefixCode\n title\n slug\n content\n tags\n createdAt\n updatedAt\n ttl\n toc\n showToc\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n status\n parentSymlinks\n features\n references\n diff {\n title\n content\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5276
|
-
export declare const EditDocDocument = "\n mutation editDoc($input: EditDocInput!) {\n editDoc(input: $input) {\n ...docVersion\n ...formResponse\n }\n}\n \n fragment docVersion on DocVersion {\n id\n typename\n prefixCode\n title\n slug\n content\n tags\n createdAt\n updatedAt\n ttl\n toc\n showToc\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n status\n parentSymlinks\n features\n references\n diff {\n title\n content\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5283
|
+
export declare const GetRecentlyViewedDocsDocument = "\n query getRecentlyViewedDocs($userId: ID!) {\n getRecentlyViewedDocs(userId: $userId) {\n ...record\n }\n}\n \n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n ";
|
|
5284
|
+
export declare const CreateDocDocument = "\n mutation createDoc($input: CreateDocInput!) {\n createDoc(input: $input) {\n ...docVersion\n }\n}\n \n fragment docVersion on DocVersion {\n id\n typename\n prefixCode\n title\n slug\n content\n tags\n createdAt\n updatedAt\n ttl\n toc\n showToc\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n status\n parentSymlinks\n features\n references\n diff {\n title\n content\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment approvalFlowExecution on ApprovalFlowExecution {\n id\n status\n currentStepId\n flow {\n ...executableApprovalFlow\n }\n}\n \n\n fragment executableApprovalFlow on ExecutableApprovalFlow {\n id\n title\n steps {\n id\n status\n title\n approvers {\n ...subject\n }\n minimumApprovals\n approvals {\n ...userInfo\n }\n rejections {\n ...userInfo\n }\n autoProceedOnMinimumReached\n }\n}\n \n\n fragment subject on Subject {\n __typename\n ...userInfo\n ...group\n}\n \n\n fragment group on Group {\n groupName\n description\n precedence\n}\n ";
|
|
5285
|
+
export declare const EditDocDocument = "\n mutation editDoc($input: EditDocInput!) {\n editDoc(input: $input) {\n ...docVersion\n ...formResponse\n }\n}\n \n fragment docVersion on DocVersion {\n id\n typename\n prefixCode\n title\n slug\n content\n tags\n createdAt\n updatedAt\n ttl\n toc\n showToc\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n status\n parentSymlinks\n features\n references\n diff {\n title\n content\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment approvalFlowExecution on ApprovalFlowExecution {\n id\n status\n currentStepId\n flow {\n ...executableApprovalFlow\n }\n}\n \n\n fragment executableApprovalFlow on ExecutableApprovalFlow {\n id\n title\n steps {\n id\n status\n title\n approvers {\n ...subject\n }\n minimumApprovals\n approvals {\n ...userInfo\n }\n rejections {\n ...userInfo\n }\n autoProceedOnMinimumReached\n }\n}\n \n\n fragment subject on Subject {\n __typename\n ...userInfo\n ...group\n}\n \n\n fragment group on Group {\n groupName\n description\n precedence\n}\n \n\n fragment formResponse on FormResponse {\n id\n typename\n title\n tags\n slug\n createdAt\n updatedAt\n doc {\n ...docWithoutContent\n }\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n form {\n ...formWithSections\n }\n}\n \n\n fragment docWithoutContent on Doc {\n id\n version\n typename\n origin\n identifier\n prefixCode\n title\n slug\n tags\n entities\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n toc\n showToc\n features\n references\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment formWithSections on Form {\n ...formWithoutContent\n content\n sections {\n ...formSection\n }\n}\n \n\n fragment formWithoutContent on Form {\n id\n version\n typename\n slug\n title\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n}\n \n\n fragment formSection on FormSection {\n ...formSectionWithoutContent\n content\n fields {\n ...formField\n }\n}\n \n\n fragment formSectionWithoutContent on FormSection {\n id\n typename\n title\n createdAt\n updatedAt\n fieldIds\n}\n \n\n fragment formField on FormField {\n id\n typename\n type\n label\n description\n required\n value\n}\n ";
|
|
5277
5286
|
export declare const UpdateDocDocument = "\n mutation updateDoc($input: UpdateDocInput!) {\n updateDoc(input: $input) {\n ...docVersionForUpdate\n }\n}\n \n fragment docVersionForUpdate on DocVersion {\n id\n typename\n prefixCode\n title\n slug\n content\n tags\n createdAt\n updatedAt\n toc\n showToc\n status\n features\n references\n}\n ";
|
|
5278
|
-
export declare const RemoveDocDocument = "\n mutation removeDoc($input: RemoveDocInput!) {\n removeDoc(input: $input) {\n ... on Doc {\n ...doc\n }\n ... on DocVersion {\n ...docVersion\n }\n }\n}\n \n fragment doc on Doc {\n ...docWithoutContent\n content\n}\n \n\n fragment docWithoutContent on Doc {\n id\n version\n typename\n origin\n identifier\n prefixCode\n title\n slug\n tags\n entities\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n toc\n showToc\n features\n references\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5279
|
-
export declare const CloneDocDocument = "\n mutation cloneDoc($input: CloneDocInput!) {\n cloneDoc(input: $input) {\n ...docVersion\n }\n}\n \n fragment docVersion on DocVersion {\n id\n typename\n prefixCode\n title\n slug\n content\n tags\n createdAt\n updatedAt\n ttl\n toc\n showToc\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n status\n parentSymlinks\n features\n references\n diff {\n title\n content\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5280
|
-
export declare const GenerateAndSetPrefixCodeForDocDocument = "\n mutation generateAndSetPrefixCodeForDoc($input: GenerateAndSetPrefixCodeForDocInput!) {\n generateAndSetPrefixCodeForDoc(input: $input) {\n ...docVersion\n }\n}\n \n fragment docVersion on DocVersion {\n id\n typename\n prefixCode\n title\n slug\n content\n tags\n createdAt\n updatedAt\n ttl\n toc\n showToc\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n status\n parentSymlinks\n features\n references\n diff {\n title\n content\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5281
|
-
export declare const SubmitDocVersionForApprovalDocument = "\n mutation submitDocVersionForApproval($input: SubmitDocVersionForApprovalInput!) {\n submitDocVersionForApproval(input: $input) {\n ...docVersion\n }\n}\n \n fragment docVersion on DocVersion {\n id\n typename\n prefixCode\n title\n slug\n content\n tags\n createdAt\n updatedAt\n ttl\n toc\n showToc\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n status\n parentSymlinks\n features\n references\n diff {\n title\n content\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5282
|
-
export declare const RequestChangesOnDocVersionDocument = "\n mutation requestChangesOnDocVersion($input: RequestChangesOnDocVersionInput!) {\n requestChangesOnDocVersion(input: $input) {\n ...docVersion\n }\n}\n \n fragment docVersion on DocVersion {\n id\n typename\n prefixCode\n title\n slug\n content\n tags\n createdAt\n updatedAt\n ttl\n toc\n showToc\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n status\n parentSymlinks\n features\n references\n diff {\n title\n content\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5283
|
-
export declare const ApproveDocVersionDocument = "\n mutation approveDocVersion($input: ApproveDocVersionInput!) {\n approveDocVersion(input: $input) {\n ...docVersion\n }\n}\n \n fragment docVersion on DocVersion {\n id\n typename\n prefixCode\n title\n slug\n content\n tags\n createdAt\n updatedAt\n ttl\n toc\n showToc\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n status\n parentSymlinks\n features\n references\n diff {\n title\n content\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5284
|
-
export declare const PromoteDocVersionDocument = "\n mutation promoteDocVersion($input: PromoteDocVersionInput!) {\n promoteDocVersion(input: $input) {\n ...doc\n }\n}\n \n fragment doc on Doc {\n ...docWithoutContent\n content\n}\n \n\n fragment docWithoutContent on Doc {\n id\n version\n typename\n origin\n identifier\n prefixCode\n title\n slug\n tags\n entities\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n toc\n showToc\n features\n references\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5285
|
-
export declare const ApproveAndPromoteDocVersionDocument = "\n mutation approveAndPromoteDocVersion($input: ApproveAndPromoteDocVersionInput!) {\n approveAndPromoteDocVersion(input: $input) {\n ...doc\n ...docVersion\n }\n}\n \n fragment doc on Doc {\n ...docWithoutContent\n content\n}\n \n\n fragment docWithoutContent on Doc {\n id\n version\n typename\n origin\n identifier\n prefixCode\n title\n slug\n tags\n entities\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n toc\n showToc\n features\n references\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5287
|
+
export declare const RemoveDocDocument = "\n mutation removeDoc($input: RemoveDocInput!) {\n removeDoc(input: $input) {\n ... on Doc {\n ...doc\n }\n ... on DocVersion {\n ...docVersion\n }\n }\n}\n \n fragment doc on Doc {\n ...docWithoutContent\n content\n}\n \n\n fragment docWithoutContent on Doc {\n id\n version\n typename\n origin\n identifier\n prefixCode\n title\n slug\n tags\n entities\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n toc\n showToc\n features\n references\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment docVersion on DocVersion {\n id\n typename\n prefixCode\n title\n slug\n content\n tags\n createdAt\n updatedAt\n ttl\n toc\n showToc\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n status\n parentSymlinks\n features\n references\n diff {\n title\n content\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment approvalFlowExecution on ApprovalFlowExecution {\n id\n status\n currentStepId\n flow {\n ...executableApprovalFlow\n }\n}\n \n\n fragment executableApprovalFlow on ExecutableApprovalFlow {\n id\n title\n steps {\n id\n status\n title\n approvers {\n ...subject\n }\n minimumApprovals\n approvals {\n ...userInfo\n }\n rejections {\n ...userInfo\n }\n autoProceedOnMinimumReached\n }\n}\n \n\n fragment subject on Subject {\n __typename\n ...userInfo\n ...group\n}\n \n\n fragment group on Group {\n groupName\n description\n precedence\n}\n ";
|
|
5288
|
+
export declare const CloneDocDocument = "\n mutation cloneDoc($input: CloneDocInput!) {\n cloneDoc(input: $input) {\n ...docVersion\n }\n}\n \n fragment docVersion on DocVersion {\n id\n typename\n prefixCode\n title\n slug\n content\n tags\n createdAt\n updatedAt\n ttl\n toc\n showToc\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n status\n parentSymlinks\n features\n references\n diff {\n title\n content\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment approvalFlowExecution on ApprovalFlowExecution {\n id\n status\n currentStepId\n flow {\n ...executableApprovalFlow\n }\n}\n \n\n fragment executableApprovalFlow on ExecutableApprovalFlow {\n id\n title\n steps {\n id\n status\n title\n approvers {\n ...subject\n }\n minimumApprovals\n approvals {\n ...userInfo\n }\n rejections {\n ...userInfo\n }\n autoProceedOnMinimumReached\n }\n}\n \n\n fragment subject on Subject {\n __typename\n ...userInfo\n ...group\n}\n \n\n fragment group on Group {\n groupName\n description\n precedence\n}\n ";
|
|
5289
|
+
export declare const GenerateAndSetPrefixCodeForDocDocument = "\n mutation generateAndSetPrefixCodeForDoc($input: GenerateAndSetPrefixCodeForDocInput!) {\n generateAndSetPrefixCodeForDoc(input: $input) {\n ...docVersion\n }\n}\n \n fragment docVersion on DocVersion {\n id\n typename\n prefixCode\n title\n slug\n content\n tags\n createdAt\n updatedAt\n ttl\n toc\n showToc\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n status\n parentSymlinks\n features\n references\n diff {\n title\n content\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment approvalFlowExecution on ApprovalFlowExecution {\n id\n status\n currentStepId\n flow {\n ...executableApprovalFlow\n }\n}\n \n\n fragment executableApprovalFlow on ExecutableApprovalFlow {\n id\n title\n steps {\n id\n status\n title\n approvers {\n ...subject\n }\n minimumApprovals\n approvals {\n ...userInfo\n }\n rejections {\n ...userInfo\n }\n autoProceedOnMinimumReached\n }\n}\n \n\n fragment subject on Subject {\n __typename\n ...userInfo\n ...group\n}\n \n\n fragment group on Group {\n groupName\n description\n precedence\n}\n ";
|
|
5290
|
+
export declare const SubmitDocVersionForApprovalDocument = "\n mutation submitDocVersionForApproval($input: SubmitDocVersionForApprovalInput!) {\n submitDocVersionForApproval(input: $input) {\n ...docVersion\n }\n}\n \n fragment docVersion on DocVersion {\n id\n typename\n prefixCode\n title\n slug\n content\n tags\n createdAt\n updatedAt\n ttl\n toc\n showToc\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n status\n parentSymlinks\n features\n references\n diff {\n title\n content\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment approvalFlowExecution on ApprovalFlowExecution {\n id\n status\n currentStepId\n flow {\n ...executableApprovalFlow\n }\n}\n \n\n fragment executableApprovalFlow on ExecutableApprovalFlow {\n id\n title\n steps {\n id\n status\n title\n approvers {\n ...subject\n }\n minimumApprovals\n approvals {\n ...userInfo\n }\n rejections {\n ...userInfo\n }\n autoProceedOnMinimumReached\n }\n}\n \n\n fragment subject on Subject {\n __typename\n ...userInfo\n ...group\n}\n \n\n fragment group on Group {\n groupName\n description\n precedence\n}\n ";
|
|
5291
|
+
export declare const RequestChangesOnDocVersionDocument = "\n mutation requestChangesOnDocVersion($input: RequestChangesOnDocVersionInput!) {\n requestChangesOnDocVersion(input: $input) {\n ...docVersion\n }\n}\n \n fragment docVersion on DocVersion {\n id\n typename\n prefixCode\n title\n slug\n content\n tags\n createdAt\n updatedAt\n ttl\n toc\n showToc\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n status\n parentSymlinks\n features\n references\n diff {\n title\n content\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment approvalFlowExecution on ApprovalFlowExecution {\n id\n status\n currentStepId\n flow {\n ...executableApprovalFlow\n }\n}\n \n\n fragment executableApprovalFlow on ExecutableApprovalFlow {\n id\n title\n steps {\n id\n status\n title\n approvers {\n ...subject\n }\n minimumApprovals\n approvals {\n ...userInfo\n }\n rejections {\n ...userInfo\n }\n autoProceedOnMinimumReached\n }\n}\n \n\n fragment subject on Subject {\n __typename\n ...userInfo\n ...group\n}\n \n\n fragment group on Group {\n groupName\n description\n precedence\n}\n ";
|
|
5292
|
+
export declare const ApproveDocVersionDocument = "\n mutation approveDocVersion($input: ApproveDocVersionInput!) {\n approveDocVersion(input: $input) {\n ...docVersion\n }\n}\n \n fragment docVersion on DocVersion {\n id\n typename\n prefixCode\n title\n slug\n content\n tags\n createdAt\n updatedAt\n ttl\n toc\n showToc\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n status\n parentSymlinks\n features\n references\n diff {\n title\n content\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment approvalFlowExecution on ApprovalFlowExecution {\n id\n status\n currentStepId\n flow {\n ...executableApprovalFlow\n }\n}\n \n\n fragment executableApprovalFlow on ExecutableApprovalFlow {\n id\n title\n steps {\n id\n status\n title\n approvers {\n ...subject\n }\n minimumApprovals\n approvals {\n ...userInfo\n }\n rejections {\n ...userInfo\n }\n autoProceedOnMinimumReached\n }\n}\n \n\n fragment subject on Subject {\n __typename\n ...userInfo\n ...group\n}\n \n\n fragment group on Group {\n groupName\n description\n precedence\n}\n ";
|
|
5293
|
+
export declare const PromoteDocVersionDocument = "\n mutation promoteDocVersion($input: PromoteDocVersionInput!) {\n promoteDocVersion(input: $input) {\n ...doc\n }\n}\n \n fragment doc on Doc {\n ...docWithoutContent\n content\n}\n \n\n fragment docWithoutContent on Doc {\n id\n version\n typename\n origin\n identifier\n prefixCode\n title\n slug\n tags\n entities\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n toc\n showToc\n features\n references\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n ";
|
|
5294
|
+
export declare const ApproveAndPromoteDocVersionDocument = "\n mutation approveAndPromoteDocVersion($input: ApproveAndPromoteDocVersionInput!) {\n approveAndPromoteDocVersion(input: $input) {\n ...doc\n ...docVersion\n }\n}\n \n fragment doc on Doc {\n ...docWithoutContent\n content\n}\n \n\n fragment docWithoutContent on Doc {\n id\n version\n typename\n origin\n identifier\n prefixCode\n title\n slug\n tags\n entities\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n toc\n showToc\n features\n references\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment docVersion on DocVersion {\n id\n typename\n prefixCode\n title\n slug\n content\n tags\n createdAt\n updatedAt\n ttl\n toc\n showToc\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n status\n parentSymlinks\n features\n references\n diff {\n title\n content\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment approvalFlowExecution on ApprovalFlowExecution {\n id\n status\n currentStepId\n flow {\n ...executableApprovalFlow\n }\n}\n \n\n fragment executableApprovalFlow on ExecutableApprovalFlow {\n id\n title\n steps {\n id\n status\n title\n approvers {\n ...subject\n }\n minimumApprovals\n approvals {\n ...userInfo\n }\n rejections {\n ...userInfo\n }\n autoProceedOnMinimumReached\n }\n}\n \n\n fragment subject on Subject {\n __typename\n ...userInfo\n ...group\n}\n \n\n fragment group on Group {\n groupName\n description\n precedence\n}\n ";
|
|
5286
5295
|
export declare const SetDocContentSettingsDocument = "\n mutation setDocContentSettings($input: DocContentSettingsInput!) {\n setDocContentSettings(input: $input) {\n ...docContentSettings\n }\n}\n \n fragment docContentSettings on DocContentSettings {\n daysAfterPublishToRequireReview\n dateToRequireReview\n}\n ";
|
|
5287
5296
|
export declare const DocToDocxDocument = "\n mutation docToDocx($input: DocToDocxInput!) {\n docToDocx(input: $input)\n}\n ";
|
|
5288
|
-
export declare const GetFormDocument = "\n query getForm($id: ID!) {\n trail(id: $id) {\n ...record\n }\n form(id: $id) {\n ...formWithSections\n ...formVersion\n }\n}\n \n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5297
|
+
export declare const GetFormDocument = "\n query getForm($id: ID!) {\n trail(id: $id) {\n ...record\n }\n form(id: $id) {\n ...formWithSections\n ...formVersion\n }\n}\n \n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment formWithSections on Form {\n ...formWithoutContent\n content\n sections {\n ...formSection\n }\n}\n \n\n fragment formWithoutContent on Form {\n id\n version\n typename\n slug\n title\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment formSection on FormSection {\n ...formSectionWithoutContent\n content\n fields {\n ...formField\n }\n}\n \n\n fragment formSectionWithoutContent on FormSection {\n id\n typename\n title\n createdAt\n updatedAt\n fieldIds\n}\n \n\n fragment formField on FormField {\n id\n typename\n type\n label\n description\n required\n value\n}\n \n\n fragment formVersion on FormVersion {\n id\n version\n typename\n slug\n title\n content\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n status\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n sections {\n ...formSection\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment approvalFlowExecution on ApprovalFlowExecution {\n id\n status\n currentStepId\n flow {\n ...executableApprovalFlow\n }\n}\n \n\n fragment executableApprovalFlow on ExecutableApprovalFlow {\n id\n title\n steps {\n id\n status\n title\n approvers {\n ...subject\n }\n minimumApprovals\n approvals {\n ...userInfo\n }\n rejections {\n ...userInfo\n }\n autoProceedOnMinimumReached\n }\n}\n \n\n fragment subject on Subject {\n __typename\n ...userInfo\n ...group\n}\n \n\n fragment group on Group {\n groupName\n description\n precedence\n}\n ";
|
|
5289
5298
|
export declare const GetFormSectionsDocument = "\n query getFormSections($formId: ID!) {\n formSections(formId: $formId) {\n ...formSection\n }\n}\n \n fragment formSection on FormSection {\n ...formSectionWithoutContent\n content\n fields {\n ...formField\n }\n}\n \n\n fragment formSectionWithoutContent on FormSection {\n id\n typename\n title\n createdAt\n updatedAt\n fieldIds\n}\n \n\n fragment formField on FormField {\n id\n typename\n type\n label\n description\n required\n value\n}\n ";
|
|
5290
5299
|
export declare const GetFormSectionFieldsDocument = "\n query getFormSectionFields($sectionId: ID!) {\n formSectionFields(sectionId: $sectionId) {\n ...formField\n }\n}\n \n fragment formField on FormField {\n id\n typename\n type\n label\n description\n required\n value\n}\n ";
|
|
5291
|
-
export declare const GetFormResponseDocument = "\n query getFormResponse($id: ID!) {\n trail(id: $id) {\n ...record\n }\n formResponse(id: $id) {\n ...formResponse\n }\n}\n \n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5300
|
+
export declare const GetFormResponseDocument = "\n query getFormResponse($id: ID!) {\n trail(id: $id) {\n ...record\n }\n formResponse(id: $id) {\n ...formResponse\n }\n}\n \n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment formResponse on FormResponse {\n id\n typename\n title\n tags\n slug\n createdAt\n updatedAt\n doc {\n ...docWithoutContent\n }\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n form {\n ...formWithSections\n }\n}\n \n\n fragment docWithoutContent on Doc {\n id\n version\n typename\n origin\n identifier\n prefixCode\n title\n slug\n tags\n entities\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n toc\n showToc\n features\n references\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment formWithSections on Form {\n ...formWithoutContent\n content\n sections {\n ...formSection\n }\n}\n \n\n fragment formWithoutContent on Form {\n id\n version\n typename\n slug\n title\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n}\n \n\n fragment formSection on FormSection {\n ...formSectionWithoutContent\n content\n fields {\n ...formField\n }\n}\n \n\n fragment formSectionWithoutContent on FormSection {\n id\n typename\n title\n createdAt\n updatedAt\n fieldIds\n}\n \n\n fragment formField on FormField {\n id\n typename\n type\n label\n description\n required\n value\n}\n ";
|
|
5292
5301
|
export declare const GetFormResponsesDocument = "\n query getFormResponses($responseId: ID!) {\n formResponses(responseId: $responseId) {\n ...formFieldResponse\n }\n}\n \n fragment formFieldResponse on FormFieldResponse {\n id\n typename\n createdAt\n updatedAt\n value\n field {\n ...formField\n }\n}\n \n\n fragment formField on FormField {\n id\n typename\n type\n label\n description\n required\n value\n}\n ";
|
|
5293
|
-
export declare const GetQuizDocument = "\n query getQuiz($id: ID!) {\n quiz(id: $id) {\n ...quiz\n }\n}\n \n fragment quiz on Quiz {\n ...quizWithoutContent\n content\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5302
|
+
export declare const GetQuizDocument = "\n query getQuiz($id: ID!) {\n quiz(id: $id) {\n ...quiz\n }\n}\n \n fragment quiz on Quiz {\n ...quizWithoutContent\n content\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n ";
|
|
5294
5303
|
export declare const GetQuizEntriesDocument = "\n query getQuizEntries($id: ID!, $allowShuffling: Boolean) {\n quizEntries(id: $id, allowShuffling: $allowShuffling) {\n ...quizEntries\n }\n}\n \n fragment quizEntries on QuizEntry {\n ...radiobox\n ...checkbox\n}\n \n\n fragment radiobox on RadioboxQuizEntry {\n id\n type\n content\n options\n response\n points\n feedback {\n ...feedback\n }\n}\n \n\n fragment feedback on QuizEntryFeedback {\n correct\n wrong\n}\n \n\n fragment checkbox on CheckboxQuizEntry {\n id\n type\n content\n options\n response\n points\n feedback {\n ...feedback\n }\n}\n ";
|
|
5295
5304
|
export declare const GetUserQuizResponsesDocument = "\n query getUserQuizResponses($id: ID!) {\n userQuizResponses(id: $id) {\n ...userResponse\n }\n}\n \n fragment userResponse on UserQuizResponse {\n entryId\n correct\n points\n response\n}\n ";
|
|
5296
|
-
export declare const SearchFormResponsesDocument = "\n query searchFormResponses($query: SearchFormResponsesInput!) {\n searchFormResponses(query: $query) {\n doc {\n ...docWithoutContent\n }\n }\n}\n \n fragment docWithoutContent on Doc {\n id\n version\n typename\n origin\n identifier\n prefixCode\n title\n slug\n tags\n entities\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n toc\n showToc\n features\n references\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5297
|
-
export declare const CreateFormDocument = "\n mutation createForm($input: CreateFormInput!) {\n createForm(input: $input) {\n ...formVersion\n }\n}\n \n fragment formVersion on FormVersion {\n id\n version\n typename\n slug\n title\n content\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n status\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n sections {\n ...formSection\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5298
|
-
export declare const EditFormDocument = "\n mutation editForm($input: EditFormInput!) {\n editForm(input: $input) {\n ...formVersion\n }\n}\n \n fragment formVersion on FormVersion {\n id\n version\n typename\n slug\n title\n content\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n status\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n sections {\n ...formSection\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5299
|
-
export declare const UpdateFormDocument = "\n mutation updateForm($input: UpdateFormInput!) {\n updateForm(input: $input) {\n ...formVersion\n }\n}\n \n fragment formVersion on FormVersion {\n id\n version\n typename\n slug\n title\n content\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n status\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n sections {\n ...formSection\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5300
|
-
export declare const RemoveFormDocument = "\n mutation removeForm($input: RemoveFormInput!) {\n removeForm(input: $input) {\n ...form\n ...formVersion\n }\n}\n \n fragment form on Form {\n ...formWithoutContent\n content\n}\n \n\n fragment formWithoutContent on Form {\n id\n version\n typename\n slug\n title\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5301
|
-
export declare const SubmitFormVersionForApprovalDocument = "\n mutation submitFormVersionForApproval($input: SubmitFormVersionForApprovalInput!) {\n submitFormVersionForApproval(input: $input) {\n ...formVersion\n }\n}\n \n fragment formVersion on FormVersion {\n id\n version\n typename\n slug\n title\n content\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n status\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n sections {\n ...formSection\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5302
|
-
export declare const RequestChangesOnFormVersionDocument = "\n mutation requestChangesOnFormVersion($input: RequestChangesOnFormVersionInput!) {\n requestChangesOnFormVersion(input: $input) {\n ...formVersion\n }\n}\n \n fragment formVersion on FormVersion {\n id\n version\n typename\n slug\n title\n content\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n status\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n sections {\n ...formSection\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5303
|
-
export declare const ApproveFormVersionDocument = "\n mutation approveFormVersion($input: ApproveFormVersionInput!) {\n approveFormVersion(input: $input) {\n ...formVersion\n }\n}\n \n fragment formVersion on FormVersion {\n id\n version\n typename\n slug\n title\n content\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n status\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n sections {\n ...formSection\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5304
|
-
export declare const PromoteFormVersionDocument = "\n mutation promoteFormVersion($input: PromoteFormVersionInput!) {\n promoteFormVersion(input: $input) {\n ...formWithSections\n }\n}\n \n fragment formWithSections on Form {\n ...formWithoutContent\n content\n sections {\n ...formSection\n }\n}\n \n\n fragment formWithoutContent on Form {\n id\n version\n typename\n slug\n title\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5305
|
-
export declare const ApproveAndPromoteFormVersionDocument = "\n mutation approveAndPromoteFormVersion($input: ApproveAndPromoteFormVersionInput!) {\n approveAndPromoteFormVersion(input: $input) {\n ...formWithSections\n ...formVersion\n }\n}\n \n fragment formWithSections on Form {\n ...formWithoutContent\n content\n sections {\n ...formSection\n }\n}\n \n\n fragment formWithoutContent on Form {\n id\n version\n typename\n slug\n title\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5306
|
-
export declare const CreateFormSectionDocument = "\n mutation createFormSection($input: CreateFormSectionInput!) {\n createFormSection(input: $input) {\n form {\n ...formVersion\n }\n section {\n ...formSection\n }\n }\n}\n \n fragment formVersion on FormVersion {\n id\n version\n typename\n slug\n title\n content\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n status\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n sections {\n ...formSection\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5305
|
+
export declare const SearchFormResponsesDocument = "\n query searchFormResponses($query: SearchFormResponsesInput!) {\n searchFormResponses(query: $query) {\n doc {\n ...docWithoutContent\n }\n }\n}\n \n fragment docWithoutContent on Doc {\n id\n version\n typename\n origin\n identifier\n prefixCode\n title\n slug\n tags\n entities\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n toc\n showToc\n features\n references\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n ";
|
|
5306
|
+
export declare const CreateFormDocument = "\n mutation createForm($input: CreateFormInput!) {\n createForm(input: $input) {\n ...formVersion\n }\n}\n \n fragment formVersion on FormVersion {\n id\n version\n typename\n slug\n title\n content\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n status\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n sections {\n ...formSection\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment formSection on FormSection {\n ...formSectionWithoutContent\n content\n fields {\n ...formField\n }\n}\n \n\n fragment formSectionWithoutContent on FormSection {\n id\n typename\n title\n createdAt\n updatedAt\n fieldIds\n}\n \n\n fragment formField on FormField {\n id\n typename\n type\n label\n description\n required\n value\n}\n \n\n fragment approvalFlowExecution on ApprovalFlowExecution {\n id\n status\n currentStepId\n flow {\n ...executableApprovalFlow\n }\n}\n \n\n fragment executableApprovalFlow on ExecutableApprovalFlow {\n id\n title\n steps {\n id\n status\n title\n approvers {\n ...subject\n }\n minimumApprovals\n approvals {\n ...userInfo\n }\n rejections {\n ...userInfo\n }\n autoProceedOnMinimumReached\n }\n}\n \n\n fragment subject on Subject {\n __typename\n ...userInfo\n ...group\n}\n \n\n fragment group on Group {\n groupName\n description\n precedence\n}\n ";
|
|
5307
|
+
export declare const EditFormDocument = "\n mutation editForm($input: EditFormInput!) {\n editForm(input: $input) {\n ...formVersion\n }\n}\n \n fragment formVersion on FormVersion {\n id\n version\n typename\n slug\n title\n content\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n status\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n sections {\n ...formSection\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment formSection on FormSection {\n ...formSectionWithoutContent\n content\n fields {\n ...formField\n }\n}\n \n\n fragment formSectionWithoutContent on FormSection {\n id\n typename\n title\n createdAt\n updatedAt\n fieldIds\n}\n \n\n fragment formField on FormField {\n id\n typename\n type\n label\n description\n required\n value\n}\n \n\n fragment approvalFlowExecution on ApprovalFlowExecution {\n id\n status\n currentStepId\n flow {\n ...executableApprovalFlow\n }\n}\n \n\n fragment executableApprovalFlow on ExecutableApprovalFlow {\n id\n title\n steps {\n id\n status\n title\n approvers {\n ...subject\n }\n minimumApprovals\n approvals {\n ...userInfo\n }\n rejections {\n ...userInfo\n }\n autoProceedOnMinimumReached\n }\n}\n \n\n fragment subject on Subject {\n __typename\n ...userInfo\n ...group\n}\n \n\n fragment group on Group {\n groupName\n description\n precedence\n}\n ";
|
|
5308
|
+
export declare const UpdateFormDocument = "\n mutation updateForm($input: UpdateFormInput!) {\n updateForm(input: $input) {\n ...formVersion\n }\n}\n \n fragment formVersion on FormVersion {\n id\n version\n typename\n slug\n title\n content\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n status\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n sections {\n ...formSection\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment formSection on FormSection {\n ...formSectionWithoutContent\n content\n fields {\n ...formField\n }\n}\n \n\n fragment formSectionWithoutContent on FormSection {\n id\n typename\n title\n createdAt\n updatedAt\n fieldIds\n}\n \n\n fragment formField on FormField {\n id\n typename\n type\n label\n description\n required\n value\n}\n \n\n fragment approvalFlowExecution on ApprovalFlowExecution {\n id\n status\n currentStepId\n flow {\n ...executableApprovalFlow\n }\n}\n \n\n fragment executableApprovalFlow on ExecutableApprovalFlow {\n id\n title\n steps {\n id\n status\n title\n approvers {\n ...subject\n }\n minimumApprovals\n approvals {\n ...userInfo\n }\n rejections {\n ...userInfo\n }\n autoProceedOnMinimumReached\n }\n}\n \n\n fragment subject on Subject {\n __typename\n ...userInfo\n ...group\n}\n \n\n fragment group on Group {\n groupName\n description\n precedence\n}\n ";
|
|
5309
|
+
export declare const RemoveFormDocument = "\n mutation removeForm($input: RemoveFormInput!) {\n removeForm(input: $input) {\n ...form\n ...formVersion\n }\n}\n \n fragment form on Form {\n ...formWithoutContent\n content\n}\n \n\n fragment formWithoutContent on Form {\n id\n version\n typename\n slug\n title\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment formVersion on FormVersion {\n id\n version\n typename\n slug\n title\n content\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n status\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n sections {\n ...formSection\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment formSection on FormSection {\n ...formSectionWithoutContent\n content\n fields {\n ...formField\n }\n}\n \n\n fragment formSectionWithoutContent on FormSection {\n id\n typename\n title\n createdAt\n updatedAt\n fieldIds\n}\n \n\n fragment formField on FormField {\n id\n typename\n type\n label\n description\n required\n value\n}\n \n\n fragment approvalFlowExecution on ApprovalFlowExecution {\n id\n status\n currentStepId\n flow {\n ...executableApprovalFlow\n }\n}\n \n\n fragment executableApprovalFlow on ExecutableApprovalFlow {\n id\n title\n steps {\n id\n status\n title\n approvers {\n ...subject\n }\n minimumApprovals\n approvals {\n ...userInfo\n }\n rejections {\n ...userInfo\n }\n autoProceedOnMinimumReached\n }\n}\n \n\n fragment subject on Subject {\n __typename\n ...userInfo\n ...group\n}\n \n\n fragment group on Group {\n groupName\n description\n precedence\n}\n ";
|
|
5310
|
+
export declare const SubmitFormVersionForApprovalDocument = "\n mutation submitFormVersionForApproval($input: SubmitFormVersionForApprovalInput!) {\n submitFormVersionForApproval(input: $input) {\n ...formVersion\n }\n}\n \n fragment formVersion on FormVersion {\n id\n version\n typename\n slug\n title\n content\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n status\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n sections {\n ...formSection\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment formSection on FormSection {\n ...formSectionWithoutContent\n content\n fields {\n ...formField\n }\n}\n \n\n fragment formSectionWithoutContent on FormSection {\n id\n typename\n title\n createdAt\n updatedAt\n fieldIds\n}\n \n\n fragment formField on FormField {\n id\n typename\n type\n label\n description\n required\n value\n}\n \n\n fragment approvalFlowExecution on ApprovalFlowExecution {\n id\n status\n currentStepId\n flow {\n ...executableApprovalFlow\n }\n}\n \n\n fragment executableApprovalFlow on ExecutableApprovalFlow {\n id\n title\n steps {\n id\n status\n title\n approvers {\n ...subject\n }\n minimumApprovals\n approvals {\n ...userInfo\n }\n rejections {\n ...userInfo\n }\n autoProceedOnMinimumReached\n }\n}\n \n\n fragment subject on Subject {\n __typename\n ...userInfo\n ...group\n}\n \n\n fragment group on Group {\n groupName\n description\n precedence\n}\n ";
|
|
5311
|
+
export declare const RequestChangesOnFormVersionDocument = "\n mutation requestChangesOnFormVersion($input: RequestChangesOnFormVersionInput!) {\n requestChangesOnFormVersion(input: $input) {\n ...formVersion\n }\n}\n \n fragment formVersion on FormVersion {\n id\n version\n typename\n slug\n title\n content\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n status\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n sections {\n ...formSection\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment formSection on FormSection {\n ...formSectionWithoutContent\n content\n fields {\n ...formField\n }\n}\n \n\n fragment formSectionWithoutContent on FormSection {\n id\n typename\n title\n createdAt\n updatedAt\n fieldIds\n}\n \n\n fragment formField on FormField {\n id\n typename\n type\n label\n description\n required\n value\n}\n \n\n fragment approvalFlowExecution on ApprovalFlowExecution {\n id\n status\n currentStepId\n flow {\n ...executableApprovalFlow\n }\n}\n \n\n fragment executableApprovalFlow on ExecutableApprovalFlow {\n id\n title\n steps {\n id\n status\n title\n approvers {\n ...subject\n }\n minimumApprovals\n approvals {\n ...userInfo\n }\n rejections {\n ...userInfo\n }\n autoProceedOnMinimumReached\n }\n}\n \n\n fragment subject on Subject {\n __typename\n ...userInfo\n ...group\n}\n \n\n fragment group on Group {\n groupName\n description\n precedence\n}\n ";
|
|
5312
|
+
export declare const ApproveFormVersionDocument = "\n mutation approveFormVersion($input: ApproveFormVersionInput!) {\n approveFormVersion(input: $input) {\n ...formVersion\n }\n}\n \n fragment formVersion on FormVersion {\n id\n version\n typename\n slug\n title\n content\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n status\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n sections {\n ...formSection\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment formSection on FormSection {\n ...formSectionWithoutContent\n content\n fields {\n ...formField\n }\n}\n \n\n fragment formSectionWithoutContent on FormSection {\n id\n typename\n title\n createdAt\n updatedAt\n fieldIds\n}\n \n\n fragment formField on FormField {\n id\n typename\n type\n label\n description\n required\n value\n}\n \n\n fragment approvalFlowExecution on ApprovalFlowExecution {\n id\n status\n currentStepId\n flow {\n ...executableApprovalFlow\n }\n}\n \n\n fragment executableApprovalFlow on ExecutableApprovalFlow {\n id\n title\n steps {\n id\n status\n title\n approvers {\n ...subject\n }\n minimumApprovals\n approvals {\n ...userInfo\n }\n rejections {\n ...userInfo\n }\n autoProceedOnMinimumReached\n }\n}\n \n\n fragment subject on Subject {\n __typename\n ...userInfo\n ...group\n}\n \n\n fragment group on Group {\n groupName\n description\n precedence\n}\n ";
|
|
5313
|
+
export declare const PromoteFormVersionDocument = "\n mutation promoteFormVersion($input: PromoteFormVersionInput!) {\n promoteFormVersion(input: $input) {\n ...formWithSections\n }\n}\n \n fragment formWithSections on Form {\n ...formWithoutContent\n content\n sections {\n ...formSection\n }\n}\n \n\n fragment formWithoutContent on Form {\n id\n version\n typename\n slug\n title\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment formSection on FormSection {\n ...formSectionWithoutContent\n content\n fields {\n ...formField\n }\n}\n \n\n fragment formSectionWithoutContent on FormSection {\n id\n typename\n title\n createdAt\n updatedAt\n fieldIds\n}\n \n\n fragment formField on FormField {\n id\n typename\n type\n label\n description\n required\n value\n}\n ";
|
|
5314
|
+
export declare const ApproveAndPromoteFormVersionDocument = "\n mutation approveAndPromoteFormVersion($input: ApproveAndPromoteFormVersionInput!) {\n approveAndPromoteFormVersion(input: $input) {\n ...formWithSections\n ...formVersion\n }\n}\n \n fragment formWithSections on Form {\n ...formWithoutContent\n content\n sections {\n ...formSection\n }\n}\n \n\n fragment formWithoutContent on Form {\n id\n version\n typename\n slug\n title\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment formSection on FormSection {\n ...formSectionWithoutContent\n content\n fields {\n ...formField\n }\n}\n \n\n fragment formSectionWithoutContent on FormSection {\n id\n typename\n title\n createdAt\n updatedAt\n fieldIds\n}\n \n\n fragment formField on FormField {\n id\n typename\n type\n label\n description\n required\n value\n}\n \n\n fragment formVersion on FormVersion {\n id\n version\n typename\n slug\n title\n content\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n status\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n sections {\n ...formSection\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment approvalFlowExecution on ApprovalFlowExecution {\n id\n status\n currentStepId\n flow {\n ...executableApprovalFlow\n }\n}\n \n\n fragment executableApprovalFlow on ExecutableApprovalFlow {\n id\n title\n steps {\n id\n status\n title\n approvers {\n ...subject\n }\n minimumApprovals\n approvals {\n ...userInfo\n }\n rejections {\n ...userInfo\n }\n autoProceedOnMinimumReached\n }\n}\n \n\n fragment subject on Subject {\n __typename\n ...userInfo\n ...group\n}\n \n\n fragment group on Group {\n groupName\n description\n precedence\n}\n ";
|
|
5315
|
+
export declare const CreateFormSectionDocument = "\n mutation createFormSection($input: CreateFormSectionInput!) {\n createFormSection(input: $input) {\n form {\n ...formVersion\n }\n section {\n ...formSection\n }\n }\n}\n \n fragment formVersion on FormVersion {\n id\n version\n typename\n slug\n title\n content\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n status\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n sections {\n ...formSection\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment formSection on FormSection {\n ...formSectionWithoutContent\n content\n fields {\n ...formField\n }\n}\n \n\n fragment formSectionWithoutContent on FormSection {\n id\n typename\n title\n createdAt\n updatedAt\n fieldIds\n}\n \n\n fragment formField on FormField {\n id\n typename\n type\n label\n description\n required\n value\n}\n \n\n fragment approvalFlowExecution on ApprovalFlowExecution {\n id\n status\n currentStepId\n flow {\n ...executableApprovalFlow\n }\n}\n \n\n fragment executableApprovalFlow on ExecutableApprovalFlow {\n id\n title\n steps {\n id\n status\n title\n approvers {\n ...subject\n }\n minimumApprovals\n approvals {\n ...userInfo\n }\n rejections {\n ...userInfo\n }\n autoProceedOnMinimumReached\n }\n}\n \n\n fragment subject on Subject {\n __typename\n ...userInfo\n ...group\n}\n \n\n fragment group on Group {\n groupName\n description\n precedence\n}\n ";
|
|
5307
5316
|
export declare const UpdateFormSectionDocument = "\n mutation updateFormSection($input: UpdateFormSectionInput!) {\n updateFormSection(input: $input) {\n ...formSection\n }\n}\n \n fragment formSection on FormSection {\n ...formSectionWithoutContent\n content\n fields {\n ...formField\n }\n}\n \n\n fragment formSectionWithoutContent on FormSection {\n id\n typename\n title\n createdAt\n updatedAt\n fieldIds\n}\n \n\n fragment formField on FormField {\n id\n typename\n type\n label\n description\n required\n value\n}\n ";
|
|
5308
|
-
export declare const RemoveFormSectionDocument = "\n mutation removeFormSection($input: RemoveFormSectionInput!) {\n removeFormSection(input: $input) {\n ...formVersion\n }\n}\n \n fragment formVersion on FormVersion {\n id\n version\n typename\n slug\n title\n content\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n status\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n sections {\n ...formSection\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5309
|
-
export declare const CreateFormFieldDocument = "\n mutation createFormField($input: CreateFormFieldInput!) {\n createFormField(input: $input) {\n form {\n ...formVersion\n }\n section {\n ...formSection\n }\n field {\n ...formField\n }\n }\n}\n \n fragment formVersion on FormVersion {\n id\n version\n typename\n slug\n title\n content\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n status\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n sections {\n ...formSection\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5317
|
+
export declare const RemoveFormSectionDocument = "\n mutation removeFormSection($input: RemoveFormSectionInput!) {\n removeFormSection(input: $input) {\n ...formVersion\n }\n}\n \n fragment formVersion on FormVersion {\n id\n version\n typename\n slug\n title\n content\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n status\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n sections {\n ...formSection\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment formSection on FormSection {\n ...formSectionWithoutContent\n content\n fields {\n ...formField\n }\n}\n \n\n fragment formSectionWithoutContent on FormSection {\n id\n typename\n title\n createdAt\n updatedAt\n fieldIds\n}\n \n\n fragment formField on FormField {\n id\n typename\n type\n label\n description\n required\n value\n}\n \n\n fragment approvalFlowExecution on ApprovalFlowExecution {\n id\n status\n currentStepId\n flow {\n ...executableApprovalFlow\n }\n}\n \n\n fragment executableApprovalFlow on ExecutableApprovalFlow {\n id\n title\n steps {\n id\n status\n title\n approvers {\n ...subject\n }\n minimumApprovals\n approvals {\n ...userInfo\n }\n rejections {\n ...userInfo\n }\n autoProceedOnMinimumReached\n }\n}\n \n\n fragment subject on Subject {\n __typename\n ...userInfo\n ...group\n}\n \n\n fragment group on Group {\n groupName\n description\n precedence\n}\n ";
|
|
5318
|
+
export declare const CreateFormFieldDocument = "\n mutation createFormField($input: CreateFormFieldInput!) {\n createFormField(input: $input) {\n form {\n ...formVersion\n }\n section {\n ...formSection\n }\n field {\n ...formField\n }\n }\n}\n \n fragment formVersion on FormVersion {\n id\n version\n typename\n slug\n title\n content\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n status\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n sections {\n ...formSection\n }\n approvalFlow {\n ...approvalFlowExecution\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment formSection on FormSection {\n ...formSectionWithoutContent\n content\n fields {\n ...formField\n }\n}\n \n\n fragment formSectionWithoutContent on FormSection {\n id\n typename\n title\n createdAt\n updatedAt\n fieldIds\n}\n \n\n fragment formField on FormField {\n id\n typename\n type\n label\n description\n required\n value\n}\n \n\n fragment approvalFlowExecution on ApprovalFlowExecution {\n id\n status\n currentStepId\n flow {\n ...executableApprovalFlow\n }\n}\n \n\n fragment executableApprovalFlow on ExecutableApprovalFlow {\n id\n title\n steps {\n id\n status\n title\n approvers {\n ...subject\n }\n minimumApprovals\n approvals {\n ...userInfo\n }\n rejections {\n ...userInfo\n }\n autoProceedOnMinimumReached\n }\n}\n \n\n fragment subject on Subject {\n __typename\n ...userInfo\n ...group\n}\n \n\n fragment group on Group {\n groupName\n description\n precedence\n}\n ";
|
|
5310
5319
|
export declare const UpdateFormFieldDocument = "\n mutation updateFormField($input: UpdateFormFieldInput!) {\n updateFormField(input: $input) {\n ...formField\n }\n}\n \n fragment formField on FormField {\n id\n typename\n type\n label\n description\n required\n value\n}\n ";
|
|
5311
5320
|
export declare const RemoveFormFieldDocument = "\n mutation removeFormField($input: RemoveFormFieldInput!) {\n removeFormField(input: $input) {\n ...formSection\n }\n}\n \n fragment formSection on FormSection {\n ...formSectionWithoutContent\n content\n fields {\n ...formField\n }\n}\n \n\n fragment formSectionWithoutContent on FormSection {\n id\n typename\n title\n createdAt\n updatedAt\n fieldIds\n}\n \n\n fragment formField on FormField {\n id\n typename\n type\n label\n description\n required\n value\n}\n ";
|
|
5312
|
-
export declare const CreateFormResponseDocument = "\n mutation createFormResponse($input: CreateFormResponseInput!) {\n createFormResponse(input: $input) {\n ...formResponse\n }\n}\n \n fragment formResponse on FormResponse {\n id\n typename\n title\n tags\n slug\n createdAt\n updatedAt\n doc {\n ...docWithoutContent\n }\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n form {\n ...formWithSections\n }\n}\n \n\n fragment docWithoutContent on Doc {\n id\n version\n typename\n origin\n identifier\n prefixCode\n title\n slug\n tags\n entities\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n toc\n showToc\n features\n references\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5313
|
-
export declare const UpdateFormResponseDocument = "\n mutation updateFormResponse($input: UpdateFormResponseInput!) {\n updateFormResponse(input: $input) {\n ...formResponse\n }\n}\n \n fragment formResponse on FormResponse {\n id\n typename\n title\n tags\n slug\n createdAt\n updatedAt\n doc {\n ...docWithoutContent\n }\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n form {\n ...formWithSections\n }\n}\n \n\n fragment docWithoutContent on Doc {\n id\n version\n typename\n origin\n identifier\n prefixCode\n title\n slug\n tags\n entities\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n toc\n showToc\n features\n references\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5314
|
-
export declare const RemoveFormResponseDocument = "\n mutation removeFormResponse($input: RemoveFormResponseInput!) {\n removeFormResponse(input: $input) {\n ...formResponse\n }\n}\n \n fragment formResponse on FormResponse {\n id\n typename\n title\n tags\n slug\n createdAt\n updatedAt\n doc {\n ...docWithoutContent\n }\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n form {\n ...formWithSections\n }\n}\n \n\n fragment docWithoutContent on Doc {\n id\n version\n typename\n origin\n identifier\n prefixCode\n title\n slug\n tags\n entities\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n toc\n showToc\n features\n references\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5315
|
-
export declare const SubmitFormResponseDocument = "\n mutation submitFormResponse($input: SubmitFormResponseInput!) {\n submitFormResponse(input: $input) {\n ...formResponse\n }\n}\n \n fragment formResponse on FormResponse {\n id\n typename\n title\n tags\n slug\n createdAt\n updatedAt\n doc {\n ...docWithoutContent\n }\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n form {\n ...formWithSections\n }\n}\n \n\n fragment docWithoutContent on Doc {\n id\n version\n typename\n origin\n identifier\n prefixCode\n title\n slug\n tags\n entities\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n toc\n showToc\n features\n references\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5321
|
+
export declare const CreateFormResponseDocument = "\n mutation createFormResponse($input: CreateFormResponseInput!) {\n createFormResponse(input: $input) {\n ...formResponse\n }\n}\n \n fragment formResponse on FormResponse {\n id\n typename\n title\n tags\n slug\n createdAt\n updatedAt\n doc {\n ...docWithoutContent\n }\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n form {\n ...formWithSections\n }\n}\n \n\n fragment docWithoutContent on Doc {\n id\n version\n typename\n origin\n identifier\n prefixCode\n title\n slug\n tags\n entities\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n toc\n showToc\n features\n references\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment formWithSections on Form {\n ...formWithoutContent\n content\n sections {\n ...formSection\n }\n}\n \n\n fragment formWithoutContent on Form {\n id\n version\n typename\n slug\n title\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n}\n \n\n fragment formSection on FormSection {\n ...formSectionWithoutContent\n content\n fields {\n ...formField\n }\n}\n \n\n fragment formSectionWithoutContent on FormSection {\n id\n typename\n title\n createdAt\n updatedAt\n fieldIds\n}\n \n\n fragment formField on FormField {\n id\n typename\n type\n label\n description\n required\n value\n}\n ";
|
|
5322
|
+
export declare const UpdateFormResponseDocument = "\n mutation updateFormResponse($input: UpdateFormResponseInput!) {\n updateFormResponse(input: $input) {\n ...formResponse\n }\n}\n \n fragment formResponse on FormResponse {\n id\n typename\n title\n tags\n slug\n createdAt\n updatedAt\n doc {\n ...docWithoutContent\n }\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n form {\n ...formWithSections\n }\n}\n \n\n fragment docWithoutContent on Doc {\n id\n version\n typename\n origin\n identifier\n prefixCode\n title\n slug\n tags\n entities\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n toc\n showToc\n features\n references\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment formWithSections on Form {\n ...formWithoutContent\n content\n sections {\n ...formSection\n }\n}\n \n\n fragment formWithoutContent on Form {\n id\n version\n typename\n slug\n title\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n}\n \n\n fragment formSection on FormSection {\n ...formSectionWithoutContent\n content\n fields {\n ...formField\n }\n}\n \n\n fragment formSectionWithoutContent on FormSection {\n id\n typename\n title\n createdAt\n updatedAt\n fieldIds\n}\n \n\n fragment formField on FormField {\n id\n typename\n type\n label\n description\n required\n value\n}\n ";
|
|
5323
|
+
export declare const RemoveFormResponseDocument = "\n mutation removeFormResponse($input: RemoveFormResponseInput!) {\n removeFormResponse(input: $input) {\n ...formResponse\n }\n}\n \n fragment formResponse on FormResponse {\n id\n typename\n title\n tags\n slug\n createdAt\n updatedAt\n doc {\n ...docWithoutContent\n }\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n form {\n ...formWithSections\n }\n}\n \n\n fragment docWithoutContent on Doc {\n id\n version\n typename\n origin\n identifier\n prefixCode\n title\n slug\n tags\n entities\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n toc\n showToc\n features\n references\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment formWithSections on Form {\n ...formWithoutContent\n content\n sections {\n ...formSection\n }\n}\n \n\n fragment formWithoutContent on Form {\n id\n version\n typename\n slug\n title\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n}\n \n\n fragment formSection on FormSection {\n ...formSectionWithoutContent\n content\n fields {\n ...formField\n }\n}\n \n\n fragment formSectionWithoutContent on FormSection {\n id\n typename\n title\n createdAt\n updatedAt\n fieldIds\n}\n \n\n fragment formField on FormField {\n id\n typename\n type\n label\n description\n required\n value\n}\n ";
|
|
5324
|
+
export declare const SubmitFormResponseDocument = "\n mutation submitFormResponse($input: SubmitFormResponseInput!) {\n submitFormResponse(input: $input) {\n ...formResponse\n }\n}\n \n fragment formResponse on FormResponse {\n id\n typename\n title\n tags\n slug\n createdAt\n updatedAt\n doc {\n ...docWithoutContent\n }\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n form {\n ...formWithSections\n }\n}\n \n\n fragment docWithoutContent on Doc {\n id\n version\n typename\n origin\n identifier\n prefixCode\n title\n slug\n tags\n entities\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n toc\n showToc\n features\n references\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment formWithSections on Form {\n ...formWithoutContent\n content\n sections {\n ...formSection\n }\n}\n \n\n fragment formWithoutContent on Form {\n id\n version\n typename\n slug\n title\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n}\n \n\n fragment formSection on FormSection {\n ...formSectionWithoutContent\n content\n fields {\n ...formField\n }\n}\n \n\n fragment formSectionWithoutContent on FormSection {\n id\n typename\n title\n createdAt\n updatedAt\n fieldIds\n}\n \n\n fragment formField on FormField {\n id\n typename\n type\n label\n description\n required\n value\n}\n ";
|
|
5316
5325
|
export declare const SubmitFormFieldResponseDocument = "\n mutation submitFormFieldResponse($input: SubmitFormFieldResponseInput!) {\n submitFormFieldResponse(input: $input) {\n ...formFieldResponse\n }\n}\n \n fragment formFieldResponse on FormFieldResponse {\n id\n typename\n createdAt\n updatedAt\n value\n field {\n ...formField\n }\n}\n \n\n fragment formField on FormField {\n id\n typename\n type\n label\n description\n required\n value\n}\n ";
|
|
5317
|
-
export declare const CreateQuizDocument = "\n mutation createQuiz($input: CreateQuizInput!) {\n createQuiz(input: $input) {\n ...quiz\n }\n}\n \n fragment quiz on Quiz {\n ...quizWithoutContent\n content\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5318
|
-
export declare const UpdateQuizDocument = "\n mutation updateQuiz($input: UpdateQuizInput!) {\n updateQuiz(input: $input) {\n ...quiz\n }\n}\n \n fragment quiz on Quiz {\n ...quizWithoutContent\n content\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5319
|
-
export declare const CreateQuizEntryDocument = "\n mutation createQuizEntry($input: CreateQuizEntryInput!) {\n createQuizEntry(input: $input) {\n entry {\n ...quizEntries\n }\n quiz {\n ...quiz\n }\n }\n}\n \n fragment quizEntries on QuizEntry {\n ...radiobox\n ...checkbox\n}\n \n\n fragment radiobox on RadioboxQuizEntry {\n id\n type\n content\n options\n response\n points\n feedback {\n ...feedback\n }\n}\n \n\n fragment feedback on QuizEntryFeedback {\n correct\n wrong\n}\n \n\n fragment checkbox on CheckboxQuizEntry {\n id\n type\n content\n options\n response\n points\n feedback {\n ...feedback\n }\n}\n \n\n fragment quiz on Quiz {\n ...quizWithoutContent\n content\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5320
|
-
export declare const RemoveQuizEntryDocument = "\n mutation removeQuizEntry($input: RemoveQuizEntryInput!) {\n removeQuizEntry(input: $input) {\n ...quiz\n }\n}\n \n fragment quiz on Quiz {\n ...quizWithoutContent\n content\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5326
|
+
export declare const CreateQuizDocument = "\n mutation createQuiz($input: CreateQuizInput!) {\n createQuiz(input: $input) {\n ...quiz\n }\n}\n \n fragment quiz on Quiz {\n ...quizWithoutContent\n content\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n ";
|
|
5327
|
+
export declare const UpdateQuizDocument = "\n mutation updateQuiz($input: UpdateQuizInput!) {\n updateQuiz(input: $input) {\n ...quiz\n }\n}\n \n fragment quiz on Quiz {\n ...quizWithoutContent\n content\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n ";
|
|
5328
|
+
export declare const CreateQuizEntryDocument = "\n mutation createQuizEntry($input: CreateQuizEntryInput!) {\n createQuizEntry(input: $input) {\n entry {\n ...quizEntries\n }\n quiz {\n ...quiz\n }\n }\n}\n \n fragment quizEntries on QuizEntry {\n ...radiobox\n ...checkbox\n}\n \n\n fragment radiobox on RadioboxQuizEntry {\n id\n type\n content\n options\n response\n points\n feedback {\n ...feedback\n }\n}\n \n\n fragment feedback on QuizEntryFeedback {\n correct\n wrong\n}\n \n\n fragment checkbox on CheckboxQuizEntry {\n id\n type\n content\n options\n response\n points\n feedback {\n ...feedback\n }\n}\n \n\n fragment quiz on Quiz {\n ...quizWithoutContent\n content\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n ";
|
|
5329
|
+
export declare const RemoveQuizEntryDocument = "\n mutation removeQuizEntry($input: RemoveQuizEntryInput!) {\n removeQuizEntry(input: $input) {\n ...quiz\n }\n}\n \n fragment quiz on Quiz {\n ...quizWithoutContent\n content\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n ";
|
|
5321
5330
|
export declare const ChangeQuizEntryTypeDocument = "\n mutation changeQuizEntryType($input: ChangeQuizEntryType!) {\n changeQuizEntryType(input: $input) {\n ...quizEntries\n }\n}\n \n fragment quizEntries on QuizEntry {\n ...radiobox\n ...checkbox\n}\n \n\n fragment radiobox on RadioboxQuizEntry {\n id\n type\n content\n options\n response\n points\n feedback {\n ...feedback\n }\n}\n \n\n fragment feedback on QuizEntryFeedback {\n correct\n wrong\n}\n \n\n fragment checkbox on CheckboxQuizEntry {\n id\n type\n content\n options\n response\n points\n feedback {\n ...feedback\n }\n}\n ";
|
|
5322
5331
|
export declare const UpdateRadioboxQuizEntryDocument = "\n mutation updateRadioboxQuizEntry($input: UpdateRadioboxQuizEntryInput!) {\n updateRadioboxQuizEntry(input: $input) {\n ...radiobox\n }\n}\n \n fragment radiobox on RadioboxQuizEntry {\n id\n type\n content\n options\n response\n points\n feedback {\n ...feedback\n }\n}\n \n\n fragment feedback on QuizEntryFeedback {\n correct\n wrong\n}\n ";
|
|
5323
5332
|
export declare const UpdateCheckboxQuizEntryDocument = "\n mutation updateCheckboxQuizEntry($input: UpdateCheckboxQuizEntryInput!) {\n updateCheckboxQuizEntry(input: $input) {\n ...checkbox\n }\n}\n \n fragment checkbox on CheckboxQuizEntry {\n id\n type\n content\n options\n response\n points\n feedback {\n ...feedback\n }\n}\n \n\n fragment feedback on QuizEntryFeedback {\n correct\n wrong\n}\n ";
|
|
@@ -5335,18 +5344,18 @@ export declare const UpdateIntegrationConfigDocument = "\n mutation updateInt
|
|
|
5335
5344
|
export declare const RemoveIntegrationConfigDocument = "\n mutation removeIntegrationConfig($input: RemoveIntegrationConfigInput!) {\n removeIntegrationConfig(input: $input) {\n ...integration\n }\n}\n \n fragment integration on IntegrationConfig {\n id\n type\n title\n description\n url\n active\n status\n username\n automatedUpsert\n automatedRemoval\n}\n ";
|
|
5336
5345
|
export declare const MigrateDocument = "\n mutation migrate($input: MigrateInput!) {\n migrate(input: $input)\n}\n ";
|
|
5337
5346
|
export declare const UpdateZendeskArticleDocument = "\n mutation updateZendeskArticle($input: UpdateZendeskArticleInput!) {\n updateZendeskArticle(input: $input)\n}\n ";
|
|
5338
|
-
export declare const QueryByLabelsDocument = "\n query queryByLabels($text: String!, $recompute: Boolean) {\n queryByLabels(text: $text, recompute: $recompute) {\n cached\n labels {\n label\n score\n docs {\n ...doc\n }\n sourceId\n }\n }\n}\n \n fragment doc on Doc {\n ...docWithoutContent\n content\n}\n \n\n fragment docWithoutContent on Doc {\n id\n version\n typename\n origin\n identifier\n prefixCode\n title\n slug\n tags\n entities\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n toc\n showToc\n features\n references\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5347
|
+
export declare const QueryByLabelsDocument = "\n query queryByLabels($text: String!, $recompute: Boolean) {\n queryByLabels(text: $text, recompute: $recompute) {\n cached\n labels {\n label\n score\n docs {\n ...doc\n }\n sourceId\n }\n }\n}\n \n fragment doc on Doc {\n ...docWithoutContent\n content\n}\n \n\n fragment docWithoutContent on Doc {\n id\n version\n typename\n origin\n identifier\n prefixCode\n title\n slug\n tags\n entities\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n toc\n showToc\n features\n references\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n ";
|
|
5339
5348
|
export declare const GetGifsDocument = "\n query getGifs($query: String!, $limit: Int, $offset: Int) {\n gifs(query: $query, limit: $limit, offset: $offset) {\n id\n url\n }\n}\n ";
|
|
5340
5349
|
export declare const GetIconsDocument = "\n query getIcons($query: String!, $limit: Int, $offset: Int) {\n icons(query: $query, limit: $limit, offset: $offset) {\n id\n url\n }\n}\n ";
|
|
5341
5350
|
export declare const GetWebArticleDocument = "\n query getWebArticle($url: String!) {\n webArticle(url: $url) {\n id\n title\n content\n text\n }\n}\n ";
|
|
5342
|
-
export declare const GetUserNotificationsDocument = "\n query getUserNotifications($after: String) {\n userNotifications(after: $after) {\n count\n nodes {\n ...notification\n }\n pageInfo {\n ...pageInfo\n }\n }\n}\n \n fragment notification on Notification {\n id\n actor {\n ...userInfo\n }\n action\n ref {\n ...record\n }\n alternativeRef {\n ...record\n }\n content\n seen\n read\n createdAt\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5351
|
+
export declare const GetUserNotificationsDocument = "\n query getUserNotifications($after: String) {\n userNotifications(after: $after) {\n count\n nodes {\n ...notification\n }\n pageInfo {\n ...pageInfo\n }\n }\n}\n \n fragment notification on Notification {\n id\n actor {\n ...userInfo\n }\n action\n ref {\n ...record\n }\n alternativeRef {\n ...record\n }\n content\n seen\n read\n createdAt\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment pageInfo on PageInfo {\n next\n hasNext\n}\n ";
|
|
5343
5352
|
export declare const GetUserEmailPreferencesDocument = "\n query getUserEmailPreferences {\n userEmailPreferences {\n ...emailPreferences\n }\n}\n \n fragment emailPreferences on UserEmailPreferences {\n all\n releaseNotes\n updates\n tasks\n gamification\n discussions\n docReview\n locale\n}\n ";
|
|
5344
5353
|
export declare const SetUserEmailPreferencesDocument = "\n mutation setUserEmailPreferences($input: SetUserEmailPreferencesInput!) {\n setUserEmailPreferences(input: $input) {\n ...emailPreferences\n }\n}\n \n fragment emailPreferences on UserEmailPreferences {\n all\n releaseNotes\n updates\n tasks\n gamification\n discussions\n docReview\n locale\n}\n ";
|
|
5345
5354
|
export declare const MarkAllNotificationsAsSeenDocument = "\n mutation markAllNotificationsAsSeen {\n markAllNotificationsAsSeen\n}\n ";
|
|
5346
|
-
export declare const MarkNotificationsAsReadDocument = "\n mutation markNotificationsAsRead($input: MarkNotificationsAsReadInput!) {\n markNotificationsAsRead(input: $input) {\n ...notification\n }\n}\n \n fragment notification on Notification {\n id\n actor {\n ...userInfo\n }\n action\n ref {\n ...record\n }\n alternativeRef {\n ...record\n }\n content\n seen\n read\n createdAt\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5355
|
+
export declare const MarkNotificationsAsReadDocument = "\n mutation markNotificationsAsRead($input: MarkNotificationsAsReadInput!) {\n markNotificationsAsRead(input: $input) {\n ...notification\n }\n}\n \n fragment notification on Notification {\n id\n actor {\n ...userInfo\n }\n action\n ref {\n ...record\n }\n alternativeRef {\n ...record\n }\n content\n seen\n read\n createdAt\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n ";
|
|
5347
5356
|
export declare const UnsubscribeDocument = "\n mutation unsubscribe($input: UnsubscribeInput!) {\n unsubscribe(input: $input)\n}\n ";
|
|
5348
5357
|
export declare const NotifyPlanUpgradeDocument = "\n mutation notifyPlanUpgrade($input: NotifyPlanUpgradeInput!) {\n notifyPlanUpgrade(input: $input)\n}\n ";
|
|
5349
|
-
export declare const OnNotificationDocument = "\n subscription onNotification {\n onNotification {\n ...notification\n }\n}\n \n fragment notification on Notification {\n id\n actor {\n ...userInfo\n }\n action\n ref {\n ...record\n }\n alternativeRef {\n ...record\n }\n content\n seen\n read\n createdAt\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5358
|
+
export declare const OnNotificationDocument = "\n subscription onNotification {\n onNotification {\n ...notification\n }\n}\n \n fragment notification on Notification {\n id\n actor {\n ...userInfo\n }\n action\n ref {\n ...record\n }\n alternativeRef {\n ...record\n }\n content\n seen\n read\n createdAt\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n ";
|
|
5350
5359
|
export declare const GetOrganizationSettingsDocument = "\n query getOrganizationSettings($scopes: [OrganizationScopes!]) {\n organizationSettings(scopes: $scopes) {\n info {\n ...organizationSettingsInfo\n }\n content {\n ...organizationSettingsContent\n }\n theme {\n ...organizationSettingsTheme\n }\n typography {\n ...organizationSettingsTypography\n }\n groups {\n ...organizationSettingsGroups\n }\n security {\n ...organizationSettingsSecurity\n }\n game {\n ...organizationSettingsGame\n }\n license {\n ...organizationSettingsLicense\n }\n usage {\n ...organizationSettingsUsage\n }\n }\n}\n \n fragment organizationSettingsInfo on OrganizationSettingsInfo {\n title\n logo\n description\n content\n showTitleOnHomePage\n showLogoOnHomePage\n domain\n}\n \n\n fragment organizationSettingsContent on OrganizationSettingsContent {\n requireTags\n enableAnswers\n notifyRecordUpdates\n scriptsHeader\n scriptsFooter\n}\n \n\n fragment organizationSettingsTheme on OrganizationSettingsTheme {\n enabled\n primaryColor\n backgroundImage\n showUnsplashInfo\n keepThemeOnHeader\n clipPath\n}\n \n\n fragment organizationSettingsTypography on OrganizationSettingsTypography {\n fontFamily\n letterSpacing\n h1 {\n ...typographyStyle\n }\n h2 {\n ...typographyStyle\n }\n h3 {\n ...typographyStyle\n }\n h4 {\n ...typographyStyle\n }\n h5 {\n ...typographyStyle\n }\n h6 {\n ...typographyStyle\n }\n p {\n ...typographyStyle\n }\n cssStyle\n}\n \n\n fragment typographyStyle on TypographyStyle {\n color\n fontSize\n fontVariant\n fontWeight\n letterSpacing\n lineHeight\n marginBottom\n marginTop\n textTransform\n}\n \n\n fragment organizationSettingsGroups on OrganizationSettingsGroups {\n groupsMapping\n}\n \n\n fragment organizationSettingsSecurity on OrganizationSettingsSecurity {\n requiresAuthentication\n doNotAllowUserSignup\n allowedEmailDomains\n allowedIPs\n allowedContentTypes\n maxFileSizeInBytes\n sessionCookieSameSite\n}\n \n\n fragment organizationSettingsGame on OrganizationSettingsGame {\n variablePointsFactor\n enableGameWeeklyDigest\n}\n \n\n fragment organizationSettingsLicense on OrganizationSettingsLicense {\n storageInBytes\n maxUsers\n readOnly\n}\n \n\n fragment organizationSettingsUsage on OrganizationSettingsUsage {\n storageInBytes\n}\n ";
|
|
5351
5360
|
export declare const UpdateOrganizationSettingsInfoDocument = "\n mutation updateOrganizationSettingsInfo($input: OrganizationSettingsInfoInput!) {\n updateOrganizationSettingsInfo(input: $input) {\n ...organizationSettingsInfo\n }\n}\n \n fragment organizationSettingsInfo on OrganizationSettingsInfo {\n title\n logo\n description\n content\n showTitleOnHomePage\n showLogoOnHomePage\n domain\n}\n ";
|
|
5352
5361
|
export declare const UpdateOrganizationSettingsContentDocument = "\n mutation updateOrganizationSettingsContent($input: OrganizationSettingsContentInput!) {\n updateOrganizationSettingsContent(input: $input) {\n ...organizationSettingsContent\n }\n}\n \n fragment organizationSettingsContent on OrganizationSettingsContent {\n requireTags\n enableAnswers\n notifyRecordUpdates\n scriptsHeader\n scriptsFooter\n}\n ";
|
|
@@ -5365,9 +5374,9 @@ export declare const SetPermissionDocument = "\n mutation setPermission($inpu
|
|
|
5365
5374
|
export declare const RemovePermissionDocument = "\n mutation removePermission($input: RemovePermissionInput!) {\n removePermission(input: $input) {\n ...permission\n }\n}\n \n fragment permission on Permission {\n resource\n subject\n policies\n}\n ";
|
|
5366
5375
|
export declare const GetReactionsDocument = "\n query getReactions($resource: ID!, $withUsers: Boolean = false) {\n reactions(resource: $resource) {\n ...reactions\n subjects @include(if: $withUsers) {\n reaction\n user {\n ...userInfo\n }\n }\n }\n}\n \n fragment reactions on ReactionsSummary {\n counts {\n positive1\n positive2\n positive3\n positive4\n positive5\n negative1\n negative2\n negative3\n negative4\n negative5\n total\n }\n mine\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n ";
|
|
5367
5376
|
export declare const ToggleReactionDocument = "\n mutation toggleReaction($input: ToggleReactionInput!) {\n toggleReaction(input: $input) {\n ...reactions\n }\n}\n \n fragment reactions on ReactionsSummary {\n counts {\n positive1\n positive2\n positive3\n positive4\n positive5\n negative1\n negative2\n negative3\n negative4\n negative5\n total\n }\n mine\n}\n ";
|
|
5368
|
-
export declare const SearchDocument = "\n query search($query: String, $
|
|
5377
|
+
export declare const SearchDocument = "\n query search($query: String, $typename: String, $filters: [ContentSearchFilterInput!], $after: String, $highlight: Boolean, $sorting: SearchSorting) {\n systemTime\n search(\n query: $query\n typename: $typename\n filters: $filters\n after: $after\n highlight: $highlight\n sorting: $sorting\n ) {\n nodes {\n ...searchHit\n }\n pageInfo {\n ...pageInfo\n }\n facets {\n ...facets\n }\n stats {\n searchTime\n found\n outOf\n page\n perPage\n totalPages\n }\n }\n}\n \n fragment searchHit on ContentSearchHit {\n ...space\n ...storage\n ...doc\n ...course\n ...form\n}\n \n\n fragment space on Space {\n ...spaceWithoutContent\n content\n tags\n parent {\n ...record\n }\n}\n \n\n fragment spaceWithoutContent on Space {\n id\n typename\n title\n slug\n thumbnailUrl\n color\n createdAt\n updatedAt\n ttl\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment storage on Storage {\n typename\n id\n version\n createdAt\n updatedAt\n title\n content\n slug\n downloadUrl\n thumbnailUrl\n contentType\n size\n downloads\n views\n imageProcessed\n imageOptimized\n imageAnalyzed\n videoStatus\n videoTranscodeError\n videoTranscodeProgress\n videoM3u8Url\n videoMpdUrl\n isPdfCompatible\n}\n \n\n fragment doc on Doc {\n ...docWithoutContent\n content\n}\n \n\n fragment docWithoutContent on Doc {\n id\n version\n typename\n origin\n identifier\n prefixCode\n title\n slug\n tags\n entities\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n toc\n showToc\n features\n references\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment course on Course {\n ...courseWithoutContent\n content\n}\n \n\n fragment courseWithoutContent on Course {\n id\n version\n typename\n title\n slug\n tags\n duration\n progress\n points\n enrollmentDate\n createdAt\n updatedAt\n ttl\n versionId\n thumbnailUrl\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n}\n \n\n fragment courseChapterWithoutContent on CourseChapter {\n typename\n id\n version\n title\n slug\n duration\n progress\n entries {\n ...courseLessonWithoutContent\n ...courseQuizWithoutContent\n }\n}\n \n\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n \n\n fragment courseQuizWithoutContent on Quiz {\n ...quizWithoutContent\n completedDate\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment form on Form {\n ...formWithoutContent\n content\n}\n \n\n fragment formWithoutContent on Form {\n id\n version\n typename\n slug\n title\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n}\n \n\n fragment pageInfo on PageInfo {\n next\n hasNext\n}\n \n\n fragment facets on ContentSearchFacet {\n ... on SearchResultsFacet {\n name\n values {\n value\n count\n }\n stats {\n min\n max\n }\n }\n ... on AuthorSearchResultsFacet {\n name\n values {\n agent {\n username\n name\n picture\n }\n count\n }\n stats {\n min\n max\n }\n }\n ... on RecordSearchResultsFacet {\n name\n values {\n record {\n id\n title\n slug\n typename\n }\n count\n }\n stats {\n min\n max\n }\n }\n}\n ";
|
|
5369
5378
|
export declare const SearchForFacetValuesDocument = "\n query searchForFacetValues($name: String!, $query: String, $filters: [String!]) {\n searchForFacetValues(name: $name, query: $query, filters: $filters) {\n name\n values {\n count\n value\n }\n }\n}\n ";
|
|
5370
|
-
export declare const SearchForRelatedDocument = "\n query searchForRelated($resourceId: ID!) {\n searchForRelated(resourceId: $resourceId) {\n ...searchHit\n }\n}\n \n fragment searchHit on ContentSearchHit {\n ...space\n ...storage\n ...doc\n ...course\n ...form\n}\n \n\n fragment space on Space {\n ...spaceWithoutContent\n content\n tags\n parent {\n ...record\n }\n}\n \n\n fragment spaceWithoutContent on Space {\n id\n typename\n title\n slug\n thumbnailUrl\n color\n createdAt\n updatedAt\n ttl\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5379
|
+
export declare const SearchForRelatedDocument = "\n query searchForRelated($resourceId: ID!) {\n searchForRelated(resourceId: $resourceId) {\n ...searchHit\n }\n}\n \n fragment searchHit on ContentSearchHit {\n ...space\n ...storage\n ...doc\n ...course\n ...form\n}\n \n\n fragment space on Space {\n ...spaceWithoutContent\n content\n tags\n parent {\n ...record\n }\n}\n \n\n fragment spaceWithoutContent on Space {\n id\n typename\n title\n slug\n thumbnailUrl\n color\n createdAt\n updatedAt\n ttl\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment storage on Storage {\n typename\n id\n version\n createdAt\n updatedAt\n title\n content\n slug\n downloadUrl\n thumbnailUrl\n contentType\n size\n downloads\n views\n imageProcessed\n imageOptimized\n imageAnalyzed\n videoStatus\n videoTranscodeError\n videoTranscodeProgress\n videoM3u8Url\n videoMpdUrl\n isPdfCompatible\n}\n \n\n fragment doc on Doc {\n ...docWithoutContent\n content\n}\n \n\n fragment docWithoutContent on Doc {\n id\n version\n typename\n origin\n identifier\n prefixCode\n title\n slug\n tags\n entities\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n toc\n showToc\n features\n references\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment course on Course {\n ...courseWithoutContent\n content\n}\n \n\n fragment courseWithoutContent on Course {\n id\n version\n typename\n title\n slug\n tags\n duration\n progress\n points\n enrollmentDate\n createdAt\n updatedAt\n ttl\n versionId\n thumbnailUrl\n views\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n chapters {\n ...courseChapterWithoutContent\n }\n}\n \n\n fragment courseChapterWithoutContent on CourseChapter {\n typename\n id\n version\n title\n slug\n duration\n progress\n entries {\n ...courseLessonWithoutContent\n ...courseQuizWithoutContent\n }\n}\n \n\n fragment courseLessonWithoutContent on CourseLesson {\n typename\n id\n version\n title\n slug\n duration\n completedDate\n}\n \n\n fragment courseQuizWithoutContent on Quiz {\n ...quizWithoutContent\n completedDate\n}\n \n\n fragment quizWithoutContent on Quiz {\n id\n version\n typename\n slug\n title\n createdAt\n updatedAt\n duration\n points\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n}\n \n\n fragment form on Form {\n ...formWithoutContent\n content\n}\n \n\n fragment formWithoutContent on Form {\n id\n version\n typename\n slug\n title\n tags\n titleTemplate\n createdAt\n updatedAt\n ttl\n thumbnailUrl\n parent {\n ...record\n }\n authors {\n ...userInfo\n }\n sectionIds\n}\n ";
|
|
5371
5380
|
export declare const SearchTagsForResourceDocument = "\n query searchTagsForResource($resource: String!, $query: String) {\n searchTagsForResource(resource: $resource, query: $query) {\n disableNewTags\n tags {\n name\n stats {\n min\n max\n }\n values {\n value\n count\n }\n }\n }\n}\n ";
|
|
5372
5381
|
export declare const ListSynonymsDocument = "\n query listSynonyms {\n listSynonyms {\n id\n synonyms\n }\n}\n ";
|
|
5373
5382
|
export declare const CreateSynonymsDocument = "\n mutation createSynonyms($input: CreateSynonymsInput!) {\n createSynonyms(input: $input) {\n id\n synonyms\n }\n}\n ";
|
|
@@ -5378,36 +5387,36 @@ export declare const RenameContentsTagDocument = "\n mutation renameContentsT
|
|
|
5378
5387
|
export declare const GetSecuritySettingsDocument = "\n query getSecuritySettings($resource: ID!) {\n securitySettings(resource: $resource) {\n ...securitySettings\n }\n}\n \n fragment securitySettings on SecuritySettings {\n resetPermissionsInheritance\n}\n ";
|
|
5379
5388
|
export declare const SetSecuritySettingsDocument = "\n mutation setSecuritySettings($input: SecuritySettingsInput!) {\n setSecuritySettings(input: $input) {\n ...securitySettings\n }\n}\n \n fragment securitySettings on SecuritySettings {\n resetPermissionsInheritance\n}\n ";
|
|
5380
5389
|
export declare const CreateInitialContentDocument = "\n mutation createInitialContent {\n createInitialContent\n}\n ";
|
|
5381
|
-
export declare const GetSpaceDocument = "\n query getSpace($id: ID!) {\n trail(id: $id) {\n ...record\n }\n space(id: $id) {\n ...space\n spaces {\n ...spaceWithoutContent\n }\n }\n spaceSettings(id: $id, scopes: [\"content\", \"approvals\"]) {\n ...spaceSettings\n }\n}\n \n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5390
|
+
export declare const GetSpaceDocument = "\n query getSpace($id: ID!) {\n trail(id: $id) {\n ...record\n }\n space(id: $id) {\n ...space\n spaces {\n ...spaceWithoutContent\n }\n }\n spaceSettings(id: $id, scopes: [\"content\", \"approvals\"]) {\n ...spaceSettings\n }\n}\n \n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment space on Space {\n ...spaceWithoutContent\n content\n tags\n parent {\n ...record\n }\n}\n \n\n fragment spaceWithoutContent on Space {\n id\n typename\n title\n slug\n thumbnailUrl\n color\n createdAt\n updatedAt\n ttl\n}\n \n\n fragment spaceSettings on SpaceSettings {\n content {\n ...spaceContentSettings\n }\n approvals {\n ...spaceApprovalSettings\n }\n}\n \n\n fragment spaceContentSettings on SpaceContentSettings {\n disableNewTags\n defaultSorting\n childSpacesOrder\n allowedContentTypes\n showParentOnlyChildren\n daysAfterPublishToRequireReview\n prefixCodes\n}\n \n\n fragment spaceApprovalSettings on SpaceApprovalSettings {\n approvalFlowsByTypename {\n Docs\n Courses\n Forms\n }\n}\n ";
|
|
5382
5391
|
export declare const GetSpacesDocument = "\n query getSpaces($parent: String!) {\n spaces(parent: $parent) {\n ...spaceWithoutContent\n }\n}\n \n fragment spaceWithoutContent on Space {\n id\n typename\n title\n slug\n thumbnailUrl\n color\n createdAt\n updatedAt\n ttl\n}\n ";
|
|
5383
|
-
export declare const ListSpaceContentsDocument = "\n query listSpaceContents($parent: String!, $next: String) {\n spaceContents(parent: $parent, next: $next) {\n nodes {\n ...record\n }\n pageInfo {\n ...pageInfo\n }\n }\n}\n \n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5392
|
+
export declare const ListSpaceContentsDocument = "\n query listSpaceContents($parent: String!, $next: String) {\n spaceContents(parent: $parent, next: $next) {\n nodes {\n ...record\n }\n pageInfo {\n ...pageInfo\n }\n }\n}\n \n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment pageInfo on PageInfo {\n next\n hasNext\n}\n ";
|
|
5384
5393
|
export declare const GetSpaceSettingsDocument = "\n query getSpaceSettings($id: ID!, $scopes: [String!]) {\n spaceSettings(id: $id, scopes: $scopes) {\n ...spaceSettings\n }\n}\n \n fragment spaceSettings on SpaceSettings {\n content {\n ...spaceContentSettings\n }\n approvals {\n ...spaceApprovalSettings\n }\n}\n \n\n fragment spaceContentSettings on SpaceContentSettings {\n disableNewTags\n defaultSorting\n childSpacesOrder\n allowedContentTypes\n showParentOnlyChildren\n daysAfterPublishToRequireReview\n prefixCodes\n}\n \n\n fragment spaceApprovalSettings on SpaceApprovalSettings {\n approvalFlowsByTypename {\n Docs\n Courses\n Forms\n }\n}\n ";
|
|
5385
5394
|
export declare const GetSpaceAllowedContentTypesDocument = "\n query getSpaceAllowedContentTypes($id: ID!) {\n spaceAllowedContentTypes(id: $id) {\n ...contentType\n }\n}\n \n fragment contentType on SpaceContentType {\n typename\n title\n isApp\n}\n ";
|
|
5386
5395
|
export declare const GetAllAllowedContentTypesDocument = "\n query getAllAllowedContentTypes($id: ID!) {\n allAllowedContentTypes(id: $id) {\n ...contentType\n }\n}\n \n fragment contentType on SpaceContentType {\n typename\n title\n isApp\n}\n ";
|
|
5387
5396
|
export declare const ListAvailablePrefixCodesDocument = "\n query listAvailablePrefixCodes($id: ID!) {\n listAvailablePrefixCodes(id: $id)\n}\n ";
|
|
5388
|
-
export declare const CreateSpaceDocument = "\n mutation createSpace($input: CreateSpaceInput!) {\n createSpace(input: $input) {\n ...space\n }\n}\n \n fragment space on Space {\n ...spaceWithoutContent\n content\n tags\n parent {\n ...record\n }\n}\n \n\n fragment spaceWithoutContent on Space {\n id\n typename\n title\n slug\n thumbnailUrl\n color\n createdAt\n updatedAt\n ttl\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5389
|
-
export declare const UpdateSpaceDocument = "\n mutation updateSpace($input: UpdateSpaceInput!) {\n updateSpace(input: $input) {\n ...space\n }\n}\n \n fragment space on Space {\n ...spaceWithoutContent\n content\n tags\n parent {\n ...record\n }\n}\n \n\n fragment spaceWithoutContent on Space {\n id\n typename\n title\n slug\n thumbnailUrl\n color\n createdAt\n updatedAt\n ttl\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5390
|
-
export declare const MoveSpaceChildrenDocument = "\n mutation moveSpaceChildren($input: MoveSpaceChildrenInput!) {\n moveSpaceChildren(input: $input) {\n ...space\n }\n}\n \n fragment space on Space {\n ...spaceWithoutContent\n content\n tags\n parent {\n ...record\n }\n}\n \n\n fragment spaceWithoutContent on Space {\n id\n typename\n title\n slug\n thumbnailUrl\n color\n createdAt\n updatedAt\n ttl\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5391
|
-
export declare const MoveSpaceChildDocument = "\n mutation moveSpaceChild($input: MoveChildContentInput!) {\n moveSpaceChild(input: $input) {\n ...space\n }\n}\n \n fragment space on Space {\n ...spaceWithoutContent\n content\n tags\n parent {\n ...record\n }\n}\n \n\n fragment spaceWithoutContent on Space {\n id\n typename\n title\n slug\n thumbnailUrl\n color\n createdAt\n updatedAt\n ttl\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5392
|
-
export declare const RemoveSpaceDocument = "\n mutation removeSpace($input: RemoveSpaceInput!) {\n removeSpace(input: $input) {\n ...space\n }\n}\n \n fragment space on Space {\n ...spaceWithoutContent\n content\n tags\n parent {\n ...record\n }\n}\n \n\n fragment spaceWithoutContent on Space {\n id\n typename\n title\n slug\n thumbnailUrl\n color\n createdAt\n updatedAt\n ttl\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5397
|
+
export declare const CreateSpaceDocument = "\n mutation createSpace($input: CreateSpaceInput!) {\n createSpace(input: $input) {\n ...space\n }\n}\n \n fragment space on Space {\n ...spaceWithoutContent\n content\n tags\n parent {\n ...record\n }\n}\n \n\n fragment spaceWithoutContent on Space {\n id\n typename\n title\n slug\n thumbnailUrl\n color\n createdAt\n updatedAt\n ttl\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n ";
|
|
5398
|
+
export declare const UpdateSpaceDocument = "\n mutation updateSpace($input: UpdateSpaceInput!) {\n updateSpace(input: $input) {\n ...space\n }\n}\n \n fragment space on Space {\n ...spaceWithoutContent\n content\n tags\n parent {\n ...record\n }\n}\n \n\n fragment spaceWithoutContent on Space {\n id\n typename\n title\n slug\n thumbnailUrl\n color\n createdAt\n updatedAt\n ttl\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n ";
|
|
5399
|
+
export declare const MoveSpaceChildrenDocument = "\n mutation moveSpaceChildren($input: MoveSpaceChildrenInput!) {\n moveSpaceChildren(input: $input) {\n ...space\n }\n}\n \n fragment space on Space {\n ...spaceWithoutContent\n content\n tags\n parent {\n ...record\n }\n}\n \n\n fragment spaceWithoutContent on Space {\n id\n typename\n title\n slug\n thumbnailUrl\n color\n createdAt\n updatedAt\n ttl\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n ";
|
|
5400
|
+
export declare const MoveSpaceChildDocument = "\n mutation moveSpaceChild($input: MoveChildContentInput!) {\n moveSpaceChild(input: $input) {\n ...space\n }\n}\n \n fragment space on Space {\n ...spaceWithoutContent\n content\n tags\n parent {\n ...record\n }\n}\n \n\n fragment spaceWithoutContent on Space {\n id\n typename\n title\n slug\n thumbnailUrl\n color\n createdAt\n updatedAt\n ttl\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n ";
|
|
5401
|
+
export declare const RemoveSpaceDocument = "\n mutation removeSpace($input: RemoveSpaceInput!) {\n removeSpace(input: $input) {\n ...space\n }\n}\n \n fragment space on Space {\n ...spaceWithoutContent\n content\n tags\n parent {\n ...record\n }\n}\n \n\n fragment spaceWithoutContent on Space {\n id\n typename\n title\n slug\n thumbnailUrl\n color\n createdAt\n updatedAt\n ttl\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n ";
|
|
5393
5402
|
export declare const SetSpaceContentSettingsDocument = "\n mutation setSpaceContentSettings($input: SpaceContentSettingsInput!) {\n setSpaceContentSettings(input: $input) {\n ...spaceContentSettings\n }\n}\n \n fragment spaceContentSettings on SpaceContentSettings {\n disableNewTags\n defaultSorting\n childSpacesOrder\n allowedContentTypes\n showParentOnlyChildren\n daysAfterPublishToRequireReview\n prefixCodes\n}\n ";
|
|
5394
5403
|
export declare const SetSpaceApprovalsSettingsDocument = "\n mutation setSpaceApprovalsSettings($input: SpaceApprovalsSettingsInput!) {\n setSpaceApprovalsSettings(input: $input) {\n ...spaceApprovalSettings\n }\n}\n \n fragment spaceApprovalSettings on SpaceApprovalSettings {\n approvalFlowsByTypename {\n Docs\n Courses\n Forms\n }\n}\n ";
|
|
5395
|
-
export declare const GetFileDocument = "\n query getFile($id: ID!) {\n trail(id: $id) {\n ...record\n }\n file(id: $id) {\n ...storage\n }\n}\n \n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5404
|
+
export declare const GetFileDocument = "\n query getFile($id: ID!) {\n trail(id: $id) {\n ...record\n }\n file(id: $id) {\n ...storage\n }\n}\n \n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment storage on Storage {\n typename\n id\n version\n createdAt\n updatedAt\n title\n content\n slug\n downloadUrl\n thumbnailUrl\n contentType\n size\n downloads\n views\n imageProcessed\n imageOptimized\n imageAnalyzed\n videoStatus\n videoTranscodeError\n videoTranscodeProgress\n videoM3u8Url\n videoMpdUrl\n isPdfCompatible\n}\n ";
|
|
5396
5405
|
export declare const GetFilesDocument = "\n query getFiles($parent: ID!, $after: String, $limit: Int) {\n files(parent: $parent, after: $after, limit: $limit) {\n nodes {\n ...storage\n }\n pageInfo {\n ...pageInfo\n }\n }\n}\n \n fragment storage on Storage {\n typename\n id\n version\n createdAt\n updatedAt\n title\n content\n slug\n downloadUrl\n thumbnailUrl\n contentType\n size\n downloads\n views\n imageProcessed\n imageOptimized\n imageAnalyzed\n videoStatus\n videoTranscodeError\n videoTranscodeProgress\n videoM3u8Url\n videoMpdUrl\n isPdfCompatible\n}\n \n\n fragment pageInfo on PageInfo {\n next\n hasNext\n}\n ";
|
|
5397
5406
|
export declare const ConvertStorageToHtmlDocument = "\n mutation convertStorageToHtml($storageId: ID!) {\n convertStorageToHtml(storageId: $storageId)\n}\n ";
|
|
5398
5407
|
export declare const OnFileDocument = "\n subscription onFile($id: ID!) {\n onFile(id: $id) {\n ...storage\n }\n}\n \n fragment storage on Storage {\n typename\n id\n version\n createdAt\n updatedAt\n title\n content\n slug\n downloadUrl\n thumbnailUrl\n contentType\n size\n downloads\n views\n imageProcessed\n imageOptimized\n imageAnalyzed\n videoStatus\n videoTranscodeError\n videoTranscodeProgress\n videoM3u8Url\n videoMpdUrl\n isPdfCompatible\n}\n ";
|
|
5399
5408
|
export declare const OnFilesDocument = "\n subscription onFiles($parent: ID!) {\n onFiles(parent: $parent) {\n ...storage\n }\n}\n \n fragment storage on Storage {\n typename\n id\n version\n createdAt\n updatedAt\n title\n content\n slug\n downloadUrl\n thumbnailUrl\n contentType\n size\n downloads\n views\n imageProcessed\n imageOptimized\n imageAnalyzed\n videoStatus\n videoTranscodeError\n videoTranscodeProgress\n videoM3u8Url\n videoMpdUrl\n isPdfCompatible\n}\n ";
|
|
5400
5409
|
export declare const GetSystemInfoDocument = "\n query getSystemInfo {\n systemInfo {\n ...systemInfo\n }\n}\n \n fragment systemInfo on SystemInfo {\n region\n stage\n version\n apiEndpoint\n graphqlEndpoint\n realtimeEndpoint\n authInfo {\n ...authInfo\n }\n}\n \n\n fragment authInfo on AuthInfo {\n loginUrl\n logoutUrl\n authenticationEndpoint\n cognitoConfig {\n region\n userPoolId\n userPoolWebClientId\n }\n}\n ";
|
|
5401
5410
|
export declare const GetSystemTimeDocument = "\n query getSystemTime {\n systemTime\n}\n ";
|
|
5402
|
-
export declare const BootstrapDocument = "\n query bootstrap {\n session {\n ...session\n }\n systemInfo {\n ...systemInfo\n }\n organizationSettings(\n scopes: [info, content, reactions, typography, theme, security, usage, license]\n ) {\n info {\n ...organizationSettingsInfo\n }\n content {\n ...organizationSettingsContent\n }\n reactions {\n ...organizationSettingsReactions\n }\n typography {\n ...organizationSettingsTypography\n }\n theme {\n ...organizationSettingsTheme\n }\n security {\n ...organizationSettingsSecurity\n }\n license {\n ...organizationSettingsLicense\n }\n usage {\n ...organizationSettingsUsage\n }\n }\n apps {\n ...app\n }\n spaces(parent: \"ROOT\") {\n ...space\n }\n}\n \n fragment session on Session {\n token_use\n sub\n name\n email\n picture\n groups\n error {\n code\n message\n }\n}\n \n\n fragment systemInfo on SystemInfo {\n region\n stage\n version\n apiEndpoint\n graphqlEndpoint\n realtimeEndpoint\n authInfo {\n ...authInfo\n }\n}\n \n\n fragment authInfo on AuthInfo {\n loginUrl\n logoutUrl\n authenticationEndpoint\n cognitoConfig {\n region\n userPoolId\n userPoolWebClientId\n }\n}\n \n\n fragment organizationSettingsInfo on OrganizationSettingsInfo {\n title\n logo\n description\n content\n showTitleOnHomePage\n showLogoOnHomePage\n domain\n}\n \n\n fragment organizationSettingsContent on OrganizationSettingsContent {\n requireTags\n enableAnswers\n notifyRecordUpdates\n scriptsHeader\n scriptsFooter\n}\n \n\n fragment organizationSettingsReactions on OrganizationSettingsReactions {\n positive1\n positive2\n positive3\n positive4\n positive5\n negative1\n negative2\n negative3\n negative4\n negative5\n}\n \n\n fragment organizationSettingsTypography on OrganizationSettingsTypography {\n fontFamily\n letterSpacing\n h1 {\n ...typographyStyle\n }\n h2 {\n ...typographyStyle\n }\n h3 {\n ...typographyStyle\n }\n h4 {\n ...typographyStyle\n }\n h5 {\n ...typographyStyle\n }\n h6 {\n ...typographyStyle\n }\n p {\n ...typographyStyle\n }\n cssStyle\n}\n \n\n fragment typographyStyle on TypographyStyle {\n color\n fontSize\n fontVariant\n fontWeight\n letterSpacing\n lineHeight\n marginBottom\n marginTop\n textTransform\n}\n \n\n fragment organizationSettingsTheme on OrganizationSettingsTheme {\n enabled\n primaryColor\n backgroundImage\n showUnsplashInfo\n keepThemeOnHeader\n clipPath\n}\n \n\n fragment organizationSettingsSecurity on OrganizationSettingsSecurity {\n requiresAuthentication\n doNotAllowUserSignup\n allowedEmailDomains\n allowedIPs\n allowedContentTypes\n maxFileSizeInBytes\n sessionCookieSameSite\n}\n \n\n fragment organizationSettingsLicense on OrganizationSettingsLicense {\n storageInBytes\n maxUsers\n readOnly\n}\n \n\n fragment organizationSettingsUsage on OrganizationSettingsUsage {\n storageInBytes\n}\n \n\n fragment app on App {\n typename\n enabled\n}\n \n\n fragment space on Space {\n ...spaceWithoutContent\n content\n tags\n parent {\n ...record\n }\n}\n \n\n fragment spaceWithoutContent on Space {\n id\n typename\n title\n slug\n thumbnailUrl\n color\n createdAt\n updatedAt\n ttl\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5403
|
-
export declare const GetTaskDocument = "\n query getTask($id: ID!) {\n task(id: $id) {\n ...task\n }\n}\n \n fragment task on Task {\n id\n assignees {\n ...userInfo\n }\n action\n content\n createdAt\n updatedAt\n record {\n ...recordWithParent\n }\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment recordWithParent on Record {\n ...record\n parent {\n id\n slug\n title\n typename\n color\n thumbnailUrl\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5404
|
-
export declare const GetUserTasksDocument = "\n query getUserTasks($after: String, $limit: Int) {\n userTasks(after: $after, limit: $limit) {\n nodes {\n ...task\n }\n pageInfo {\n ...pageInfo\n }\n }\n}\n \n fragment task on Task {\n id\n assignees {\n ...userInfo\n }\n action\n content\n createdAt\n updatedAt\n record {\n ...recordWithParent\n }\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment recordWithParent on Record {\n ...record\n parent {\n id\n slug\n title\n typename\n color\n thumbnailUrl\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5405
|
-
export declare const LeaveTaskDocument = "\n mutation leaveTask($input: LeaveTaskInput!) {\n leaveTask(input: $input) {\n ...task\n }\n}\n \n fragment task on Task {\n id\n assignees {\n ...userInfo\n }\n action\n content\n createdAt\n updatedAt\n record {\n ...recordWithParent\n }\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment recordWithParent on Record {\n ...record\n parent {\n id\n slug\n title\n typename\n color\n thumbnailUrl\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5406
|
-
export declare const RemoveTaskDocument = "\n mutation removeTask($input: RemoveTaskInput!) {\n removeTask(input: $input) {\n ...task\n }\n}\n \n fragment task on Task {\n id\n assignees {\n ...userInfo\n }\n action\n content\n createdAt\n updatedAt\n record {\n ...recordWithParent\n }\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment recordWithParent on Record {\n ...record\n parent {\n id\n slug\n title\n typename\n color\n thumbnailUrl\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5407
|
-
export declare const OnTasksDocument = "\n subscription onTasks {\n onTasks {\n ...task\n }\n}\n \n fragment task on Task {\n id\n assignees {\n ...userInfo\n }\n action\n content\n createdAt\n updatedAt\n record {\n ...recordWithParent\n }\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment recordWithParent on Record {\n ...record\n parent {\n id\n slug\n title\n typename\n color\n thumbnailUrl\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5408
|
-
export declare const GetUserDraftsDocument = "\n query getUserDrafts($after: String, $limit: Int) {\n userDrafts(after: $after, limit: $limit) {\n nodes {\n ...recordWithParent\n }\n pageInfo {\n ...pageInfo\n }\n }\n}\n \n fragment recordWithParent on Record {\n ...record\n parent {\n id\n slug\n title\n typename\n color\n thumbnailUrl\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5411
|
+
export declare const BootstrapDocument = "\n query bootstrap {\n session {\n ...session\n }\n systemInfo {\n ...systemInfo\n }\n organizationSettings(\n scopes: [info, content, reactions, typography, theme, security, usage, license]\n ) {\n info {\n ...organizationSettingsInfo\n }\n content {\n ...organizationSettingsContent\n }\n reactions {\n ...organizationSettingsReactions\n }\n typography {\n ...organizationSettingsTypography\n }\n theme {\n ...organizationSettingsTheme\n }\n security {\n ...organizationSettingsSecurity\n }\n license {\n ...organizationSettingsLicense\n }\n usage {\n ...organizationSettingsUsage\n }\n }\n apps {\n ...app\n }\n spaces(parent: \"ROOT\") {\n ...space\n }\n}\n \n fragment session on Session {\n token_use\n sub\n name\n email\n picture\n groups\n error {\n code\n message\n }\n}\n \n\n fragment systemInfo on SystemInfo {\n region\n stage\n version\n apiEndpoint\n graphqlEndpoint\n realtimeEndpoint\n authInfo {\n ...authInfo\n }\n}\n \n\n fragment authInfo on AuthInfo {\n loginUrl\n logoutUrl\n authenticationEndpoint\n cognitoConfig {\n region\n userPoolId\n userPoolWebClientId\n }\n}\n \n\n fragment organizationSettingsInfo on OrganizationSettingsInfo {\n title\n logo\n description\n content\n showTitleOnHomePage\n showLogoOnHomePage\n domain\n}\n \n\n fragment organizationSettingsContent on OrganizationSettingsContent {\n requireTags\n enableAnswers\n notifyRecordUpdates\n scriptsHeader\n scriptsFooter\n}\n \n\n fragment organizationSettingsReactions on OrganizationSettingsReactions {\n positive1\n positive2\n positive3\n positive4\n positive5\n negative1\n negative2\n negative3\n negative4\n negative5\n}\n \n\n fragment organizationSettingsTypography on OrganizationSettingsTypography {\n fontFamily\n letterSpacing\n h1 {\n ...typographyStyle\n }\n h2 {\n ...typographyStyle\n }\n h3 {\n ...typographyStyle\n }\n h4 {\n ...typographyStyle\n }\n h5 {\n ...typographyStyle\n }\n h6 {\n ...typographyStyle\n }\n p {\n ...typographyStyle\n }\n cssStyle\n}\n \n\n fragment typographyStyle on TypographyStyle {\n color\n fontSize\n fontVariant\n fontWeight\n letterSpacing\n lineHeight\n marginBottom\n marginTop\n textTransform\n}\n \n\n fragment organizationSettingsTheme on OrganizationSettingsTheme {\n enabled\n primaryColor\n backgroundImage\n showUnsplashInfo\n keepThemeOnHeader\n clipPath\n}\n \n\n fragment organizationSettingsSecurity on OrganizationSettingsSecurity {\n requiresAuthentication\n doNotAllowUserSignup\n allowedEmailDomains\n allowedIPs\n allowedContentTypes\n maxFileSizeInBytes\n sessionCookieSameSite\n}\n \n\n fragment organizationSettingsLicense on OrganizationSettingsLicense {\n storageInBytes\n maxUsers\n readOnly\n}\n \n\n fragment organizationSettingsUsage on OrganizationSettingsUsage {\n storageInBytes\n}\n \n\n fragment app on App {\n typename\n enabled\n}\n \n\n fragment space on Space {\n ...spaceWithoutContent\n content\n tags\n parent {\n ...record\n }\n}\n \n\n fragment spaceWithoutContent on Space {\n id\n typename\n title\n slug\n thumbnailUrl\n color\n createdAt\n updatedAt\n ttl\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n ";
|
|
5412
|
+
export declare const GetTaskDocument = "\n query getTask($id: ID!) {\n task(id: $id) {\n ...task\n }\n}\n \n fragment task on Task {\n id\n assignees {\n ...userInfo\n }\n action\n content\n createdAt\n updatedAt\n record {\n ...recordWithParent\n }\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment recordWithParent on Record {\n ...record\n parent {\n id\n slug\n title\n typename\n color\n thumbnailUrl\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n ";
|
|
5413
|
+
export declare const GetUserTasksDocument = "\n query getUserTasks($after: String, $limit: Int) {\n userTasks(after: $after, limit: $limit) {\n nodes {\n ...task\n }\n pageInfo {\n ...pageInfo\n }\n }\n}\n \n fragment task on Task {\n id\n assignees {\n ...userInfo\n }\n action\n content\n createdAt\n updatedAt\n record {\n ...recordWithParent\n }\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment recordWithParent on Record {\n ...record\n parent {\n id\n slug\n title\n typename\n color\n thumbnailUrl\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment pageInfo on PageInfo {\n next\n hasNext\n}\n ";
|
|
5414
|
+
export declare const LeaveTaskDocument = "\n mutation leaveTask($input: LeaveTaskInput!) {\n leaveTask(input: $input) {\n ...task\n }\n}\n \n fragment task on Task {\n id\n assignees {\n ...userInfo\n }\n action\n content\n createdAt\n updatedAt\n record {\n ...recordWithParent\n }\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment recordWithParent on Record {\n ...record\n parent {\n id\n slug\n title\n typename\n color\n thumbnailUrl\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n ";
|
|
5415
|
+
export declare const RemoveTaskDocument = "\n mutation removeTask($input: RemoveTaskInput!) {\n removeTask(input: $input) {\n ...task\n }\n}\n \n fragment task on Task {\n id\n assignees {\n ...userInfo\n }\n action\n content\n createdAt\n updatedAt\n record {\n ...recordWithParent\n }\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment recordWithParent on Record {\n ...record\n parent {\n id\n slug\n title\n typename\n color\n thumbnailUrl\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n ";
|
|
5416
|
+
export declare const OnTasksDocument = "\n subscription onTasks {\n onTasks {\n ...task\n }\n}\n \n fragment task on Task {\n id\n assignees {\n ...userInfo\n }\n action\n content\n createdAt\n updatedAt\n record {\n ...recordWithParent\n }\n}\n \n\n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n \n\n fragment recordWithParent on Record {\n ...record\n parent {\n id\n slug\n title\n typename\n color\n thumbnailUrl\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n ";
|
|
5417
|
+
export declare const GetUserDraftsDocument = "\n query getUserDrafts($after: String, $limit: Int) {\n userDrafts(after: $after, limit: $limit) {\n nodes {\n ...recordWithParent\n }\n pageInfo {\n ...pageInfo\n }\n }\n}\n \n fragment recordWithParent on Record {\n ...record\n parent {\n id\n slug\n title\n typename\n color\n thumbnailUrl\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment pageInfo on PageInfo {\n next\n hasNext\n}\n ";
|
|
5409
5418
|
export declare const GetUserPrefsDocument = "\n query getUserPrefs($scope: String!) {\n userPrefs(scope: $scope)\n globalUserPrefs: userPrefs(scope: \"GLOBAL\")\n}\n ";
|
|
5410
|
-
export declare const GetUserFavoritesDocument = "\n query getUserFavorites($after: String, $limit: Int) {\n userFavorites(after: $after, limit: $limit) {\n nodes {\n ...recordWithParent\n }\n pageInfo {\n ...pageInfo\n }\n }\n}\n \n fragment recordWithParent on Record {\n ...record\n parent {\n id\n slug\n title\n typename\n color\n thumbnailUrl\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5419
|
+
export declare const GetUserFavoritesDocument = "\n query getUserFavorites($after: String, $limit: Int) {\n userFavorites(after: $after, limit: $limit) {\n nodes {\n ...recordWithParent\n }\n pageInfo {\n ...pageInfo\n }\n }\n}\n \n fragment recordWithParent on Record {\n ...record\n parent {\n id\n slug\n title\n typename\n color\n thumbnailUrl\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n \n\n fragment pageInfo on PageInfo {\n next\n hasNext\n}\n ";
|
|
5411
5420
|
export declare const IsUserFavoriteDocument = "\n query isUserFavorite($ref: ID!) {\n userFavorite(ref: $ref)\n}\n ";
|
|
5412
5421
|
export declare const SearchUsersDocument = "\n query searchUsers($query: String!) {\n searchUsers(query: $query) {\n ...userInfo\n }\n}\n \n fragment userInfo on UserInfo {\n username\n name\n picture\n enabled\n bio\n department\n}\n ";
|
|
5413
5422
|
export declare const SetUserPrefsDocument = "\n mutation setUserPrefs($scope: String, $value: JSON) {\n setUserPrefs(scope: $scope, value: $value)\n}\n ";
|
|
@@ -5415,7 +5424,7 @@ export declare const SaveFavoriteDocument = "\n mutation saveFavorite($ref: I
|
|
|
5415
5424
|
export declare const RemoveFavoriteDocument = "\n mutation removeFavorite($ref: ID!) {\n removeFavorite(ref: $ref)\n}\n ";
|
|
5416
5425
|
export declare const RemoveDraftDocument = "\n mutation removeDraft($ref: ID!) {\n removeDraft(ref: $ref)\n}\n ";
|
|
5417
5426
|
export declare const ReindexUsersDocument = "\n mutation reindexUsers {\n reindexUsers\n}\n ";
|
|
5418
|
-
export declare const OnDraftsDocument = "\n subscription onDrafts {\n onDrafts {\n ...recordWithParent\n }\n}\n \n fragment recordWithParent on Record {\n ...record\n parent {\n id\n slug\n title\n typename\n color\n thumbnailUrl\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n
|
|
5427
|
+
export declare const OnDraftsDocument = "\n subscription onDrafts {\n onDrafts {\n ...recordWithParent\n }\n}\n \n fragment recordWithParent on Record {\n ...record\n parent {\n id\n slug\n title\n typename\n color\n thumbnailUrl\n }\n}\n \n\n fragment record on Record {\n id\n slug\n title\n trail\n typename\n color\n thumbnailUrl\n downloadUrl\n origin\n identifier\n createdAt\n updatedAt\n status\n}\n ";
|
|
5419
5428
|
export declare const GetWebhookDocument = "\n query getWebhook($id: ID!) {\n getWebhook(id: $id) {\n ...webhook\n }\n}\n \n fragment webhook on Webhook {\n id\n title\n endpoint\n events\n token\n status\n}\n ";
|
|
5420
5429
|
export declare const ListWebhooksDocument = "\n query listWebhooks {\n listWebhooks {\n ...webhook\n }\n}\n \n fragment webhook on Webhook {\n id\n title\n endpoint\n events\n token\n status\n}\n ";
|
|
5421
5430
|
export declare const CreateWebhookDocument = "\n mutation createWebhook($input: CreateWebhookInput!) {\n createWebhook(input: $input) {\n ...webhook\n }\n}\n \n fragment webhook on Webhook {\n id\n title\n endpoint\n events\n token\n status\n}\n ";
|
package/src/sdks/drozbase.js
CHANGED
|
@@ -291,7 +291,6 @@ exports.RecordFragmentDoc = `
|
|
|
291
291
|
identifier
|
|
292
292
|
createdAt
|
|
293
293
|
updatedAt
|
|
294
|
-
reindexedAt
|
|
295
294
|
status
|
|
296
295
|
}
|
|
297
296
|
`;
|
|
@@ -3604,12 +3603,10 @@ exports.ToggleReactionDocument = `
|
|
|
3604
3603
|
}
|
|
3605
3604
|
${exports.ReactionsFragmentDoc}`;
|
|
3606
3605
|
exports.SearchDocument = `
|
|
3607
|
-
query search($query: String, $
|
|
3606
|
+
query search($query: String, $typename: String, $filters: [ContentSearchFilterInput!], $after: String, $highlight: Boolean, $sorting: SearchSorting) {
|
|
3608
3607
|
systemTime
|
|
3609
3608
|
search(
|
|
3610
3609
|
query: $query
|
|
3611
|
-
similarQuery: $similarQuery
|
|
3612
|
-
parent: $parent
|
|
3613
3610
|
typename: $typename
|
|
3614
3611
|
filters: $filters
|
|
3615
3612
|
after: $after
|