-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathschema.generated.graphql
More file actions
4150 lines (3485 loc) · 95.4 KB
/
Copy pathschema.generated.graphql
File metadata and controls
4150 lines (3485 loc) · 95.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
directive @loginRequired(withoutTwoFactor: Boolean) on FIELD_DEFINITION
type AccessmodAccessRequest {
acceptedTos: Boolean!
createdAt: DateTime!
email: String!
firstName: String!
id: String!
lastName: String!
status: AccessmodAccessRequestStatus!
updatedAt: DateTime!
}
type AccessmodAccessRequestPage {
items: [AccessmodAccessRequest!]!
pageNumber: Int!
totalItems: Int!
totalPages: Int!
}
enum AccessmodAccessRequestStatus {
APPROVED
DENIED
PENDING
}
type AccessmodAccessibilityAnalysis implements AccessmodAnalysis & AccessmodOwnership {
algorithm: AccessmodAccessibilityAnalysisAlgorithm
author: User!
barrier: AccessmodFileset
createdAt: DateTime!
dem: AccessmodFileset
frictionSurface: AccessmodFileset
healthFacilities: AccessmodFileset
id: String!
invertDirection: Boolean
knightMove: Boolean
landCover: AccessmodFileset
maxTravelTime: Int
movingSpeeds: MovingSpeeds
name: String!
owner: AccessmodOwner
permissions: AccessmodAnalysisPermissions!
stack: AccessmodFileset
stackPriorities: StackPriorities
status: AccessmodAnalysisStatus!
transportNetwork: AccessmodFileset
travelTimes: AccessmodFileset
type: AccessmodAnalysisType!
updatedAt: DateTime!
water: AccessmodFileset
waterAllTouched: Boolean
}
enum AccessmodAccessibilityAnalysisAlgorithm {
ANISOTROPIC
ISOTROPIC
}
interface AccessmodAnalysis {
author: User!
createdAt: DateTime!
id: String!
name: String!
permissions: AccessmodAnalysisPermissions!
status: AccessmodAnalysisStatus!
type: AccessmodAnalysisType!
updatedAt: DateTime!
}
type AccessmodAnalysisPage {
items: [AccessmodAnalysis!]!
pageNumber: Int!
totalItems: Int!
totalPages: Int!
}
type AccessmodAnalysisPermissions {
delete: Boolean!
run: Boolean!
update: Boolean!
}
enum AccessmodAnalysisStatus {
DRAFT
FAILED
QUEUED
READY
RUNNING
SUCCESS
}
enum AccessmodAnalysisType {
ACCESSIBILITY
GEOGRAPHIC_COVERAGE
ZONAL_STATISTICS
}
type AccessmodFile {
createdAt: DateTime!
fileset: AccessmodFileset
id: String!
mimeType: String!
name: String!
updatedAt: DateTime!
uri: String!
}
type AccessmodFileset implements AccessmodOwnership {
author: User!
createdAt: DateTime!
files: [AccessmodFile!]!
id: String!
metadata: AccessmodFilesetMetadata!
mode: AccessmodFilesetMode!
name: String!
owner: AccessmodOwner
permissions: AccessmodFilesetPermissions!
role: AccessmodFilesetRole!
status: AccessmodFilesetStatus!
updatedAt: DateTime!
}
enum AccessmodFilesetFormat {
RASTER
TABULAR
VECTOR
}
scalar AccessmodFilesetMetadata
enum AccessmodFilesetMode {
AUTOMATIC_ACQUISITION
USER_INPUT
}
type AccessmodFilesetPage {
items: [AccessmodFileset!]!
pageNumber: Int!
totalItems: Int!
totalPages: Int!
}
type AccessmodFilesetPermissions {
createFile: Boolean!
delete: Boolean!
update: Boolean!
}
type AccessmodFilesetRole {
code: AccessmodFilesetRoleCode!
createdAt: DateTime!
format: AccessmodFilesetFormat!
id: String!
name: String!
updatedAt: DateTime!
}
enum AccessmodFilesetRoleCode {
BARRIER
BOUNDARIES
COVERAGE
DEM
FRICTION_SURFACE
GEOMETRY
HEALTH_FACILITIES
LAND_COVER
POPULATION
STACK
TRANSPORT_NETWORK
TRAVEL_TIMES
WATER
ZONAL_STATISTICS
ZONAL_STATISTICS_TABLE
}
enum AccessmodFilesetStatus {
INVALID
PENDING
TO_ACQUIRE
VALID
VALIDATING
}
type AccessmodGeographicCoverageAnalysis implements AccessmodAnalysis & AccessmodOwnership {
anisotropic: Boolean
author: User!
catchmentAreas: AccessmodFileset
createdAt: DateTime!
dem: AccessmodFileset
frictionSurface: AccessmodFileset
geographicCoverage: AccessmodFileset
healthFacilities: AccessmodFileset
hfProcessingOrder: String
id: String!
maxTravelTime: Int
name: String!
owner: AccessmodOwner
permissions: AccessmodAnalysisPermissions!
population: AccessmodFileset
status: AccessmodAnalysisStatus!
type: AccessmodAnalysisType!
updatedAt: DateTime!
}
union AccessmodOwner = Team | User
interface AccessmodOwnership {
owner: AccessmodOwner
}
type AccessmodProject implements AccessmodOwnership {
author: User!
country: Country!
createdAt: DateTime!
crs: Int!
dem: AccessmodFileset
description: String!
extent: [[Float!]!]
id: String!
members: [AccessmodProjectMember!]!
name: String!
owner: AccessmodOwner
permissions: AccessmodProjectPermissions!
spatialResolution: Int!
updatedAt: DateTime!
}
type AccessmodProjectMember {
createdAt: DateTime!
id: String!
mode: PermissionMode!
permissions: AccessmodProjectMemberPermissions!
project: AccessmodProject!
team: Team
updatedAt: DateTime!
user: User
}
type AccessmodProjectMemberPermissions {
delete: Boolean!
update: Boolean!
}
enum AccessmodProjectOrder {
NAME_ASC
NAME_DESC
UPDATED_AT_ASC
UPDATED_AT_DESC
}
type AccessmodProjectPage {
items: [AccessmodProject!]!
pageNumber: Int!
totalItems: Int!
totalPages: Int!
}
type AccessmodProjectPermissions {
createAnalysis: Boolean!
createFileset: Boolean!
createMember: Boolean!
createPermission: Boolean!
delete: Boolean!
update: Boolean!
}
type AccessmodZonalStatistics implements AccessmodAnalysis & AccessmodOwnership {
author: User!
boundaries: AccessmodFileset
createdAt: DateTime!
id: String!
name: String!
owner: AccessmodOwner
permissions: AccessmodAnalysisPermissions!
population: AccessmodFileset
status: AccessmodAnalysisStatus!
timeThresholds: TimeThresholds
travelTimes: AccessmodFileset
type: AccessmodAnalysisType!
updatedAt: DateTime!
zonalStatisticsGeo: AccessmodFileset
zonalStatisticsTable: AccessmodFileset
}
"""Represents the input for adding an output to a pipeline."""
input AddPipelineOutputInput {
name: String
type: String!
uri: String!
}
"""Represents the result of adding an output to a pipeline."""
type AddPipelineOutputResult {
errors: [PipelineError!]!
success: Boolean!
}
type AddPipelineRecipientResult {
errors: [PipelineRecipientError!]!
recipient: PipelineRecipient
success: Boolean!
}
"""Represents the error message for adding a web app to favorites."""
enum AddToFavoritesError {
WEBAPP_NOT_FOUND
}
"""Represents the input for adding a web app to favorites."""
input AddToFavoritesInput {
webappId: ID!
}
"""Represents the result of adding a web app to favorites."""
type AddToFavoritesResult {
errors: [AddToFavoritesError!]!
success: Boolean!
}
enum ApproveAccessmodAccessRequestError {
INVALID
}
input ApproveAccessmodAccessRequestInput {
id: String!
}
type ApproveAccessmodAccessRequestResult {
errors: [ApproveAccessmodAccessRequestError!]!
success: Boolean!
}
"""
Enum representing the possible errors that can occur when archiving a workspace.
"""
enum ArchiveWorkspaceError {
NOT_FOUND
PERMISSION_DENIED
}
"""Represents the input for archiving a workspace."""
input ArchiveWorkspaceInput {
slug: String!
}
"""Represents the result of archiving a workspace."""
type ArchiveWorkspaceResult {
errors: [ArchiveWorkspaceError!]!
success: Boolean!
}
"""The Avatar type represents the avatar of a user."""
type Avatar {
"""The color of the user's avatar."""
color: String!
"""The initials of the user's avatar."""
initials: String!
}
scalar BigInt
"""
A bucket is where all the files and data related to a workspace are stored.
"""
type Bucket {
name: String!
object(key: String!): BucketObject
objects(ignoreHiddenFiles: Boolean = true, page: Int = 1, perPage: Int = 15, prefix: String, query: String): BucketObjectPage!
}
"""An object in a workspace's bucket."""
type BucketObject {
key: String!
name: String!
path: String!
size: BigInt
type: BucketObjectType!
updatedAt: DateTime
}
"""A page of objects in a workspace's bucket."""
type BucketObjectPage {
hasNextPage: Boolean!
hasPreviousPage: Boolean!
items: [BucketObject!]!
pageNumber: Int!
}
"""The type of an object in a workspace's bucket."""
enum BucketObjectType {
DIRECTORY
FILE
}
type Config {
"""List of requirements for the password."""
passwordRequirements: [String!]
}
"""Represents a connection to an external data source or service."""
interface Connection {
createdAt: DateTime!
description: String
fields: [ConnectionField!]!
id: String!
name: String!
permissions: ConnectionPermissions!
slug: String!
type: ConnectionType!
updatedAt: DateTime
user: User
}
"""Represents a field in a connection."""
type ConnectionField {
code: String!
createdAt: DateTime!
secret: Boolean!
updatedAt: DateTime
value: String
}
"""Represents the input for a connection field."""
input ConnectionFieldInput {
code: String!
secret: Boolean!
value: String
}
"""Represents the permissions of a connection."""
type ConnectionPermissions {
delete: Boolean!
update: Boolean!
}
"""Represents the types of connections."""
enum ConnectionType {
CUSTOM
DHIS2
GCS
IASO
POSTGRESQL
S3
}
type Country {
alpha3: String!
code: String!
flag: String!
name: String!
whoInfo: WHOInfo!
}
input CountryInput {
alpha3: String
code: String!
flag: String
name: String
}
enum CreateAccessmodAccessibilityAnalysisError {
NAME_DUPLICATE
}
input CreateAccessmodAccessibilityAnalysisInput {
name: String!
projectId: String!
}
type CreateAccessmodAccessibilityAnalysisResult {
analysis: AccessmodAccessibilityAnalysis
errors: [CreateAccessmodAccessibilityAnalysisError!]!
success: Boolean!
}
enum CreateAccessmodFileError {
URI_DUPLICATE
}
input CreateAccessmodFileInput {
filesetId: String!
mimeType: String!
uri: String!
}
type CreateAccessmodFileResult {
errors: [CreateAccessmodFileError!]!
file: AccessmodFile
success: Boolean!
}
enum CreateAccessmodFilesetError {
NAME_DUPLICATE
PERMISSION_DENIED
}
input CreateAccessmodFilesetInput {
automatic: Boolean
metadata: AccessmodFilesetMetadata
name: String!
projectId: String!
roleId: String!
}
type CreateAccessmodFilesetResult {
errors: [CreateAccessmodFilesetError!]!
fileset: AccessmodFileset
success: Boolean!
}
enum CreateAccessmodProjectError {
NAME_DUPLICATE
PERMISSION_DENIED
}
input CreateAccessmodProjectInput {
country: CountryInput!
crs: Int!
description: String
extent: [[Float!]!]
name: String!
spatialResolution: Int!
}
enum CreateAccessmodProjectMemberError {
ALREADY_EXISTS
NOT_FOUND
NOT_IMPLEMENTED
PERMISSION_DENIED
}
input CreateAccessmodProjectMemberInput {
mode: PermissionMode!
projectId: String!
teamId: String
userId: String
}
type CreateAccessmodProjectMemberResult {
errors: [CreateAccessmodProjectMemberError!]!
member: AccessmodProjectMember
success: Boolean!
}
type CreateAccessmodProjectResult {
errors: [CreateAccessmodProjectError!]!
project: AccessmodProject
success: Boolean!
}
enum CreateAccessmodZonalStatisticsError {
NAME_DUPLICATE
}
input CreateAccessmodZonalStatisticsInput {
name: String!
projectId: String!
}
type CreateAccessmodZonalStatisticsResult {
analysis: AccessmodZonalStatistics
errors: [CreateAccessmodZonalStatisticsError!]!
success: Boolean!
}
"""Errors that can occur when creating a folder in a workspace's bucket."""
enum CreateBucketFolderError {
ALREADY_EXISTS
NOT_FOUND
PERMISSION_DENIED
}
"""Input for creating a folder in a workspace's bucket."""
input CreateBucketFolderInput {
folderKey: String!
workspaceSlug: String!
}
"""The result of creating a folder in a workspace's bucket."""
type CreateBucketFolderResult {
errors: [CreateBucketFolderError!]!
folder: BucketObject
success: Boolean!
}
"""Represents the error types for creating a connection."""
enum CreateConnectionError {
INVALID_SLUG
PERMISSION_DENIED
WORKSPACE_NOT_FOUND
}
"""Represents the input for creating a connection."""
input CreateConnectionInput {
description: String
fields: [ConnectionFieldInput!]
name: String!
slug: String
type: ConnectionType!
workspaceSlug: String!
}
"""Represents the result of creating a connection."""
type CreateConnectionResult {
connection: Connection
errors: [CreateConnectionError!]!
success: Boolean!
}
"""Errors that can occur when creating a dataset."""
enum CreateDatasetError {
PERMISSION_DENIED
WORKSPACE_NOT_FOUND
}
"""Input for creating a dataset."""
input CreateDatasetInput {
description: String
name: String!
workspaceSlug: String!
}
"""Result of creating a dataset."""
type CreateDatasetResult {
dataset: Dataset
errors: [CreateDatasetError!]!
link: DatasetLink
success: Boolean!
}
"""Errors that can occur when creating a dataset version."""
enum CreateDatasetVersionError {
DATASET_NOT_FOUND
DUPLICATE_NAME
PERMISSION_DENIED
}
"""Errors that can occur when creating a dataset version file."""
enum CreateDatasetVersionFileError {
ALREADY_EXISTS
INVALID_URI
LOCKED_VERSION
PERMISSION_DENIED
VERSION_NOT_FOUND
}
"""Input for creating a dataset version file."""
input CreateDatasetVersionFileInput {
contentType: String!
uri: String!
versionId: ID!
}
"""Result of creating a dataset version file."""
type CreateDatasetVersionFileResult {
errors: [CreateDatasetVersionFileError!]!
"""The created file object"""
file: DatasetVersionFile
success: Boolean!
"""The URL to upload the file to"""
uploadUrl: String! @deprecated(reason: "moved to dedicated generateDatasetUploadUrl mutation")
}
"""Input for creating a dataset version."""
input CreateDatasetVersionInput {
changelog: String
datasetId: ID!
name: String!
}
"""Result of creating a dataset version."""
type CreateDatasetVersionResult {
errors: [CreateDatasetVersionError!]!
success: Boolean!
version: DatasetVersion
}
"""
The CreateMembershipError enum represents the possible errors that can occur during the createMembership mutation.
"""
enum CreateMembershipError {
"""
Indicates that a membership with the same user and team already exists.
"""
ALREADY_EXISTS
"""Indicates that the team or user was not found."""
NOT_FOUND
"""
Indicates that the user does not have permission to create a membership in the team.
"""
PERMISSION_DENIED
}
"""
The CreateMembershipInput type represents the input for the createMembership mutation.
"""
input CreateMembershipInput {
"""The role of the user in the team."""
role: MembershipRole!
"""The unique identifier of the team."""
teamId: UUID!
"""The email address of the user to add to the team."""
userEmail: String!
}
"""
The CreateMembershipResult type represents the result of the createMembership mutation.
"""
type CreateMembershipResult {
"""The list of errors that occurred during the createMembership mutation."""
errors: [CreateMembershipError!]!
"""The created membership object."""
membership: Membership
"""Indicates whether the createMembership mutation was successful."""
success: Boolean!
}
"""
Enum representing the possible errors that can occur when creating a pipeline from a template version.
"""
enum CreatePipelineFromTemplateVersionError {
PERMISSION_DENIED
PIPELINE_TEMPLATE_VERSION_NOT_FOUND
WORKSPACE_NOT_FOUND
}
"""
Represents the input for creating a new pipeline from a template version.
"""
input CreatePipelineFromTemplateVersionInput {
pipelineTemplateVersionId: UUID!
workspaceSlug: String!
}
"""
Represents the result of creating a new pipeline from a template version.
"""
type CreatePipelineFromTemplateVersionResult {
errors: [CreatePipelineFromTemplateVersionError!]
pipeline: Pipeline
success: Boolean!
}
"""Represents the input for creating a pipeline."""
input CreatePipelineInput {
code: String @deprecated(reason: "The code will be autogenerated")
name: String!
notebookPath: String
workspaceSlug: String!
}
"""Represents the input for adding a recipient to a pipeline."""
input CreatePipelineRecipientInput {
notificationLevel: PipelineNotificationLevel!
pipelineId: UUID!
userId: UUID!
}
"""Represents the result of creating a pipeline."""
type CreatePipelineResult {
errors: [PipelineError!]!
pipeline: Pipeline
success: Boolean!
}
"""
Enum representing the possible errors that can occur when creating a pipeline template version.
"""
enum CreatePipelineTemplateVersionError {
DUPLICATE_TEMPLATE_NAME_OR_CODE
PERMISSION_DENIED
PIPELINE_NOT_FOUND
PIPELINE_VERSION_NOT_FOUND
UNKNOWN_ERROR
WORKSPACE_NOT_FOUND
}
"""Represents the input for creating a new pipeline template version."""
input CreatePipelineTemplateVersionInput {
changelog: String
code: String
config: String
description: String
name: String
pipelineId: UUID!
pipelineVersionId: UUID!
workspaceSlug: String!
}
"""Represents the result of creating a new pipeline template version."""
type CreatePipelineTemplateVersionResult {
errors: [CreatePipelineTemplateVersionError!]
pipelineTemplate: PipelineTemplate
success: Boolean!
}
"""
The CreateTeamError enum represents the possible errors that can occur during the createTeam mutation.
"""
enum CreateTeamError {
"""Indicates that a team with the same name already exists."""
NAME_DUPLICATE
"""Indicates that the user does not have permission to create a team."""
PERMISSION_DENIED
}
"""
The CreateTeamInput type represents the input for the createTeam mutation.
"""
input CreateTeamInput {
"""The name of the team."""
name: String!
}
"""
The CreateTeamResult type represents the result of the createTeam mutation.
"""
type CreateTeamResult {
"""The list of errors that occurred during the createTeam mutation."""
errors: [CreateTeamError!]!
"""Indicates whether the createTeam mutation was successful."""
success: Boolean!
"""The created team object."""
team: Team
}
"""Represents the permission details for creating a template version."""
type CreateTemplateVersionPermission {
isAllowed: Boolean!
reasons: [CreateTemplateVersionPermissionReason!]!
}
"""
Enum representing the possible reasons preventing the creation of a template version.
"""
enum CreateTemplateVersionPermissionReason {
NO_NEW_TEMPLATE_VERSION_AVAILABLE
PERMISSION_DENIED
PIPELINE_IS_ALREADY_FROM_TEMPLATE
PIPELINE_IS_NOTEBOOK
}
"""Represents the error message for a web app creation."""
enum CreateWebappError {
ALREADY_EXISTS
PERMISSION_DENIED
WORKSPACE_NOT_FOUND
}
"""Represents the input for creating a web app."""
input CreateWebappInput {
description: String
icon: String
name: String!
url: String!
workspaceSlug: String!
}
"""Represents the result of creating a web app."""
type CreateWebappResult {
errors: [CreateWebappError!]!
success: Boolean!
webapp: Webapp
}
"""
Enum representing the possible errors that can occur when creating a workspace.
"""
enum CreateWorkspaceError {
INVALID_SLUG
PERMISSION_DENIED
}
"""Represents the input for creating a workspace."""
input CreateWorkspaceInput {
countries: [CountryInput!]
description: String
loadSampleData: Boolean
name: String!
slug: String
}
"""Represents the result of creating a workspace."""
type CreateWorkspaceResult {
errors: [CreateWorkspaceError!]!
success: Boolean!
workspace: Workspace
}
"""Custom connection object"""
type CustomConnection implements Connection {
createdAt: DateTime!
description: String
fields: [ConnectionField!]!
id: String!
name: String!
permissions: ConnectionPermissions!
slug: String!
type: ConnectionType!
updatedAt: DateTime
user: User
}
type DAG {
countries: [Country!]!
description: String
externalId: String!
externalUrl: URL
formCode: String
id: UUID!
label: String!
runs(orderBy: DAGRunOrderBy, page: Int, perPage: Int): DAGRunPage!
schedule: String
tags: [Tag!]!
template: DAGTemplate!
user: User
}
type DAGPage {
items: [DAG!]!
pageNumber: Int!
totalItems: Int!
totalPages: Int!
}
type DAGRun {
config: JSON
duration: Int
executionDate: DateTime
externalId: String
externalUrl: URL
id: UUID!
isFavorite: Boolean!
label: String
lastRefreshedAt: DateTime
logs: String
messages: [DAGRunMessage!]!
outputs: [DAGRunOutput!]!
progress: Int!
status: DAGRunStatus!
triggerMode: DAGRunTrigger
user: User
}
type DAGRunMessage {
message: String!
priority: String!
timestamp: DateTime
}
enum DAGRunOrderBy {
EXECUTION_DATE_ASC
EXECUTION_DATE_DESC
}
type DAGRunOutput {
title: String!
uri: String!
}
type DAGRunPage {
items: [DAGRun!]!
pageNumber: Int!
totalItems: Int!
totalPages: Int!
}
enum DAGRunStatus {
failed
queued
running
stopped
success
terminating
}
enum DAGRunTrigger {
MANUAL
SCHEDULED
}
type DAGTemplate {
code: String!
description: String
sampleConfig: JSON
}