@dssp/dssp 0.0.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.
Files changed (78) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/Dockerfile +16 -0
  3. package/_index.html +92 -0
  4. package/assets/favicon.ico +0 -0
  5. package/assets/helps/index.md +1 -0
  6. package/assets/images/hatiolab-logo.png +0 -0
  7. package/assets/images/spinner.png +0 -0
  8. package/assets/images/user.png +0 -0
  9. package/assets/manifest/apple-1024.png +0 -0
  10. package/assets/manifest/apple-120.png +0 -0
  11. package/assets/manifest/apple-152.png +0 -0
  12. package/assets/manifest/apple-167.png +0 -0
  13. package/assets/manifest/apple-180.png +0 -0
  14. package/assets/manifest/apple-touch-icon.png +0 -0
  15. package/assets/manifest/badge-128x128.png +0 -0
  16. package/assets/manifest/chrome-splashscreen-icon-384x384.png +0 -0
  17. package/assets/manifest/chrome-touch-icon-192x192.png +0 -0
  18. package/assets/manifest/icon-128x128.png +0 -0
  19. package/assets/manifest/icon-192x192.png +0 -0
  20. package/assets/manifest/icon-512x512.png +0 -0
  21. package/assets/manifest/icon-72x72.png +0 -0
  22. package/assets/manifest/icon-96x96.png +0 -0
  23. package/assets/manifest/image-metaog.png +0 -0
  24. package/assets/manifest/maskable_icon.png +0 -0
  25. package/assets/manifest/ms-icon-144x144.png +0 -0
  26. package/assets/manifest/ms-touch-icon-144x144-precomposed.png +0 -0
  27. package/assets/manifest.json +27 -0
  28. package/assets/style/home.css +134 -0
  29. package/config/config.development.js +49 -0
  30. package/config/config.production.js +83 -0
  31. package/dist-client/bootstrap.d.ts +5 -0
  32. package/dist-client/bootstrap.js +189 -0
  33. package/dist-client/bootstrap.js.map +1 -0
  34. package/dist-client/icons/menu-icons.d.ts +5 -0
  35. package/dist-client/icons/menu-icons.js +84 -0
  36. package/dist-client/icons/menu-icons.js.map +1 -0
  37. package/dist-client/index.d.ts +0 -0
  38. package/dist-client/index.js +2 -0
  39. package/dist-client/index.js.map +1 -0
  40. package/dist-client/menu.d.ts +1 -0
  41. package/dist-client/menu.js +4 -0
  42. package/dist-client/menu.js.map +1 -0
  43. package/dist-client/route.d.ts +1 -0
  44. package/dist-client/route.js +7 -0
  45. package/dist-client/route.js.map +1 -0
  46. package/dist-client/themes/dark.css +51 -0
  47. package/dist-client/themes/light.css +51 -0
  48. package/dist-client/tsconfig.tsbuildinfo +1 -0
  49. package/dist-client/viewparts/menu-tools.d.ts +17 -0
  50. package/dist-client/viewparts/menu-tools.js +172 -0
  51. package/dist-client/viewparts/menu-tools.js.map +1 -0
  52. package/dist-client/viewparts/user-circle.d.ts +5 -0
  53. package/dist-client/viewparts/user-circle.js +26 -0
  54. package/dist-client/viewparts/user-circle.js.map +1 -0
  55. package/dist-client/x.d.ts +0 -0
  56. package/dist-client/x.js +2 -0
  57. package/dist-client/x.js.map +1 -0
  58. package/dist-server/index.js +1 -0
  59. package/dist-server/index.js.map +1 -0
  60. package/dist-server/tsconfig.tsbuildinfo +1 -0
  61. package/installer/config.production.js +40 -0
  62. package/installer/docker-compose.yml +37 -0
  63. package/installer/install.sh +54 -0
  64. package/installer/migrate.sh +1 -0
  65. package/installer/start.sh +18 -0
  66. package/installer/stop.sh +1 -0
  67. package/installer/upgrade.sh +1 -0
  68. package/openapi/unstable.yaml +41 -0
  69. package/package.json +94 -0
  70. package/schema.graphql +4689 -0
  71. package/things-factory.config.js +8 -0
  72. package/translations/en.json +3 -0
  73. package/translations/ja.json +3 -0
  74. package/translations/ko.json +3 -0
  75. package/translations/ms.json +3 -0
  76. package/translations/zh.json +3 -0
  77. package/views/auth-page.html +97 -0
  78. package/views/public/home.html +88 -0
package/schema.graphql ADDED
@@ -0,0 +1,4689 @@
1
+ # -----------------------------------------------
2
+ # !!! THIS FILE WAS GENERATED BY TYPE-GRAPHQL !!!
3
+ # !!! DO NOT MODIFY THIS FILE BY YOURSELF !!!
4
+ # -----------------------------------------------
5
+
6
+ input APIDocCompletionInput {
7
+ code: String!
8
+ language: String
9
+ }
10
+
11
+ type APIDocCompletionOutput {
12
+ message: String
13
+ }
14
+
15
+ type AccessToken {
16
+ accesToken: String!
17
+ refreshToken: String!
18
+ }
19
+
20
+ """Any Scalar type (String, Boolean, Int, Float, Object, List)"""
21
+ scalar Any
22
+
23
+ type AppBinding {
24
+ application: Application
25
+ createdAt: DateTimeISO
26
+ creator: User!
27
+ description: String
28
+ domains: [Domain!]!
29
+ email: EmailAddress!
30
+ id: ID!
31
+ locale: String
32
+ name: String
33
+ owner: Boolean
34
+ reference: String
35
+ refreshToken: String
36
+ roles: [Role!]!
37
+ scope: String
38
+ ssoId: String
39
+ status: String!
40
+ updatedAt: DateTimeISO
41
+ updater: User!
42
+ userType: String
43
+ usersAuthProviders: [UsersAuthProviders!]
44
+ }
45
+
46
+ type AppBindingList {
47
+ items: [AppBinding!]
48
+ total: Int
49
+ }
50
+
51
+ type Appliance {
52
+ accessToken: String
53
+ brand: String
54
+ createdAt: DateTimeISO
55
+ creator: User
56
+ description: String
57
+ domain: Domain!
58
+ id: ID!
59
+ model: String
60
+ name: String!
61
+ netmask: String
62
+ serialNo: String
63
+ updatedAt: DateTimeISO
64
+ updater: User
65
+ }
66
+
67
+ type ApplianceList {
68
+ items: [Appliance!]
69
+ total: Int
70
+ }
71
+
72
+ input AppliancePatch {
73
+ brand: String
74
+ description: String
75
+ id: ID
76
+ model: String
77
+ name: String
78
+ netmask: String
79
+ serialNo: String
80
+ }
81
+
82
+ type Application {
83
+ accessTokenUrl: String!
84
+ appKey: String
85
+ appSecret: String
86
+ authUrl: String!
87
+ availableScopes: String!
88
+ createdAt: DateTimeISO
89
+ creator: User
90
+ description: String
91
+ domain: Domain!
92
+ email: EmailAddress!
93
+ icon: String
94
+ id: ID!
95
+ name: String!
96
+ redirectUrl: String!
97
+ status: String!
98
+ type: String!
99
+ updatedAt: DateTimeISO
100
+ updater: User
101
+ url: String!
102
+ webhook: String
103
+ }
104
+
105
+ type ApplicationList {
106
+ items: [Application!]
107
+ total: Int
108
+ }
109
+
110
+ input ApplicationPatch {
111
+ description: String
112
+ email: EmailAddress
113
+ icon: String
114
+ name: String
115
+ redirectUrl: String
116
+ type: ApplicationType
117
+ url: String
118
+ webhook: String
119
+ }
120
+
121
+ """state enumeration of a application"""
122
+ enum ApplicationType {
123
+ MMS
124
+ OTHERS
125
+ SELLERCRAFT
126
+ SFTP
127
+ XERO
128
+ XILNEX
129
+ }
130
+
131
+ """Entity for ApprovalLine"""
132
+ type ApprovalLine {
133
+ createdAt: DateTimeISO
134
+ creator: User
135
+ description: String
136
+ domain: Domain!
137
+ id: ID!
138
+ model: [ApprovalLineItem!]
139
+ name: String
140
+ owner: ApprovalLineOwner
141
+ ownerEmployee: Employee
142
+ ownerType: String
143
+ ownerValue: String
144
+ updatedAt: DateTimeISO
145
+ updater: User
146
+ }
147
+
148
+ """Entity for approval line item"""
149
+ type ApprovalLineItem {
150
+ approver: OrgMemberTarget
151
+ type: String
152
+ value: String
153
+ }
154
+
155
+ type ApprovalLineList {
156
+ items: [ApprovalLine!]!
157
+ total: Int!
158
+ }
159
+
160
+ type ApprovalLineOwner {
161
+ controlNo: String
162
+
163
+ """Field description"""
164
+ description: String
165
+
166
+ """Field id"""
167
+ id: ID!
168
+
169
+ """Field name"""
170
+ name: String
171
+ }
172
+
173
+ """type enumeration of a approvalLineOwner"""
174
+ enum ApprovalLineOwnerType {
175
+ Common
176
+ Employee
177
+ }
178
+
179
+ input ApprovalLinePatch {
180
+ cuFlag: String
181
+ description: String
182
+ id: ID
183
+ model: Object
184
+ name: String
185
+ owner: ObjectRefApprovalLineOwnerType
186
+ ownerType: ApprovalLineOwnerType
187
+ }
188
+
189
+ type Attachment {
190
+ category: String
191
+ createdAt: DateTimeISO!
192
+ creator: User
193
+ description: String
194
+ domain: Domain!
195
+ encoding: String!
196
+ fullpath: String!
197
+ id: ID!
198
+ mimetype: String!
199
+ name: String!
200
+ path: String!
201
+ refBy: String
202
+ refType: String
203
+ size: String!
204
+ updatedAt: DateTimeISO!
205
+ updater: User
206
+ }
207
+
208
+ type AttachmentList {
209
+ items: [Attachment!]!
210
+ total: Int!
211
+ }
212
+
213
+ input AttachmentPatch {
214
+ category: String
215
+ description: String
216
+ encoding: String
217
+ file: Upload
218
+ mimetype: String
219
+ name: String
220
+ refBy: String
221
+ refType: String
222
+ }
223
+
224
+ """Entity for AttributeSet"""
225
+ type AttributeSet {
226
+ createdAt: DateTimeISO
227
+ description: String
228
+ entity: String
229
+ id: ID!
230
+ items: [AttributeSetItem!]
231
+ updatedAt: DateTimeISO
232
+ }
233
+
234
+ """Entity for AttributeSetItem"""
235
+ type AttributeSetItem {
236
+ active: Boolean
237
+ description: String
238
+ hidden: Boolean
239
+ name: String!
240
+ options: Object
241
+ tag: String
242
+ type: String
243
+ }
244
+
245
+ input AttributeSetItemPatch {
246
+ active: Boolean
247
+ description: String
248
+ hidden: Boolean
249
+ name: String
250
+ options: Object
251
+ tag: String
252
+ type: AttributeSetItemType
253
+ }
254
+
255
+ """type enumeration of a attribute-set-item"""
256
+ enum AttributeSetItemType {
257
+ boolean
258
+ date
259
+ datetime
260
+ file
261
+ number
262
+ select
263
+ text
264
+ }
265
+
266
+ type AttributeSetList {
267
+ items: [AttributeSet!]!
268
+ total: Int!
269
+ }
270
+
271
+ input AttributeSetPatch {
272
+ cuFlag: String
273
+ description: String
274
+ entity: String
275
+ id: ID
276
+ items: [AttributeSetItemPatch!]
277
+ }
278
+
279
+ """Entity for AuthProvider"""
280
+ type AuthProvider {
281
+ active: Boolean
282
+ clientId: String
283
+ clientSecret: String
284
+ createdAt: DateTimeISO
285
+ creator: User
286
+ domain: Domain!
287
+ id: ID!
288
+ params: Object
289
+ privateKey: String
290
+ tenantId: String
291
+ type: String
292
+ updatedAt: DateTimeISO
293
+ updater: User
294
+ usersAuthProviders: [UsersAuthProviders!]
295
+ }
296
+
297
+ type AuthProviderList {
298
+ items: [AuthProvider!]!
299
+ total: Int!
300
+ }
301
+
302
+ type AuthProviderParameterSpec {
303
+ label: String!
304
+ name: String!
305
+ placeholder: String
306
+ property: Object
307
+ styles: Object
308
+ type: String!
309
+ }
310
+
311
+ input AuthProviderPatch {
312
+ active: Boolean
313
+ clientId: String
314
+ clientSecret: String
315
+ cuFlag: String
316
+ id: ID
317
+ params: Object
318
+ privateKey: String
319
+ tenantId: String
320
+ type: String
321
+ }
322
+
323
+ type AuthProviderType {
324
+ description: String
325
+ help: String
326
+ parameterSpec: [AuthProviderParameterSpec!]
327
+ type: String!
328
+ }
329
+
330
+ type AuthProviderTypeList {
331
+ items: [AuthProviderType!]!
332
+ total: Int!
333
+ }
334
+
335
+ """Entity for Visualization Board"""
336
+ type Board {
337
+ createdAt: DateTimeISO
338
+ creator: User
339
+ deletedAt: DateTimeISO
340
+ description: String
341
+ domain: Domain
342
+ group: Group
343
+ id: ID
344
+ model: String
345
+ name: String!
346
+ playGroups: [PlayGroup!]
347
+ state: String
348
+ thumbnail: String
349
+ updatedAt: DateTimeISO
350
+ updater: User
351
+ version: Float
352
+ }
353
+
354
+ type BoardFavorite {
355
+ createdAt: DateTimeISO
356
+ creator: User
357
+ deletedAt: DateTimeISO
358
+ description: String
359
+ domain: Domain
360
+ favoriteId: String
361
+ group: Group
362
+ id: ID
363
+ model: String
364
+ name: String!
365
+ playGroups: [PlayGroup!]
366
+ state: String
367
+ thumbnail: String
368
+ updatedAt: DateTimeISO
369
+ updater: User
370
+ version: Float
371
+ }
372
+
373
+ type BoardFavoriteList {
374
+ items: [BoardFavorite!]!
375
+ total: Int!
376
+ }
377
+
378
+ """History Entity of Board"""
379
+ type BoardHistory {
380
+ createdAt: DateTimeISO
381
+ creator: User
382
+ deletedAt: DateTimeISO
383
+ description: String
384
+ domain: Domain
385
+ group: Group
386
+ id: ID!
387
+ model: String
388
+ name: String!
389
+ playGroups: [PlayGroup!]
390
+ thumbnail: String
391
+ updatedAt: DateTimeISO
392
+ updater: User
393
+ version: Float
394
+ }
395
+
396
+ type BoardList {
397
+ items: [Board!]!
398
+ total: Int!
399
+ }
400
+
401
+ input BoardPatch {
402
+ description: String
403
+ groupId: String
404
+ model: String
405
+ name: String
406
+ thumbnail: String
407
+ }
408
+
409
+ type BoardSetting {
410
+ board: Board!
411
+ id: ID!
412
+ name: String!
413
+ value: String!
414
+ }
415
+
416
+ """Entity for BoardTemplate"""
417
+ type BoardTemplate {
418
+ createdAt: DateTimeISO
419
+ creator: User
420
+ description: String
421
+ domain: Domain!
422
+ id: ID!
423
+ mine: Boolean!
424
+ model: String
425
+ name: String
426
+ tags: Object
427
+ thumbnail: String
428
+ updatedAt: DateTimeISO
429
+ updater: User
430
+ visibility: String
431
+ }
432
+
433
+ type BoardTemplateList {
434
+ items: [BoardTemplate!]!
435
+ total: Int!
436
+ }
437
+
438
+ input BoardTemplatePatch {
439
+ cuFlag: String
440
+ description: String
441
+ id: ID
442
+ model: String
443
+ name: String
444
+ thumbnail: String
445
+ visibility: String
446
+ }
447
+
448
+ """동 정보"""
449
+ type Building {
450
+ buildingComplex: BuildingComplex
451
+ buildingLevels: [BuildingLevel!]
452
+ createdAt: DateTimeISO
453
+ creator: User
454
+ deletedAt: DateTimeISO
455
+ drawing: Attachment
456
+ floorCount: Float
457
+ id: ID!
458
+ name: String
459
+ updatedAt: DateTimeISO
460
+ updater: User
461
+ }
462
+
463
+ """단지 정보"""
464
+ type BuildingComplex {
465
+ address: String
466
+ area: Float
467
+ buildingCount: Float
468
+ buildings: [Building!]
469
+ clientCompany: String
470
+ constructionCompany: String
471
+ constructionCost: Float
472
+ constructionType: String
473
+ createdAt: DateTimeISO
474
+ creator: User
475
+ deletedAt: DateTimeISO
476
+ designCompany: String
477
+ domain: Domain
478
+ drawing: Attachment
479
+ etc: String
480
+ householdCount: Float
481
+ id: ID!
482
+ latitude: Float
483
+ longitude: Float
484
+ notice: String
485
+ planXScale: Float
486
+ planYScale: Float
487
+ supervisoryCompany: String
488
+ updatedAt: DateTimeISO
489
+ updater: User
490
+ }
491
+
492
+ input BuildingComplexPatch {
493
+ address: String
494
+ area: Float
495
+ buildingCount: Float
496
+ buildings: [BuildingPatch!]
497
+ clientCompany: String
498
+ constructionCompany: String
499
+ constructionCost: Float
500
+ constructionType: String
501
+ designCompany: String
502
+ drawingUpload: Upload
503
+ etc: String
504
+ householdCount: Float
505
+ id: String
506
+ latitude: Float
507
+ longitude: Float
508
+ notice: String
509
+ planXScale: Float
510
+ planYScale: Float
511
+ supervisoryCompany: String
512
+ }
513
+
514
+ """시공 검측 (층별 도면의 검측 리스트)"""
515
+ type BuildingInspection {
516
+ buildingInspectionAttachments: [BuildingInspectionAttachment!]
517
+ buildingLevel: BuildingLevel
518
+ createdAt: DateTimeISO
519
+ creator: User
520
+ deletedAt: DateTimeISO
521
+ detail: String
522
+ id: ID!
523
+ indexX: Float
524
+ indexY: Float
525
+ type: String
526
+ updatedAt: DateTimeISO
527
+ updater: User
528
+ }
529
+
530
+ """시공 검측 첨부 파일"""
531
+ type BuildingInspectionAttachment {
532
+ buildingInspection: BuildingInspection
533
+ createdAt: DateTimeISO
534
+ creator: User
535
+ deletedAt: DateTimeISO
536
+ id: ID!
537
+ updatedAt: DateTimeISO
538
+ updater: User
539
+ }
540
+
541
+ input BuildingInspectionPatch {
542
+ detail: String
543
+ id: ID
544
+ indexX: Float
545
+ indexY: Float
546
+ type: String
547
+ }
548
+
549
+ """층 정보"""
550
+ type BuildingLevel {
551
+ building: Building!
552
+ buildingInspections: [BuildingInspection!]
553
+ createdAt: DateTimeISO
554
+ creator: User
555
+ crossSectionDrawing: Attachment
556
+ deletedAt: DateTimeISO
557
+ floor: Float!
558
+ floorInspectionSummary: FloorInspectionSummary!
559
+ id: ID!
560
+ mainDrawing: Attachment
561
+ rebarDistributionDrawing: Attachment
562
+ structuralDrawing: Attachment
563
+ }
564
+
565
+ input BuildingLevelPatch {
566
+ buildingInspections: [BuildingInspectionPatch!]
567
+ crossSectionDrawingUpload: Upload
568
+ floor: Float!
569
+ id: ID
570
+ mainDrawingUpload: Upload
571
+ rebarDistributionDrawingUpload: Upload
572
+ structuralDrawingUpload: Upload
573
+ }
574
+
575
+ input BuildingPatch {
576
+ buildingLevels: [BuildingLevelPatch!]
577
+ drawingUpload: Upload
578
+ floorCount: Float
579
+ id: ID
580
+ name: String
581
+ }
582
+
583
+ input ChatCompletionInput {
584
+ content: String!
585
+ }
586
+
587
+ type ChatCompletionOutput {
588
+ message: String
589
+ }
590
+
591
+ """체크 리스트 항목"""
592
+ type CheckItem {
593
+ checklist: Checklist
594
+ createdAt: DateTimeISO
595
+ creator: User
596
+ deletedAt: DateTimeISO
597
+ id: ID!
598
+ measuresToBeTaken: String
599
+ name: String
600
+ reference: String
601
+ result: Boolean
602
+ thumbnail: String!
603
+ updatedAt: DateTimeISO
604
+ updater: User
605
+ }
606
+
607
+ type CheckItemList {
608
+ items: [CheckItem!]!
609
+ total: Int!
610
+ }
611
+
612
+ input CheckItemPatch {
613
+ active: Boolean
614
+ cuFlag: String
615
+ description: String
616
+ id: ID
617
+ name: String
618
+ }
619
+
620
+ """체크리스트"""
621
+ type Checklist {
622
+ checkItems: CheckItem!
623
+ constructionInspectorDate: DateTimeISO
624
+ createdAt: DateTimeISO
625
+ creator: User
626
+ deletedAt: DateTimeISO
627
+ documentNo: String
628
+ id: ID!
629
+ location: String
630
+ name: String
631
+ overallConstructionSignature: String
632
+ overallSupervisorySignature: String
633
+ part: String
634
+ supervisorInspectorDate: DateTimeISO
635
+ task: Task!
636
+ taskConstructionSignature: String
637
+ taskSupervisorySignature: String
638
+ thumbnail: String!
639
+ updatedAt: DateTimeISO
640
+ updater: User
641
+ }
642
+
643
+ type ChecklistList {
644
+ items: [Checklist!]!
645
+ total: Int!
646
+ }
647
+
648
+ input ChecklistPatch {
649
+ active: Boolean
650
+ cuFlag: String
651
+ description: String
652
+ id: ID
653
+ name: String
654
+ }
655
+
656
+ input CodeDecipherInput {
657
+ code: String!
658
+ language: String
659
+ system: String
660
+ }
661
+
662
+ type CodeDecipherOutput {
663
+ message: String
664
+ }
665
+
666
+ """Entity for CommonCode"""
667
+ type CommonCode {
668
+ createdAt: DateTimeISO
669
+ creator: User
670
+ description: String
671
+ details: [CommonCodeDetail!]!
672
+ domain: Domain!
673
+ id: ID!
674
+ name: String!
675
+ updatedAt: DateTimeISO
676
+ updater: User
677
+ }
678
+
679
+ """Entity for CommonCodeDetail"""
680
+ type CommonCodeDetail {
681
+ commonCode: CommonCode
682
+ createdAt: DateTimeISO
683
+ creator: User
684
+ description: String
685
+ domain: Domain!
686
+ id: ID!
687
+ labels: Object
688
+ name: String!
689
+ rank: Float
690
+ updatedAt: DateTimeISO
691
+ updater: User
692
+ }
693
+
694
+ type CommonCodeDetailList {
695
+ items: [CommonCodeDetail!]!
696
+ total: Int!
697
+ }
698
+
699
+ input CommonCodeDetailPatch {
700
+ commonCode: ObjectRef!
701
+ cuFlag: String
702
+ description: String
703
+ id: ID
704
+ labels: Object
705
+ name: String
706
+ rank: Float
707
+ }
708
+
709
+ type CommonCodeList {
710
+ items: [CommonCode!]!
711
+ total: Int!
712
+ }
713
+
714
+ input CommonCodePatch {
715
+ cuFlag: String
716
+ description: String
717
+ details: [String!]
718
+ id: ID
719
+ name: String
720
+ }
721
+
722
+ type Connection {
723
+ active: Boolean
724
+ createdAt: DateTimeISO
725
+ creator: User
726
+ description: String
727
+ domain: Domain
728
+ edge: Appliance
729
+ endpoint: String
730
+ id: ID!
731
+ name: String!
732
+ params: String
733
+ state: String
734
+ type: String
735
+ updatedAt: DateTimeISO
736
+ updater: User
737
+ }
738
+
739
+ type ConnectionList {
740
+ items: [Connection!]!
741
+ total: Int!
742
+ }
743
+
744
+ input ConnectionPatch {
745
+ active: Boolean
746
+ cuFlag: String
747
+ description: String
748
+ edge: ObjectRef
749
+ endpoint: String
750
+ id: ID
751
+ name: String
752
+ params: String
753
+ type: String
754
+ }
755
+
756
+ type ConnectionState {
757
+ description: String
758
+ domain: Domain!
759
+ edge: Appliance
760
+ id: String
761
+ name: String
762
+ state: String
763
+ timestamp: DateTimeISO
764
+ type: String
765
+ }
766
+
767
+ type ConnectorList {
768
+ items: [ConnectorType!]!
769
+ total: Int!
770
+ }
771
+
772
+ type ConnectorType {
773
+ description: String
774
+ help: String
775
+ name: String!
776
+ parameterSpec: [PropertySpec!]
777
+ taskPrefixes: [String!]
778
+ }
779
+
780
+ """Entity for Contact"""
781
+ type Contact {
782
+ address: String
783
+ company: String
784
+ createdAt: DateTimeISO
785
+ creator: User
786
+ deletedAt: DateTimeISO
787
+ department: String
788
+ domain: Domain!
789
+ email: EmailAddress
790
+ id: ID!
791
+ items: [ContactItem!]
792
+ name: String
793
+ note: String
794
+ phone: String
795
+ profile: Profile
796
+ updatedAt: DateTimeISO
797
+ updater: User
798
+ }
799
+
800
+ type ContactItem {
801
+ label: String!
802
+ type: String!
803
+ value: String!
804
+ }
805
+
806
+ input ContactItemPatch {
807
+ label: String!
808
+ type: String!
809
+ value: String!
810
+ }
811
+
812
+ type ContactList {
813
+ items: [Contact!]!
814
+ total: Int!
815
+ }
816
+
817
+ input ContactPatch {
818
+ address: String
819
+ company: String
820
+ cuFlag: String
821
+ department: String
822
+ email: EmailAddress
823
+ id: ID
824
+ items: [ContactItemPatch!]
825
+ name: String
826
+ note: String
827
+ phone: String
828
+ profile: ProfileInput
829
+ }
830
+
831
+ type Data {
832
+ """Data delivered by subscription"""
833
+ data: Object
834
+
835
+ """The domain where the data originated"""
836
+ domain: Domain
837
+
838
+ """Tag name attached to data"""
839
+ tag: String!
840
+ }
841
+
842
+ """Date custom scalar type"""
843
+ scalar Date
844
+
845
+ """
846
+ A date-time string at UTC, such as 2007-12-03T10:15:30Z, compliant with the `date-time` format outlined in section 5.6 of the RFC 3339 profile of the ISO 8601 standard for representation of dates and times using the Gregorian calendar.This scalar is serialized to a string in ISO 8601 format and parsed from a string in ISO 8601 format.
847
+ """
848
+ scalar DateTimeISO
849
+
850
+ """Entity for Department"""
851
+ type Department {
852
+ active: Boolean
853
+ children(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): [Department!]!
854
+ controlNo: String!
855
+ createdAt: DateTimeISO
856
+ creator: User
857
+ deletedAt: DateTimeISO
858
+ description: String
859
+ domain: Domain!
860
+ extension: String
861
+ id: ID!
862
+ manager: Employee
863
+ members: [Employee!]!
864
+ name: String
865
+ parent: Department
866
+ picture: String
867
+ updatedAt: DateTimeISO
868
+ updater: User
869
+ version: Float
870
+ }
871
+
872
+ type DepartmentList {
873
+ items: [Department!]!
874
+ total: Int!
875
+ }
876
+
877
+ input DepartmentPatch {
878
+ active: Boolean
879
+ controlNo: String
880
+ cuFlag: String
881
+ description: String
882
+ id: ID
883
+ manager: ObjectRefForEmployee
884
+ name: String
885
+ parent: ObjectRef
886
+ picture: Upload
887
+ }
888
+
889
+ type Domain {
890
+ attributes: Object
891
+ brandImage: String
892
+ brandName: String
893
+ children: Domain
894
+ contentImage: String
895
+ createdAt: DateTimeISO
896
+ deletedAt: DateTimeISO
897
+ description: String
898
+ extType: String
899
+ id: ID!
900
+ iplist: Object
901
+ name: String!
902
+ owner: String
903
+ ownerUser: User
904
+ parent: Domain
905
+ subdomain: String
906
+ systemFlag: Boolean
907
+ theme: String
908
+ timezone: String
909
+ updatedAt: DateTimeISO
910
+ }
911
+
912
+ input DomainGeneratorInput {
913
+ description: String
914
+ name: String!
915
+ }
916
+
917
+ input DomainInput {
918
+ description: String
919
+ name: String!
920
+ }
921
+
922
+ type DomainList {
923
+ items: [Domain!]
924
+ total: Int
925
+ }
926
+
927
+ input DomainPatch {
928
+ attributes: Object
929
+ brandImage: String
930
+ brandName: String
931
+ contentImage: String
932
+ description: String
933
+ id: String
934
+ name: String
935
+ owner: String
936
+ parent: ObjectRef
937
+ subdomain: String
938
+ systemFlag: Boolean
939
+ theme: String
940
+ timezone: String
941
+ }
942
+
943
+ input DomainUserRoleInput {
944
+ domain: DomainInput!
945
+ roles: [NewRole!]!
946
+ users: [NewUserByDomainWizardInput!]!
947
+ }
948
+
949
+ """
950
+ A field whose value conforms to the standard internet email address format as specified in HTML Spec: https://html.spec.whatwg.org/multipage/input.html#valid-e-mail-address.
951
+ """
952
+ scalar EmailAddress @specifiedBy(url: "https://html.spec.whatwg.org/multipage/input.html#valid-e-mail-address")
953
+
954
+ """Entity for Employee"""
955
+ type Employee {
956
+ active: Boolean
957
+ address: String!
958
+ alias: String
959
+ approvalLines: [ApprovalLine!]!
960
+ contact: Contact
961
+ controlNo: String!
962
+ createdAt: DateTimeISO
963
+ creator: User
964
+ deletedAt: DateTimeISO
965
+ department: Department
966
+ domain: Domain!
967
+ email: EmailAddress
968
+ extension: String
969
+ hiredOn: String
970
+ id: ID!
971
+ jobPosition: String
972
+ jobResponsibility: String
973
+ manages: [Department!]!
974
+ name: String
975
+ note: String
976
+ phone: String
977
+ photo: String
978
+ profile: Profile
979
+ retiredAt: String
980
+ supervises: [Employee!]!
981
+ supervisor: Employee
982
+ type: String
983
+ updatedAt: DateTimeISO
984
+ updater: User
985
+ user: User
986
+ version: Float
987
+ }
988
+
989
+ type EmployeeList {
990
+ items: [Employee!]!
991
+ total: Int!
992
+ }
993
+
994
+ input EmployeePatch {
995
+ active: Boolean
996
+ alias: String
997
+ controlNo: String
998
+ cuFlag: String
999
+ department: ObjectRef
1000
+ hiredOn: String
1001
+ id: ID
1002
+ jobPosition: String
1003
+ jobResponsibility: String
1004
+ name: String
1005
+ note: String
1006
+ photo: Upload
1007
+ retiredAt: String
1008
+ supervisor: ObjectRefForEmployee
1009
+ type: EmployeeType
1010
+ user: ObjectRefForUser
1011
+ }
1012
+
1013
+ """type enumeration of a employee"""
1014
+ enum EmployeeType {
1015
+ FULLTIME
1016
+ PARTTIME
1017
+ TEMPORARY
1018
+ }
1019
+
1020
+ """Entity for Entity"""
1021
+ type Entity {
1022
+ active: Boolean
1023
+ association: String
1024
+ bundle: String!
1025
+ children: [Entity!]
1026
+ columns: [EntityColumn!]
1027
+ createdAt: DateTimeISO
1028
+ creator: User
1029
+ dataProp: String
1030
+ delStrategy: String
1031
+ description: String
1032
+ domain: Domain!
1033
+ extEntity: Boolean
1034
+ fixedColumns: Float
1035
+ id: ID!
1036
+ idField: String
1037
+ idType: String
1038
+ master: Entity
1039
+ multiSaveUrl: String
1040
+ name: String!
1041
+ refField: String
1042
+ searchUrl: String
1043
+ tableName: String!
1044
+ titleField: String
1045
+ updatedAt: DateTimeISO
1046
+ updater: User
1047
+ }
1048
+
1049
+ """Entity for EntityColumn"""
1050
+ type EntityColumn {
1051
+ colSize: Float
1052
+ colType: String!
1053
+ createdAt: DateTimeISO
1054
+ creator: User
1055
+ defVal: String
1056
+ description: String
1057
+ domain: Domain!
1058
+ entity: Entity!
1059
+ formEditor: String
1060
+ formFormat: String
1061
+ formValidator: String
1062
+ gridAlign: String
1063
+ gridEditor: String
1064
+ gridFormat: String
1065
+ gridRank: Float
1066
+ gridValidator: String
1067
+ gridWidth: Float
1068
+ id: ID!
1069
+ ignoreOnSav: Boolean
1070
+ name: String!
1071
+ nullable: Boolean
1072
+ rangeVal: String
1073
+ rank: Float
1074
+ refName: String
1075
+ refParams: String
1076
+ refRelated: String
1077
+ refType: String
1078
+ refUrl: String
1079
+ reverseSort: Boolean
1080
+ searchEditor: String
1081
+ searchInitVal: String
1082
+ searchName: String
1083
+ searchOper: String
1084
+ searchRank: Float
1085
+ sortRank: Float
1086
+ term: String
1087
+ uniqRank: Float
1088
+ updatedAt: DateTimeISO
1089
+ updater: User
1090
+ virtualField: Boolean
1091
+ }
1092
+
1093
+ type EntityColumnList {
1094
+ items: [EntityColumn!]!
1095
+ total: Int!
1096
+ }
1097
+
1098
+ """EntityColumn of Entity"""
1099
+ type EntityColumnMetadata {
1100
+ enum: [Any!]
1101
+ generatedType: String
1102
+ isArray: Boolean
1103
+ isNullable: Boolean!
1104
+ isPrimary: Boolean
1105
+ isReadonly: Boolean
1106
+ isUpdateDate: Boolean
1107
+ isVersion: Boolean
1108
+ length: Float
1109
+ propertyName: String!
1110
+ referenceColumn: Any
1111
+ relationMetadata: EntityRelationMetadata
1112
+ target: Any
1113
+ type: Any!
1114
+ width: Int
1115
+ }
1116
+
1117
+ input EntityColumnPatch {
1118
+ colSize: Int
1119
+ colType: String
1120
+ cuFlag: String
1121
+ defVal: String
1122
+ description: String
1123
+ entity: ObjectRef
1124
+ formEditor: String
1125
+ formFormat: String
1126
+ formValidator: String
1127
+ gridAlign: String
1128
+ gridEditor: String
1129
+ gridFormat: String
1130
+ gridRank: Int
1131
+ gridValidator: String
1132
+ gridWidth: Int
1133
+ id: ID
1134
+ ignoreOnSav: Boolean
1135
+ name: String
1136
+ nullable: Boolean
1137
+ rangeVal: String
1138
+ rank: Int
1139
+ refName: String
1140
+ refParams: String
1141
+ refRelated: String
1142
+ refType: String
1143
+ refUrl: String
1144
+ reverseSort: Boolean
1145
+ searchEditor: String
1146
+ searchInitVal: String
1147
+ searchName: String
1148
+ searchOper: String
1149
+ searchRank: Int
1150
+ sortRank: Float
1151
+ term: String
1152
+ uniqRank: Int
1153
+ virtualField: Boolean
1154
+ }
1155
+
1156
+ type EntityList {
1157
+ items: [Entity!]!
1158
+ total: Int!
1159
+ }
1160
+
1161
+ """Entity for EntityMetadata"""
1162
+ type EntityMetadata {
1163
+ columns: [EntityColumnMetadata!]
1164
+ name: String!
1165
+ }
1166
+
1167
+ input EntityPatch {
1168
+ active: Boolean
1169
+ association: String
1170
+ bundle: String
1171
+ children: [String!]
1172
+ columns: [String!]
1173
+ cuFlag: String
1174
+ dataProp: String
1175
+ delStrategy: String
1176
+ description: String
1177
+ extEntity: Boolean
1178
+ fixedColumns: Int
1179
+ id: ID
1180
+ idField: String
1181
+ idType: String
1182
+ master: String
1183
+ multiSaveUrl: String
1184
+ name: String
1185
+ refField: String
1186
+ searchUrl: String
1187
+ tableName: String
1188
+ titleField: String
1189
+ }
1190
+
1191
+ """RelationType of EntityColumn"""
1192
+ type EntityRelationMetadata {
1193
+ isManyToOne: Boolean
1194
+ isOneToMany: Boolean
1195
+ isOneToOne: Boolean
1196
+ joinColumns: [EntityColumnMetadata!]
1197
+ joinTableName: String
1198
+ relationType: Boolean
1199
+ }
1200
+
1201
+ """Entity for Favorite"""
1202
+ type Favorite {
1203
+ createdAt: DateTimeISO
1204
+ creator: User
1205
+ domain: Domain!
1206
+ id: ID!
1207
+ routing: String!
1208
+ updatedAt: DateTimeISO
1209
+ updater: User
1210
+ user: User!
1211
+ }
1212
+
1213
+ type FavoriteList {
1214
+ items: [Favorite!]!
1215
+ total: Int!
1216
+ }
1217
+
1218
+ input Filter {
1219
+ name: String!
1220
+ operator: String!
1221
+ relation: Boolean
1222
+ value: Any
1223
+ }
1224
+
1225
+ type FloorInspectionSummary {
1226
+ fail: Int!
1227
+ pass: Int!
1228
+ request: Int!
1229
+ }
1230
+
1231
+ """Entity for Font"""
1232
+ type Font {
1233
+ active: Boolean!
1234
+ createdAt: DateTimeISO
1235
+ creator: User
1236
+ domain: Domain!
1237
+ files: [Attachment!]
1238
+ id: ID!
1239
+ name: String!
1240
+ path: String
1241
+ provider: String!
1242
+ updatedAt: DateTimeISO
1243
+ updater: User
1244
+ uri: String
1245
+ }
1246
+
1247
+ type FontList {
1248
+ items: [Font!]!
1249
+ total: Int!
1250
+ }
1251
+
1252
+ input FontPatch {
1253
+ active: Boolean
1254
+ files: [Upload!]
1255
+ name: String
1256
+ path: String
1257
+ provider: String
1258
+ uri: String
1259
+ }
1260
+
1261
+ type GrantedRole {
1262
+ domain: Domain!
1263
+ id: ID!
1264
+ role: Role!
1265
+ }
1266
+
1267
+ """Entity for Board Management Group"""
1268
+ type Group {
1269
+ boards: [Board!]
1270
+ createdAt: DateTimeISO
1271
+ creator: User
1272
+ description: String
1273
+ domain: Domain
1274
+ id: ID!
1275
+ name: String!
1276
+ updatedAt: DateTimeISO
1277
+ updater: User
1278
+ }
1279
+
1280
+ type GroupList {
1281
+ items: [Group!]!
1282
+ total: Int!
1283
+ }
1284
+
1285
+ input GroupPatch {
1286
+ description: String
1287
+ name: String
1288
+ }
1289
+
1290
+ input ImageCompletionInput {
1291
+ count: Float!
1292
+ description: String!
1293
+ size: String!
1294
+ }
1295
+
1296
+ type ImageCompletionOutput {
1297
+ images: String
1298
+ }
1299
+
1300
+ enum InheritedValueType {
1301
+ Include
1302
+ None
1303
+ Only
1304
+ }
1305
+
1306
+ type InspectionSummary {
1307
+ fail: Int!
1308
+ pass: Int!
1309
+ request: Int!
1310
+ }
1311
+
1312
+ type Invitation {
1313
+ createdAt: DateTimeISO
1314
+ creator: User
1315
+ email: EmailAddress!
1316
+ id: ID!
1317
+ reference: String!
1318
+ token: String!
1319
+ type: String!
1320
+ updatedAt: DateTimeISO
1321
+ updater: User
1322
+ }
1323
+
1324
+ type InvitationList {
1325
+ items: [Invitation!]
1326
+ total: Int
1327
+ }
1328
+
1329
+ """
1330
+ A field whose value is a JSON Web Token (JWT): https://jwt.io/introduction.
1331
+ """
1332
+ scalar JWT
1333
+
1334
+ """Entity for LiteMenu"""
1335
+ type LiteMenu {
1336
+ active: Boolean
1337
+ appName: String
1338
+ board: Board
1339
+ createdAt: DateTimeISO
1340
+ creator: User
1341
+ description: String
1342
+ domain: Domain!
1343
+ icon: String
1344
+ id: ID!
1345
+ label: String!
1346
+ labels: Object
1347
+ name: String!
1348
+ parent: String
1349
+ privilege: PrivilegeObject
1350
+ rank: Int
1351
+ type: String
1352
+ updatedAt: DateTimeISO
1353
+ updater: User
1354
+ value: String
1355
+ }
1356
+
1357
+ type LiteMenuList {
1358
+ items: [LiteMenu!]!
1359
+ total: Int!
1360
+ }
1361
+
1362
+ input LiteMenuPatch {
1363
+ active: Boolean
1364
+ appName: String
1365
+ description: String
1366
+ icon: String
1367
+ labels: Object
1368
+ name: String
1369
+ parent: String
1370
+ privilege: PrivilegeInput
1371
+ rank: Int
1372
+ type: String
1373
+ value: String
1374
+ }
1375
+
1376
+ type Log {
1377
+ """log level (error, warning, info, ..)"""
1378
+ level: String!
1379
+
1380
+ """log body message"""
1381
+ message: String!
1382
+
1383
+ """the source of the log"""
1384
+ source: Object!
1385
+
1386
+ """timestamp the log occurred"""
1387
+ timestamp: String!
1388
+ }
1389
+
1390
+ type LoginHistory {
1391
+ accessDomain: Domain!
1392
+ accessUser: User!
1393
+ accessedAt: DateTimeISO
1394
+ accessorIp: String
1395
+ id: ID!
1396
+ }
1397
+
1398
+ type LoginHistoryList {
1399
+ items: [LoginHistory!]!
1400
+ total: Int!
1401
+ }
1402
+
1403
+ """Entity for Menu"""
1404
+ type Menu {
1405
+ buttons: [MenuButton!]!
1406
+ category: String
1407
+ children(permittedOnly: Boolean! = false): [Menu!]!
1408
+ columns: [MenuColumn!]!
1409
+ createdAt: DateTimeISO
1410
+ creator: User
1411
+ description: String
1412
+ detailFormId: String
1413
+ detailLayout: String
1414
+ domain: Domain!
1415
+ fixedColumns: Float
1416
+ gridSaveUrl: String
1417
+ hiddenFlag: Boolean
1418
+ iconPath: String
1419
+ id: ID!
1420
+ idField: String
1421
+ itemsProp: String
1422
+ menuType: String
1423
+ name: String
1424
+ pagination: Boolean
1425
+ parent: Menu
1426
+ privilege: PrivilegeObject
1427
+ rank: Float
1428
+ resourceId: String
1429
+ resourceName: String
1430
+ resourceType: String
1431
+ resourceUrl: String
1432
+ role: Role
1433
+ roles: [Role!]
1434
+ routing: String
1435
+ routingType: String
1436
+ template: String
1437
+ titleField: String
1438
+ totalProp: String
1439
+ updatedAt: DateTimeISO
1440
+ updater: User
1441
+ }
1442
+
1443
+ """Entity for MenuButton"""
1444
+ type MenuButton {
1445
+ auth: String
1446
+ createdAt: DateTimeISO
1447
+ creator: User
1448
+ domain: Domain!
1449
+ icon: String
1450
+ id: ID!
1451
+ logic: String
1452
+ menu: Menu
1453
+ rank: Float
1454
+ style: String
1455
+ text: String
1456
+ updatedAt: DateTimeISO
1457
+ updater: User
1458
+ }
1459
+
1460
+ type MenuButtonList {
1461
+ items: [MenuButton!]!
1462
+ total: Int!
1463
+ }
1464
+
1465
+ input MenuButtonPatch {
1466
+ auth: String
1467
+ icon: String
1468
+ logic: String
1469
+ menu: String
1470
+ rank: Int
1471
+ style: String
1472
+ text: String
1473
+ }
1474
+
1475
+ """Entity for MenuColumn"""
1476
+ type MenuColumn {
1477
+ colSize: Float
1478
+ colType: String
1479
+ createdAt: DateTimeISO
1480
+ creator: User
1481
+ defVal: String
1482
+ description: String
1483
+ domain: Domain!
1484
+ extField: Boolean
1485
+ formEditor: String
1486
+ formFormat: String
1487
+ formValidator: String
1488
+ gridAlign: String
1489
+ gridEditor: String
1490
+ gridFormat: String
1491
+ gridRank: Float
1492
+ gridValidator: String
1493
+ gridWidth: Float
1494
+ id: ID!
1495
+ ignoreOnSave: Boolean
1496
+ menu: Menu
1497
+ name: String!
1498
+ nullable: Boolean
1499
+ rangeVal: String
1500
+ rank: Float
1501
+ refName: String
1502
+ refParams: String
1503
+ refRelated: String
1504
+ refType: String
1505
+ refUrl: String
1506
+ reverseSort: Boolean
1507
+ searchEditor: String
1508
+ searchInitVal: String
1509
+ searchName: String
1510
+ searchOper: String
1511
+ searchRank: Float
1512
+ sortRank: Float
1513
+ term: String
1514
+ uniqRank: Float
1515
+ updatedAt: DateTimeISO
1516
+ updater: User
1517
+ virtualField: Boolean
1518
+ }
1519
+
1520
+ type MenuColumnList {
1521
+ items: [MenuColumn!]!
1522
+ total: Int!
1523
+ }
1524
+
1525
+ input MenuColumnPatch {
1526
+ colSize: Int
1527
+ colType: String
1528
+ defVal: String
1529
+ description: String
1530
+ extField: Boolean
1531
+ formEditor: String
1532
+ formFormat: String
1533
+ formValidator: String
1534
+ gridAlign: String
1535
+ gridEditor: String
1536
+ gridFormat: String
1537
+ gridRank: Int
1538
+ gridValidator: String
1539
+ gridWidth: Int
1540
+ ignoreOnSave: Boolean
1541
+ menu: String
1542
+ name: String
1543
+ nullable: Boolean
1544
+ rangeVal: String
1545
+ rank: Int
1546
+ refName: String
1547
+ refParams: String
1548
+ refRelated: String
1549
+ refType: String
1550
+ refUrl: String
1551
+ reverseSort: Boolean
1552
+ searchEditor: String
1553
+ searchInitVal: String
1554
+ searchName: String
1555
+ searchOper: String
1556
+ searchRank: Int
1557
+ sortRank: Int
1558
+ term: String
1559
+ uniqRank: Int
1560
+ virtualField: Boolean
1561
+ }
1562
+
1563
+ """Entity for MenuDetail"""
1564
+ type MenuDetail {
1565
+ association: String
1566
+ buttons: [MenuDetailButton!]
1567
+ columns: [MenuDetailColumn!]
1568
+ createdAt: DateTimeISO
1569
+ creator: User
1570
+ customView: String
1571
+ dataProp: String
1572
+ domain: Domain!
1573
+ entityId: String
1574
+ id: ID!
1575
+ masterField: String
1576
+ menu: Menu
1577
+ name: String!
1578
+ saveUrl: String
1579
+ searchUrl: String
1580
+ updatedAt: DateTimeISO
1581
+ updater: User
1582
+ viewSection: String
1583
+ }
1584
+
1585
+ """Entity for MenuDetailButton"""
1586
+ type MenuDetailButton {
1587
+ createdAt: DateTimeISO
1588
+ creator: User
1589
+ domain: Domain!
1590
+ icon: String
1591
+ id: ID!
1592
+ logic: String
1593
+ menuDetail: MenuDetail
1594
+ rank: Float
1595
+ style: String
1596
+ text: String
1597
+ updatedAt: DateTimeISO
1598
+ updater: User
1599
+ }
1600
+
1601
+ type MenuDetailButtonList {
1602
+ items: [MenuDetailButton!]!
1603
+ total: Int!
1604
+ }
1605
+
1606
+ input MenuDetailButtonPatch {
1607
+ icon: String
1608
+ logic: String
1609
+ menuDetail: String
1610
+ rank: Int
1611
+ style: String
1612
+ text: String
1613
+ }
1614
+
1615
+ """Entity for MenuDetailColumn"""
1616
+ type MenuDetailColumn {
1617
+ colSize: Float
1618
+ colType: String
1619
+ createdAt: DateTimeISO
1620
+ creator: User
1621
+ defVal: String
1622
+ description: String
1623
+ domain: Domain!
1624
+ extField: Boolean
1625
+ formEditor: String
1626
+ formFormat: String
1627
+ formValidator: String
1628
+ gridAlign: String
1629
+ gridEditor: String
1630
+ gridFormat: String
1631
+ gridRank: Float
1632
+ gridValidator: String
1633
+ gridWidth: Float
1634
+ id: ID!
1635
+ ignoreOnSave: Boolean
1636
+ menuDetail: MenuDetail
1637
+ name: String
1638
+ nullable: Boolean
1639
+ rangeVal: String
1640
+ rank: Float
1641
+ refName: String
1642
+ refParams: String
1643
+ refRelated: String
1644
+ refType: String
1645
+ refUrl: String
1646
+ reverseSort: Boolean
1647
+ searchEditor: String
1648
+ searchInitVal: String
1649
+ searchName: String
1650
+ searchOper: String
1651
+ searchRank: Float
1652
+ sortRank: Float
1653
+ term: String
1654
+ uniqRank: Float
1655
+ updatedAt: DateTimeISO
1656
+ updater: User
1657
+ virtualField: Boolean
1658
+ }
1659
+
1660
+ type MenuDetailColumnList {
1661
+ items: [MenuDetailColumn!]!
1662
+ total: Int!
1663
+ }
1664
+
1665
+ input MenuDetailColumnPatch {
1666
+ colSize: Int
1667
+ colType: String!
1668
+ defVal: String
1669
+ description: String
1670
+ extField: Boolean
1671
+ formEditor: String
1672
+ formFormat: String
1673
+ formValidator: String
1674
+ gridAlign: String
1675
+ gridEditor: String
1676
+ gridFormat: String
1677
+ gridRank: Int
1678
+ gridValidator: String
1679
+ gridWidth: Int
1680
+ ignoreOnSave: Boolean
1681
+ menuDetail: String!
1682
+ name: String!
1683
+ nullable: Boolean
1684
+ rangeVal: String
1685
+ rank: Int
1686
+ refName: String
1687
+ refParams: String
1688
+ refRelated: String
1689
+ refType: String
1690
+ refUrl: String
1691
+ reverseSort: Boolean
1692
+ searchEditor: String
1693
+ searchInitVal: String
1694
+ searchName: String
1695
+ searchOper: String
1696
+ searchRank: Int
1697
+ sortRank: Int
1698
+ term: String
1699
+ uniqRank: Int
1700
+ virtualField: Boolean
1701
+ }
1702
+
1703
+ type MenuDetailList {
1704
+ items: [MenuDetail!]!
1705
+ total: Int!
1706
+ }
1707
+
1708
+ input MenuDetailPatch {
1709
+ association: String
1710
+ buttons: [String!]
1711
+ columns: [String!]
1712
+ customView: String
1713
+ dataProp: String
1714
+ entityId: String
1715
+ masterField: String
1716
+ menu: String
1717
+ name: String
1718
+ saveUrl: String
1719
+ searchUrl: String
1720
+ viewSection: String
1721
+ }
1722
+
1723
+ type MenuList {
1724
+ items: [Menu!]!
1725
+ total: Int!
1726
+ }
1727
+
1728
+ input MenuPatch {
1729
+ buttons: [ObjectRef!]
1730
+ category: String
1731
+ children: [ObjectRef!]
1732
+ columns: [ObjectRef!]
1733
+ cuFlag: String
1734
+ description: String
1735
+ detailFormId: String
1736
+ detailLayout: String
1737
+ fixedColumns: Int
1738
+ gridSaveUrl: String
1739
+ hiddenFlag: Boolean
1740
+ iconPath: String
1741
+ id: ID
1742
+ idField: String
1743
+ itemsProp: String
1744
+ menuType: String
1745
+ name: String
1746
+ pagination: Boolean
1747
+ parent: ObjectRef
1748
+ privilege: PrivilegeInput
1749
+ rank: Int
1750
+ resourceId: String
1751
+ resourceName: String
1752
+ resourceType: String
1753
+ resourceUrl: String
1754
+ role: ObjectRef
1755
+ routing: String
1756
+ routingType: String
1757
+ template: String
1758
+ titleField: String
1759
+ totalProp: String
1760
+ }
1761
+
1762
+ type Mutation {
1763
+ """To activate user"""
1764
+ activateUser(userId: String!): Boolean!
1765
+
1766
+ """To attach a contact on Employee"""
1767
+ attachContact(contactId: String!, id: String!): Employee!
1768
+ cancelInvitation(email: EmailAddress!, reference: String!, type: String!): Boolean!
1769
+
1770
+ """To clear translations cache"""
1771
+ clearTranslationsCache: Boolean!
1772
+
1773
+ """To clone a Board from existing Board"""
1774
+ cloneBoard(id: String!, patch: BoardPatch!, targetGroupId: String, targetSubdomain: String!): Board!
1775
+
1776
+ """To connect a connection"""
1777
+ connectConnection(name: String!): Connection!
1778
+
1779
+ """To import multiple scenarios"""
1780
+ copyScenarios(ids: [String!]!): [Scenario!]!
1781
+
1782
+ """To create new appliance"""
1783
+ createAppliance(appliance: NewAppliance!): Appliance!
1784
+
1785
+ """To create new application"""
1786
+ createApplication(application: NewApplication!): Application!
1787
+
1788
+ """To create new ApprovalLine"""
1789
+ createApprovalLine(approvalLine: NewApprovalLine!): ApprovalLine!
1790
+ createAttachment(attachment: NewAttachment!): Attachment!
1791
+ createAttachments(attachments: [NewAttachment!]!): [Attachment!]!
1792
+
1793
+ """To create new AttributeSet"""
1794
+ createAttributeSet(attribute: NewAttributeSet!): AttributeSet!
1795
+
1796
+ """To create new AuthProvider"""
1797
+ createAuthProvider(authProvider: NewAuthProvider!): AuthProvider!
1798
+
1799
+ """To create new Board"""
1800
+ createBoard(board: NewBoard!): Board!
1801
+
1802
+ """To create new BoardTemplate"""
1803
+ createBoardTemplate(boardTemplate: NewBoardTemplate!): BoardTemplate!
1804
+
1805
+ """To create new CheckItem"""
1806
+ createCheckItem(checkItem: NewCheckItem!): CheckItem!
1807
+
1808
+ """To create new Checklist"""
1809
+ createChecklist(checklist: NewChecklist!): Checklist!
1810
+
1811
+ """To create new CommonCode"""
1812
+ createCommonCode(commonCode: NewCommonCode!): CommonCode!
1813
+
1814
+ """To create new CommonCodeDetail"""
1815
+ createCommonCodeDetail(commonCodeDetail: NewCommonCodeDetail!): CommonCodeDetail!
1816
+
1817
+ """To create new connection"""
1818
+ createConnection(connection: NewConnection!): Connection!
1819
+
1820
+ """To create new Contact"""
1821
+ createContact(contact: NewContact!): Contact!
1822
+
1823
+ """To create new Department"""
1824
+ createDepartment(department: NewDepartment!): Department!
1825
+
1826
+ """To create domain (Only superuser is granted this privilege.)"""
1827
+ createDomain(domainInput: DomainPatch!): Domain!
1828
+
1829
+ """To create new Employee"""
1830
+ createEmployee(employee: NewEmployee!): Employee!
1831
+
1832
+ """To create new Entity"""
1833
+ createEntity(entity: NewEntity!): Entity!
1834
+
1835
+ """To create new EntityColumn"""
1836
+ createEntityColumn(entityColumn: NewEntityColumn!): EntityColumn!
1837
+
1838
+ """To create new Favorite"""
1839
+ createFavorite(favorite: NewFavorite!): Favorite!
1840
+
1841
+ """To create new Font"""
1842
+ createFont(font: NewFont!): Font!
1843
+
1844
+ """To create new Group"""
1845
+ createGroup(group: NewGroup!): Group
1846
+
1847
+ """To create new LiteMenu"""
1848
+ createLiteMenu(liteMenu: NewLiteMenu!): LiteMenu!
1849
+
1850
+ """To create new Menu"""
1851
+ createMenu(menu: NewMenu!): Menu!
1852
+
1853
+ """To create new MenuButton"""
1854
+ createMenuButton(menuButton: NewMenuButton!): MenuButton!
1855
+
1856
+ """To create new MenuColumn"""
1857
+ createMenuColumn(menuColumn: NewMenuColumn!): MenuColumn!
1858
+
1859
+ """To create new MenuDetail"""
1860
+ createMenuDetail(menuDetail: NewMenuDetail!): MenuDetail!
1861
+
1862
+ """To create new MenuDetailButton"""
1863
+ createMenuDetailButton(menuDetailButton: NewMenuDetailButton!): MenuDetailButton!
1864
+
1865
+ """To create new MenuDetailColumn"""
1866
+ createMenuDetailColumn(menuDetailColumn: NewMenuDetailColumn!): MenuDetailColumn!
1867
+
1868
+ """To create new ApprovalLine for current user"""
1869
+ createMyApprovalLine(approvalLine: NewApprovalLine!): ApprovalLine!
1870
+
1871
+ """To create my new PagePreference"""
1872
+ createMyPagePreference(pagePreference: NewPagePreference!): PagePreference!
1873
+
1874
+ """To create new Notification"""
1875
+ createNotification(notification: NewNotification!): Notification!
1876
+
1877
+ """To create new NotificationRule"""
1878
+ createNotificationRule(notificationRule: NewNotificationRule!): NotificationRule!
1879
+
1880
+ """To create new Oauth2Client"""
1881
+ createOauth2Client(oauth2Client: NewOauth2Client!): Oauth2Client!
1882
+
1883
+ """To create new PayloadLog"""
1884
+ createPayloadLog(payloadLog: NewPayloadLog!): PayloadLog!
1885
+
1886
+ """To create new PlayGroup"""
1887
+ createPlayGroup(playGroup: NewPlayGroup!): PlayGroup!
1888
+
1889
+ """To create new PrinterDevice"""
1890
+ createPrinterDevice(printerDevice: NewPrinterDevice!): PrinterDevice!
1891
+
1892
+ """To create new privilege"""
1893
+ createPrivilege(privilege: NewPrivilege!): Privilege!
1894
+
1895
+ """프로젝트 생성"""
1896
+ createProject(project: NewProject!): Project!
1897
+
1898
+ """To create new Resource"""
1899
+ createResource(resource: NewResource!): Resource!
1900
+
1901
+ """To create new user"""
1902
+ createRole(role: NewRole!): User!
1903
+
1904
+ """To create new scenario"""
1905
+ createScenario(scenario: NewScenario!): Scenario!
1906
+
1907
+ """To create new Setting"""
1908
+ createSetting(setting: NewSetting!): Setting!
1909
+
1910
+ """To create new StateRegister"""
1911
+ createStateRegister(stateRegister: NewStateRegister!): StateRegister!
1912
+
1913
+ """To create new Task"""
1914
+ createTask(task: NewTask!): Task!
1915
+
1916
+ """To create new Terminology"""
1917
+ createTerminology(terminology: NewTerminology!): Terminology!
1918
+
1919
+ """To create new Theme"""
1920
+ createTheme(theme: NewTheme!): Theme!
1921
+
1922
+ """To create new user"""
1923
+ createUser(user: NewUser!): User!
1924
+
1925
+ """To create new UserPreference"""
1926
+ createUserPreference(preference: NewUserPreference!): UserPreference!
1927
+ deleteAppBinding(id: String!): Boolean!
1928
+
1929
+ """To delete appliance"""
1930
+ deleteAppliance(id: String!): Boolean!
1931
+
1932
+ """To delete application"""
1933
+ deleteApplication(id: String!): Boolean!
1934
+
1935
+ """To delete ApprovalLine"""
1936
+ deleteApprovalLine(id: String!): Boolean!
1937
+
1938
+ """To delete multiple ApprovalLines"""
1939
+ deleteApprovalLines(ids: [String!]!): Boolean!
1940
+ deleteAttachment(id: String!): Boolean!
1941
+ deleteAttachmentsByRef(refBys: [String!]!): Boolean!
1942
+
1943
+ """To delete AttributeSet"""
1944
+ deleteAttributeSet(id: String!): Boolean!
1945
+
1946
+ """To delete multiple AttributeSets"""
1947
+ deleteAttributeSets(ids: [String!]!): Boolean!
1948
+
1949
+ """To delete AuthProvider"""
1950
+ deleteAuthProvider(id: String!): Boolean!
1951
+ deleteAuthProviders(ids: [String!]!): Boolean!
1952
+
1953
+ """To delete Board"""
1954
+ deleteBoard(id: String!): Boolean!
1955
+
1956
+ """To delete BoardTemplate"""
1957
+ deleteBoardTemplate(id: String!): Boolean!
1958
+
1959
+ """To delete Building"""
1960
+ deleteBuilding(id: String!): Boolean!
1961
+
1962
+ """To delete BuildingComplex"""
1963
+ deleteBuildingComplex(id: String!): Boolean!
1964
+
1965
+ """To delete multiple BuildingComplexes"""
1966
+ deleteBuildingComplexes(ids: [String!]!): Boolean!
1967
+
1968
+ """To delete multiple Buildings"""
1969
+ deleteBuildings(ids: [String!]!): Boolean!
1970
+
1971
+ """To delete CheckItem"""
1972
+ deleteCheckItem(id: String!): Boolean!
1973
+
1974
+ """To delete multiple CheckItems"""
1975
+ deleteCheckItems(ids: [String!]!): Boolean!
1976
+
1977
+ """To delete Checklist"""
1978
+ deleteChecklist(id: String!): Boolean!
1979
+
1980
+ """To delete multiple Checklists"""
1981
+ deleteChecklists(ids: [String!]!): Boolean!
1982
+
1983
+ """To delete CommonCode"""
1984
+ deleteCommonCode(id: String!): Boolean!
1985
+
1986
+ """To delete CommonCodeDetail"""
1987
+ deleteCommonCodeDetail(id: String!): Boolean!
1988
+
1989
+ """To delete multiple CommonCodeDetails"""
1990
+ deleteCommonCodeDetails(ids: [String!]!): Boolean!
1991
+
1992
+ """To delete multiple CommonCodes"""
1993
+ deleteCommonCodes(ids: [String!]!): Boolean!
1994
+
1995
+ """To delete connection"""
1996
+ deleteConnection(name: String!): Boolean!
1997
+
1998
+ """To delete multiple connections"""
1999
+ deleteConnections(names: [String!]!): Boolean!
2000
+
2001
+ """To delete Contact"""
2002
+ deleteContact(id: String!): Boolean!
2003
+
2004
+ """To delete multiple Contacts"""
2005
+ deleteContacts(ids: [String!]!): Boolean!
2006
+
2007
+ """To delete Department"""
2008
+ deleteDepartment(id: String!): Boolean!
2009
+
2010
+ """To delete multiple Departments"""
2011
+ deleteDepartments(ids: [String!]!): Boolean!
2012
+
2013
+ """To delete domain (Only superuser is granted this privilege.)"""
2014
+ deleteDomain(name: String!): Domain!
2015
+
2016
+ """To delete domain user"""
2017
+ deleteDomainUser(email: EmailAddress!): Boolean!
2018
+
2019
+ """To delete multiple domains (Only superuser is granted this privilege.)"""
2020
+ deleteDomains(names: [String!]!): Boolean!
2021
+
2022
+ """To delete Employee"""
2023
+ deleteEmployee(id: String!): Boolean!
2024
+
2025
+ """To delete multiple Employees"""
2026
+ deleteEmployees(ids: [String!]!): Boolean!
2027
+
2028
+ """To delete multiple Entities"""
2029
+ deleteEntities(ids: [String!]!): Boolean!
2030
+
2031
+ """To delete Entity"""
2032
+ deleteEntity(id: String!): Boolean!
2033
+
2034
+ """To delete EntityColumn"""
2035
+ deleteEntityColumn(id: String!): Boolean!
2036
+
2037
+ """To delete multiple EntityColumns"""
2038
+ deleteEntityColumns(ids: [String!]!): Boolean!
2039
+
2040
+ """To delete Favorite"""
2041
+ deleteFavorite(routing: String!): Boolean!
2042
+
2043
+ """To delete Font"""
2044
+ deleteFont(id: String!): Boolean!
2045
+
2046
+ """To delete Group"""
2047
+ deleteGroup(id: String!): Boolean!
2048
+
2049
+ """To delete LiteMenu"""
2050
+ deleteLiteMenu(id: String!): Boolean!
2051
+
2052
+ """To delete Menu"""
2053
+ deleteMenu(id: String!): Boolean!
2054
+
2055
+ """To delete MenuButton"""
2056
+ deleteMenuButton(id: String!): Boolean!
2057
+
2058
+ """To delete multiple MenuButtons"""
2059
+ deleteMenuButtons(ids: [String!]!): Boolean!
2060
+
2061
+ """To delete MenuColumn"""
2062
+ deleteMenuColumn(id: String!): Boolean!
2063
+
2064
+ """To delete multiple MenuColumns"""
2065
+ deleteMenuColumns(ids: [String!]!): Boolean!
2066
+
2067
+ """To delete MenuDetail"""
2068
+ deleteMenuDetail(id: String!): Boolean!
2069
+
2070
+ """To delete MenuDetailButton"""
2071
+ deleteMenuDetailButton(id: String!): Boolean!
2072
+
2073
+ """To delete multiple MenuDetailButtons"""
2074
+ deleteMenuDetailButtons(ids: [String!]!): Boolean!
2075
+
2076
+ """To delete MenuDetailColumn"""
2077
+ deleteMenuDetailColumn(id: String!): Boolean!
2078
+
2079
+ """To delete multiple MenuDetailColumns"""
2080
+ deleteMenuDetailColumns(ids: [String!]!): Boolean!
2081
+
2082
+ """To delete multiple MenuDetails"""
2083
+ deleteMenuDetails(ids: [String!]!): Boolean!
2084
+
2085
+ """To delete multiple Menus"""
2086
+ deleteMenus(ids: [String!]!): Boolean!
2087
+
2088
+ """To delete ApprovalLine for current user"""
2089
+ deleteMyApprovalLine(id: String!): Boolean!
2090
+
2091
+ """To delete multiple ApprovalLines for current user"""
2092
+ deleteMyApprovalLines(ids: [String!]!): Boolean!
2093
+
2094
+ """To delete my PagePreference"""
2095
+ deleteMyPagePreference(element: String!, page: String!): Boolean!
2096
+
2097
+ """To delete my preference"""
2098
+ deleteMyUserPreference(element: String!, key: String!): Boolean!
2099
+
2100
+ """To delete Notification"""
2101
+ deleteNotification(id: String!): Boolean!
2102
+
2103
+ """To delete NotificationRule"""
2104
+ deleteNotificationRule(id: String!): Boolean!
2105
+
2106
+ """To delete multiple NotificationRules"""
2107
+ deleteNotificationRules(ids: [String!]!): Boolean!
2108
+
2109
+ """To delete multiple Notificationes"""
2110
+ deleteNotificationes(ids: [String!]!): Boolean!
2111
+
2112
+ """To delete Oauth2Client"""
2113
+ deleteOauth2Client(id: String!): Boolean!
2114
+
2115
+ """To delete multiple Oauth2Clients"""
2116
+ deleteOauth2Clients(ids: [String!]!): Boolean!
2117
+
2118
+ """To delete PagePreference"""
2119
+ deletePagePreference(id: String!): Boolean!
2120
+
2121
+ """To delete multiple PagePreferences"""
2122
+ deletePagePreferences(ids: [String!]!): Boolean!
2123
+
2124
+ """To delete multiple partnerSettings"""
2125
+ deletePartnerSettings(ids: [String!]!): Boolean!
2126
+
2127
+ """To delete PayloadLog"""
2128
+ deletePayloadLog(id: String!): Boolean!
2129
+
2130
+ """To delete multiple payloadLogs"""
2131
+ deletePayloadLogs(ids: [String!]!): Boolean!
2132
+
2133
+ """To delete PlayGroup"""
2134
+ deletePlayGroup(id: String!): Boolean!
2135
+
2136
+ """To delete PrinterDevice"""
2137
+ deletePrinterDevice(id: String!): Boolean!
2138
+
2139
+ """To delete multiple printerDevices"""
2140
+ deletePrinterDevices(ids: [String!]!): Boolean!
2141
+
2142
+ """To delete privilege"""
2143
+ deletePrivilege(category: String!, name: String!): Boolean!
2144
+
2145
+ """To delete Project"""
2146
+ deleteProject(id: String!): Boolean!
2147
+
2148
+ """To delete Resource"""
2149
+ deleteResource(id: String!): Boolean!
2150
+
2151
+ """To delete multiple Resources"""
2152
+ deleteResources(ids: [String!]!): Boolean!
2153
+
2154
+ """To delete role"""
2155
+ deleteRole(id: String!): Boolean!
2156
+
2157
+ """To delete multiple roles"""
2158
+ deleteRoles(ids: [String!]!): Boolean!
2159
+
2160
+ """To delete scenario"""
2161
+ deleteScenario(name: String!): Boolean!
2162
+
2163
+ """To delete multiple scenarios"""
2164
+ deleteScenarios(ids: [String!]!): Boolean!
2165
+
2166
+ """To delete Setting"""
2167
+ deleteSetting(name: String!): Boolean!
2168
+
2169
+ """To delete multiple settings"""
2170
+ deleteSettings(names: [String!]!): Boolean!
2171
+
2172
+ """To delete StateRegister"""
2173
+ deleteStateRegister(id: String!): Boolean!
2174
+
2175
+ """To delete multiple StateRegisters"""
2176
+ deleteStateRegisters(ids: [String!]!): Boolean!
2177
+
2178
+ """To delete multiple steps"""
2179
+ deleteSteps(ids: [String!]!): Boolean!
2180
+
2181
+ """To delete Task"""
2182
+ deleteTask(id: String!): Boolean!
2183
+
2184
+ """To delete multiple Tasks"""
2185
+ deleteTasks(ids: [String!]!): Boolean!
2186
+
2187
+ """To delete multiple Terminologies"""
2188
+ deleteTerminologies(ids: [String!]!): Boolean!
2189
+
2190
+ """To delete Terminology"""
2191
+ deleteTerminology(id: String!): Boolean!
2192
+
2193
+ """To delete Theme"""
2194
+ deleteTheme(id: String!): Boolean!
2195
+
2196
+ """To delete multiple Themes"""
2197
+ deleteThemes(ids: [String!]!): Boolean!
2198
+
2199
+ """To delete a user"""
2200
+ deleteUser(email: EmailAddress!): Boolean!
2201
+
2202
+ """To delete UserPreference"""
2203
+ deleteUserPreference(id: String!): Boolean!
2204
+
2205
+ """To delete multiple UserPreferences"""
2206
+ deleteUserPreferences(ids: [String!]!): Boolean!
2207
+
2208
+ """To delete some users"""
2209
+ deleteUsers(emails: [String!]!): Boolean!
2210
+
2211
+ """To detach a contact from Employee"""
2212
+ detachContact(id: String!): Employee!
2213
+
2214
+ """To disconnect a connection"""
2215
+ disconnectConnection(name: String!): Connection!
2216
+ domainRegister(domainInput: DomainGeneratorInput!): Domain!
2217
+ domainUserRoleRegister(newDomainInfo: DomainUserRoleInput!): Domain!
2218
+ generateApplianceSecret(id: String!): Appliance!
2219
+ generateApplicationSecret(id: String!): Application!
2220
+ generateUploadURL(type: String!): UploadURL!
2221
+
2222
+ """To get oauth2 auth URL"""
2223
+ getOauth2AuthUrl(id: String!): String!
2224
+ grantRoles(customerId: String!, roles: [RolePatch!]!): Boolean!
2225
+
2226
+ """To import multiple ApprovalLines"""
2227
+ importApprovalLines(approvalLines: [ApprovalLinePatch!]!): Boolean!
2228
+
2229
+ """To import some Attachments"""
2230
+ importAttachments(file: Upload!): [Attachment!]!
2231
+
2232
+ """To import multiple AttributeSets"""
2233
+ importAttributeSets(attributes: [AttributeSetPatch!]!): Boolean!
2234
+
2235
+ """To import some Boards"""
2236
+ importBoards(files: [Upload!]!, groupId: String!, overwrite: Boolean!): [Board!]!
2237
+
2238
+ """To import multiple BuildingComplexes"""
2239
+ importBuildingComplexes(buildingComplexes: [BuildingComplexPatch!]!): Boolean!
2240
+
2241
+ """To import multiple Buildings"""
2242
+ importBuildings(buildings: [BuildingPatch!]!): Boolean!
2243
+
2244
+ """To import multiple CheckItems"""
2245
+ importCheckItems(checkItems: [CheckItemPatch!]!): Boolean!
2246
+
2247
+ """To import multiple Checklists"""
2248
+ importChecklists(checklists: [ChecklistPatch!]!): Boolean!
2249
+
2250
+ """To import multiple CommonCodeDetails"""
2251
+ importCommonCodeDetails(commonCodeDetails: [CommonCodeDetailPatch!]!): Boolean!
2252
+
2253
+ """To import multiple CommonCodes"""
2254
+ importCommonCodes(commonCodes: [CommonCodePatch!]!): Boolean!
2255
+
2256
+ """To import multiple connections"""
2257
+ importConnections(connections: [ConnectionPatch!]!): Boolean!
2258
+
2259
+ """To import multiple Contacts"""
2260
+ importContacts(contacts: [ContactPatch!]!): Boolean!
2261
+
2262
+ """To import multiple Departments"""
2263
+ importDepartments(departments: [DepartmentPatch!]!): Boolean!
2264
+
2265
+ """To import multiple Employees"""
2266
+ importEmployees(employees: [EmployeePatch!]!): Boolean!
2267
+
2268
+ """To import multiple MenuButtons"""
2269
+ importMenuButtons(menuButtons: [MenuButtonPatch!]!): Boolean!
2270
+
2271
+ """To import multiple MenuColumns"""
2272
+ importMenuColumns(menuColumns: [MenuColumnPatch!]!): Boolean!
2273
+
2274
+ """To import multiple MenuDetailButtons"""
2275
+ importMenuDetailButtons(menuDetailButtons: [MenuDetailButtonPatch!]!): Boolean!
2276
+
2277
+ """To import multiple MenuDetailColumns"""
2278
+ importMenuDetailColumns(menuDetailColumns: [MenuDetailColumnPatch!]!): Boolean!
2279
+
2280
+ """To import multiple MenuDetails"""
2281
+ importMenuDetails(menuDetails: [MenuDetailPatch!]!): Boolean!
2282
+
2283
+ """To import multiple Menus"""
2284
+ importMenus(menus: [MenuPatch!]!): Boolean!
2285
+
2286
+ """To import multiple NotificationRules"""
2287
+ importNotificationRules(notificationRules: [NotificationRulePatch!]!): Boolean!
2288
+
2289
+ """To import multiple Oauth2Clients"""
2290
+ importOauth2Clients(oauth2Clients: [Oauth2ClientPatch!]!): Boolean!
2291
+
2292
+ """To import multiple Resources"""
2293
+ importResources(resources: [ResourcePatch!]!): Boolean!
2294
+
2295
+ """To import multiple scenarios"""
2296
+ importScenarios(scenarios: [ScenarioPatch!]!): Boolean!
2297
+
2298
+ """To import multiple StateRegisters"""
2299
+ importStateRegisters(stateRegisters: [StateRegisterPatch!]!): Boolean!
2300
+
2301
+ """To import multiple Tasks"""
2302
+ importTasks(tasks: [TaskPatch!]!): Boolean!
2303
+
2304
+ """To import multiple Terminologies"""
2305
+ importTerminologies(terminologies: [TerminologyPatch!]!): Boolean!
2306
+
2307
+ """To import multiple Themes"""
2308
+ importThemes(themes: [ThemePatch!]!): Boolean!
2309
+
2310
+ """To inactivate user"""
2311
+ inactivateUser(userId: String!): Boolean!
2312
+ inviteCustomer(customerDomainName: String!): Boolean!
2313
+
2314
+ """To invite new user"""
2315
+ inviteUser(email: EmailAddress!): Boolean!
2316
+
2317
+ """To make the board to join the group"""
2318
+ joinGroup(boardIds: [String!]!, id: String!): Group!
2319
+
2320
+ """To make the board to join the play group"""
2321
+ joinPlayGroup(boardIds: [String!]!, id: String!): PlayGroup!
2322
+
2323
+ """To make the board to leave from the play group"""
2324
+ leavePlayGroup(boardIds: [String!]!, id: String!): PlayGroup!
2325
+ multipleUpload(files: [Upload!]!): [Attachment!]!
2326
+
2327
+ """To refresh oauth2 access token"""
2328
+ refreshOauth2AccessToken(id: String!): Oauth2Client!
2329
+
2330
+ """To register a board as a board template with the given ID"""
2331
+ registerBoardAsTemplate(
2332
+ """description of board template to be regiestered"""
2333
+ description: String!
2334
+
2335
+ """board Id to be regiestered"""
2336
+ id: String!
2337
+
2338
+ """name of board template to be regiestered"""
2339
+ name: String!
2340
+
2341
+ """visibility of board template to be regiestered"""
2342
+ visibility: String!
2343
+ ): BoardTemplate!
2344
+
2345
+ """To release a Board"""
2346
+ releaseBoard(id: String!): Board!
2347
+ renewApplicationAccessToken(id: String!, scope: String!): AccessToken!
2348
+
2349
+ """To modify board order of a PlayGroup"""
2350
+ reorderPlayGroup(boardIds: [String!]!, id: String!): PlayGroup!
2351
+
2352
+ """To reset password to default"""
2353
+ resetPasswordToDefault(userId: String!): Boolean!
2354
+
2355
+ """To revert Board version"""
2356
+ revertBoardVersion(id: String!, version: Float!): Board!
2357
+
2358
+ """
2359
+ To run new scenario instance and will return the result after the scenario stop.
2360
+ """
2361
+ runScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstanceRunResult!
2362
+ sendInvitation(email: EmailAddress!, reference: String!, type: String!): Invitation!
2363
+ singleUpload(file: Upload!): Attachment!
2364
+
2365
+ """To start new scenario instance"""
2366
+ startScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstance!
2367
+
2368
+ """To start posting scenario based on the schedule of the given scenario"""
2369
+ startScenarioSchedule(scenarioId: String!): Scenario!
2370
+
2371
+ """To start new scenario instance"""
2372
+ stopScenario(instanceName: String): ScenarioInstance
2373
+
2374
+ """To stop posting scenario based on the schedule of the given scenario"""
2375
+ stopScenarioSchedule(scenarioId: String!): Scenario
2376
+
2377
+ """To synchronize auth-providers users"""
2378
+ synchronizeAuthProviderUsers(id: String!): Boolean!
2379
+
2380
+ """
2381
+ To synchronize privilege master from graphql directives. Only superuser is permitted.
2382
+ """
2383
+ synchronizePrivilegeMaster(privilege: NewPrivilege!): Boolean!
2384
+ terminateContract(partnerName: String!): Boolean!
2385
+
2386
+ """To transfer owner of domain"""
2387
+ transferOwner(email: EmailAddress!): Boolean!
2388
+ updateAppliance(id: String!, patch: AppliancePatch!): Appliance!
2389
+ updateApplication(id: String!, patch: ApplicationPatch!): Application!
2390
+
2391
+ """To modify ApprovalLine information"""
2392
+ updateApprovalLine(id: String!, patch: ApprovalLinePatch!): ApprovalLine!
2393
+ updateAttachment(id: String!, patch: AttachmentPatch!): Attachment!
2394
+
2395
+ """To modify AttributeSet information"""
2396
+ updateAttributeSet(id: String!, patch: AttributeSetPatch!): AttributeSet!
2397
+
2398
+ """To modify AuthProvider information"""
2399
+ updateAuthProvider(id: String!, patch: AuthProviderPatch!): AuthProvider!
2400
+
2401
+ """To modify Board information"""
2402
+ updateBoard(id: String!, patch: BoardPatch!): Board!
2403
+
2404
+ """To modify BoardTemplate information"""
2405
+ updateBoardTemplate(id: String!, patch: BoardTemplatePatch!): BoardTemplate!
2406
+
2407
+ """To modify Building information"""
2408
+ updateBuilding(id: String!, patch: BuildingPatch!): Building!
2409
+
2410
+ """To modify BuildingComplex information"""
2411
+ updateBuildingComplex(id: String!, patch: BuildingComplexPatch!): BuildingComplex!
2412
+
2413
+ """To modify CheckItem information"""
2414
+ updateCheckItem(id: String!, patch: CheckItemPatch!): CheckItem!
2415
+
2416
+ """To modify Checklist information"""
2417
+ updateChecklist(id: String!, patch: ChecklistPatch!): Checklist!
2418
+
2419
+ """To modify CommonCode information"""
2420
+ updateCommonCode(name: String!, patch: CommonCodePatch!): CommonCode!
2421
+
2422
+ """To modify CommonCodeDetail information"""
2423
+ updateCommonCodeDetail(id: String!, patch: CommonCodeDetailPatch!): CommonCodeDetail!
2424
+
2425
+ """To modify connection information"""
2426
+ updateConnection(name: String!, patch: ConnectionPatch!): Connection!
2427
+
2428
+ """To modify Contact information"""
2429
+ updateContact(id: String!, patch: ContactPatch!): Contact!
2430
+
2431
+ """To modify Department information"""
2432
+ updateDepartment(id: String!, patch: DepartmentPatch!): Department!
2433
+
2434
+ """To update domain (Only superuser is granted this privilege.)"""
2435
+ updateDomain(name: String!, patch: DomainPatch!): Domain!
2436
+
2437
+ """To update multiple domains (Only superuser is granted this privilege.)"""
2438
+ updateDomains(patches: [DomainPatch!]!): Boolean!
2439
+
2440
+ """To modify Employee information"""
2441
+ updateEmployee(id: String!, patch: EmployeePatch!): Employee!
2442
+
2443
+ """To modify Entity' information"""
2444
+ updateEntity(id: String!, patch: EntityPatch!): Entity!
2445
+
2446
+ """To modify EntityColumn information"""
2447
+ updateEntityColumn(id: String!, patch: EntityColumnPatch!): EntityColumn!
2448
+
2449
+ """To modify Font information"""
2450
+ updateFont(id: String!, patch: FontPatch!): Font!
2451
+
2452
+ """To modify Group information"""
2453
+ updateGroup(id: String!, patch: GroupPatch!): Group!
2454
+
2455
+ """To modify LiteMenu information"""
2456
+ updateLiteMenu(id: String!, patch: LiteMenuPatch!): LiteMenu!
2457
+
2458
+ """To modify Menu information"""
2459
+ updateMenu(id: String!, patch: MenuPatch!): Menu!
2460
+
2461
+ """To modify MenuButton information"""
2462
+ updateMenuButton(id: String!, patch: MenuButtonPatch!): MenuButton!
2463
+
2464
+ """To modify MenuColumn information"""
2465
+ updateMenuColumn(id: String!, patch: MenuColumnPatch!): MenuColumn!
2466
+
2467
+ """To modify MenuDetail information"""
2468
+ updateMenuDetail(id: String!, patch: MenuDetailPatch!): MenuDetail!
2469
+
2470
+ """To modify MenuDetailButton information"""
2471
+ updateMenuDetailButton(id: String!, patch: MenuDetailButtonPatch!): MenuDetailButton!
2472
+
2473
+ """To modify MenuDetailColumn information"""
2474
+ updateMenuDetailColumn(id: String!, patch: MenuDetailColumnPatch!): MenuDetailColumn!
2475
+
2476
+ """To modify multiple ApprovalLines' information"""
2477
+ updateMultipleApprovalLine(patches: [ApprovalLinePatch!]!): [ApprovalLine!]!
2478
+
2479
+ """To modify multiple AttributeSets' information"""
2480
+ updateMultipleAttributeSet(patches: [AttributeSetPatch!]!): [AttributeSet!]!
2481
+ updateMultipleAuthProvider(patches: [AuthProviderPatch!]!): [AuthProvider!]!
2482
+
2483
+ """To modify multiple Buildings' information"""
2484
+ updateMultipleBuilding(patches: [BuildingPatch!]!): [Building!]!
2485
+
2486
+ """To modify multiple BuildingComplexes' information"""
2487
+ updateMultipleBuildingComplex(patches: [BuildingComplexPatch!]!): [BuildingComplex!]!
2488
+
2489
+ """To modify multiple CheckItems' information"""
2490
+ updateMultipleCheckItem(patches: [CheckItemPatch!]!): [CheckItem!]!
2491
+
2492
+ """To modify multiple Checklists' information"""
2493
+ updateMultipleChecklist(patches: [ChecklistPatch!]!): [Checklist!]!
2494
+
2495
+ """To modify multiple CommonCodes' information"""
2496
+ updateMultipleCommonCode(patches: [CommonCodePatch!]!): [CommonCode!]!
2497
+
2498
+ """To modify multiple CommonCodeDetails' information"""
2499
+ updateMultipleCommonCodeDetail(patches: [CommonCodeDetailPatch!]!): [CommonCodeDetail!]!
2500
+
2501
+ """To modify multiple connections' information"""
2502
+ updateMultipleConnection(patches: [ConnectionPatch!]!): [Connection!]!
2503
+
2504
+ """To modify multiple Contacts' information"""
2505
+ updateMultipleContact(patches: [ContactPatch!]!): [Contact!]!
2506
+
2507
+ """To modify multiple Departments' information"""
2508
+ updateMultipleDepartment(patches: [DepartmentPatch!]!): [Department!]!
2509
+
2510
+ """To modify multiple Employees' information"""
2511
+ updateMultipleEmployee(patches: [EmployeePatch!]!): [Employee!]!
2512
+
2513
+ """To modify multiple Entitys' information"""
2514
+ updateMultipleEntity(patches: [EntityPatch!]!): [Entity!]!
2515
+
2516
+ """To modify multiple Entitys' information"""
2517
+ updateMultipleEntityColumn(patches: [EntityColumnPatch!]!): [EntityColumn!]!
2518
+
2519
+ """To modify multiple Menus' information"""
2520
+ updateMultipleMenu(patches: [MenuPatch!]!): [Menu!]!
2521
+
2522
+ """To modify multiple ApprovalLines' information for current user"""
2523
+ updateMultipleMyApprovalLine(patches: [ApprovalLinePatch!]!): [ApprovalLine!]!
2524
+
2525
+ """To modify multiple Notificationes' information"""
2526
+ updateMultipleNotification(patches: [NotificationPatch!]!): [Notification!]!
2527
+
2528
+ """To modify multiple NotificationRules' information"""
2529
+ updateMultipleNotificationRule(patches: [NotificationRulePatch!]!): [NotificationRule!]!
2530
+
2531
+ """To modify multiple PartnerSettings' information"""
2532
+ updateMultiplePartnerSetting(patches: [PartnerSettingPatch!]!): [PartnerSetting!]!
2533
+
2534
+ """To modify multiple PayloadLogs' information"""
2535
+ updateMultiplePayloadLog(patches: [PayloadLogPatch!]!): [PayloadLog!]!
2536
+
2537
+ """To modify multiple PrinterDevices' information"""
2538
+ updateMultiplePrinterDevice(patches: [PrinterDevicePatch!]!): [PrinterDevice!]!
2539
+
2540
+ """To modify multiple Resources' information"""
2541
+ updateMultipleResource(patches: [ResourcePatch!]!): [Resource!]!
2542
+
2543
+ """To modify multiple scenarios' information"""
2544
+ updateMultipleScenario(patches: [ScenarioPatch!]!): [Scenario!]!
2545
+
2546
+ """To modify multiple Settings' information"""
2547
+ updateMultipleSetting(patches: [SettingPatch!]!): [Setting!]!
2548
+
2549
+ """To modify multiple StateRegisters' information"""
2550
+ updateMultipleStateRegister(patches: [StateRegisterPatch!]!): [StateRegister!]!
2551
+
2552
+ """To modify multiple steps' in a scenario"""
2553
+ updateMultipleStep(patches: [StepPatch!]!, scenarioId: String!): [Step!]!
2554
+
2555
+ """To modify multiple Tasks' information"""
2556
+ updateMultipleTask(patches: [TaskPatch!]!): [Task!]!
2557
+
2558
+ """To modify multiple Terminologies' information"""
2559
+ updateMultipleTerminologies(patches: [TerminologyPatch!]!): [Terminology!]!
2560
+
2561
+ """To modify multiple Themes' information"""
2562
+ updateMultipleTheme(patches: [ThemePatch!]!): [Theme!]!
2563
+
2564
+ """To modify multiple users information"""
2565
+ updateMultipleUser(patches: [UserPatch!]!): [User!]!
2566
+
2567
+ """To modify ApprovalLine information for current user"""
2568
+ updateMyApprovalLine(id: String!, patch: ApprovalLinePatch!): ApprovalLine!
2569
+
2570
+ """To create or update my PagePreference"""
2571
+ updateMyPagePreference(element: String!, page: String!, preference: Object!): PagePreference!
2572
+
2573
+ """To create or update my preference"""
2574
+ updateMyUserPreference(key: String!, preference: Object!): UserPreference!
2575
+
2576
+ """To modify Notification information"""
2577
+ updateNotification(id: String!, patch: NotificationPatch!): Notification!
2578
+
2579
+ """To modify NotificationRule information"""
2580
+ updateNotificationRule(id: String!, patch: NotificationRulePatch!): NotificationRule!
2581
+
2582
+ """To modify Oauth2Client information"""
2583
+ updateOauth2Client(id: String!, patch: Oauth2ClientPatch!): Oauth2Client!
2584
+
2585
+ """To modify PayloadLog information"""
2586
+ updatePayloadLog(id: String!, patch: PayloadLogPatch!): PayloadLog!
2587
+
2588
+ """To modify PlayGroup information"""
2589
+ updatePlayGroup(id: String!, patch: PlayGroupPatch!): PlayGroup!
2590
+
2591
+ """To modify PrinterDevice information"""
2592
+ updatePrinterDevice(id: String!, patch: PrinterDevicePatch!): PrinterDevice!
2593
+
2594
+ """To modify privilege information"""
2595
+ updatePrivilege(category: String!, name: String!, patch: PrivilegePatch!): Privilege!
2596
+
2597
+ """프로젝트 업데이트"""
2598
+ updateProject(project: ProjectPatch!): Project!
2599
+
2600
+ """프로젝트 도면 업데이트"""
2601
+ updateProjectPlan(project: ProjectPatch!): Project!
2602
+
2603
+ """To modify Resource information"""
2604
+ updateResource(id: String!, patch: ResourcePatch!): Resource!
2605
+
2606
+ """To modify role information"""
2607
+ updateRole(id: String!, patch: RolePatch!): Role!
2608
+
2609
+ """To update role Menu"""
2610
+ updateRoleMenu(isCheckedMenu: Boolean!, roleId: String!, targetMenuId: String!): Menu!
2611
+
2612
+ """To update role Menu"""
2613
+ updateRoleMenus(isCheckedAll: Boolean!, parentMenuId: String!, roleId: String!): [Menu!]!
2614
+
2615
+ """To modify scenario information"""
2616
+ updateScenario(name: String!, patch: ScenarioPatch!): Scenario!
2617
+
2618
+ """To update secure IP list for domain"""
2619
+ updateSecureIPList(iplist: Object!): Object
2620
+
2621
+ """To modify Setting information"""
2622
+ updateSetting(name: String!, patch: SettingPatch!): Setting!
2623
+
2624
+ """To modify StateRegister information"""
2625
+ updateStateRegister(id: String!, patch: StateRegisterPatch!): StateRegister!
2626
+
2627
+ """To update state of StateRegister by name"""
2628
+ updateStateRegisterByName(name: String!, state: Object!): StateRegister!
2629
+
2630
+ """To modify Task information"""
2631
+ updateTask(id: String!, patch: TaskPatch!): Task!
2632
+
2633
+ """To modify Terminology information"""
2634
+ updateTerminology(id: String!, patch: TerminologyPatch!): Terminology!
2635
+
2636
+ """To modify Theme information"""
2637
+ updateTheme(id: String!, patch: ThemePatch!): Theme!
2638
+
2639
+ """To modify user information"""
2640
+ updateUser(email: EmailAddress!, patch: UserPatch!): User!
2641
+
2642
+ """To modify UserPreference information"""
2643
+ updateUserPreference(id: String!, patch: UserPreferencePatch!): UserPreference!
2644
+
2645
+ """To update roles for a user"""
2646
+ updateUserRoles(availableRoles: [ObjectRef!]!, selectedRoles: [ObjectRef!]!, userId: String!): User!
2647
+ }
2648
+
2649
+ input NewAppliance {
2650
+ brand: String!
2651
+ description: String
2652
+ model: String!
2653
+ name: String!
2654
+ netmask: String
2655
+ serialNo: String!
2656
+ }
2657
+
2658
+ input NewApplication {
2659
+ description: String
2660
+ email: EmailAddress
2661
+ icon: String
2662
+ name: String!
2663
+ redirectUrl: String
2664
+ type: ApplicationType
2665
+ url: String
2666
+ webhook: String
2667
+ }
2668
+
2669
+ input NewApprovalLine {
2670
+ description: String
2671
+ model: Object
2672
+ name: String!
2673
+ owner: ObjectRefApprovalLineOwnerType!
2674
+ ownerType: ApprovalLineOwnerType!
2675
+ }
2676
+
2677
+ input NewAttachment {
2678
+ category: String
2679
+ description: String
2680
+ file: Upload!
2681
+ refBy: String
2682
+ refType: String
2683
+ }
2684
+
2685
+ input NewAttributeSet {
2686
+ active: Boolean
2687
+ description: String
2688
+ entity: String!
2689
+ items: [AttributeSetItemPatch!]
2690
+ }
2691
+
2692
+ input NewAuthProvider {
2693
+ active: Boolean
2694
+ clientId: String
2695
+ clientSecret: String
2696
+ params: Object
2697
+ privateKey: String
2698
+ tenantId: String
2699
+ type: String!
2700
+ }
2701
+
2702
+ input NewBoard {
2703
+ description: String
2704
+ groupId: String
2705
+ model: String!
2706
+ name: String!
2707
+ thumbnail: String
2708
+ }
2709
+
2710
+ input NewBoardTemplate {
2711
+ description: String!
2712
+ model: String!
2713
+ name: String!
2714
+ thumbnail: String
2715
+ visibility: String!
2716
+ }
2717
+
2718
+ input NewCheckItem {
2719
+ active: Boolean
2720
+ description: String
2721
+ name: String!
2722
+ params: String
2723
+ }
2724
+
2725
+ input NewChecklist {
2726
+ active: Boolean
2727
+ description: String
2728
+ name: String!
2729
+ params: String
2730
+ }
2731
+
2732
+ input NewCommonCode {
2733
+ description: String
2734
+ details: [String!]
2735
+ name: String!
2736
+ }
2737
+
2738
+ input NewCommonCodeDetail {
2739
+ commonCode: ObjectRef!
2740
+ description: String
2741
+ labels: Object
2742
+ name: String!
2743
+ rank: Float!
2744
+ }
2745
+
2746
+ input NewConnection {
2747
+ description: String
2748
+ edge: ObjectRef
2749
+ endpoint: String
2750
+ name: String!
2751
+ params: String
2752
+ type: String
2753
+ }
2754
+
2755
+ input NewContact {
2756
+ address: String
2757
+ company: String
2758
+ department: String
2759
+ email: EmailAddress
2760
+ items: [ContactItemPatch!]
2761
+ name: String!
2762
+ note: String
2763
+ phone: String
2764
+ profile: ProfileInput
2765
+ }
2766
+
2767
+ input NewDepartment {
2768
+ active: Boolean
2769
+ controlNo: String!
2770
+ description: String
2771
+ extension: String
2772
+ manager: ObjectRefForEmployee
2773
+ name: String!
2774
+ parent: ObjectRef
2775
+ picture: Upload
2776
+ }
2777
+
2778
+ input NewEmployee {
2779
+ active: Boolean
2780
+ alias: String
2781
+ controlNo: String!
2782
+ department: ObjectRef
2783
+ extension: String
2784
+ hiredOn: String
2785
+ jobPosition: String
2786
+ jobResponsibility: String
2787
+ name: String!
2788
+ note: String
2789
+ photo: Upload
2790
+ retiredAt: String
2791
+ supervisor: ObjectRefForEmployee
2792
+ type: EmployeeType
2793
+ user: ObjectRefForUser
2794
+ }
2795
+
2796
+ input NewEntity {
2797
+ active: Boolean
2798
+ association: String
2799
+ bundle: String!
2800
+ columns: [String!]
2801
+ dataProp: String
2802
+ delStrategy: String
2803
+ description: String
2804
+ extEntity: Boolean
2805
+ fixedColumns: Int
2806
+ idField: String
2807
+ idType: String
2808
+ master: String
2809
+ multiSaveUrl: String
2810
+ name: String!
2811
+ refField: String
2812
+ searchUrl: String
2813
+ tableName: String!
2814
+ titleField: String
2815
+ }
2816
+
2817
+ input NewEntityColumn {
2818
+ colSize: Float
2819
+ colType: String!
2820
+ defVal: String
2821
+ description: String
2822
+ entity: ObjectRef!
2823
+ formEditor: String
2824
+ formFormat: String
2825
+ formValidator: String
2826
+ gridAlign: String
2827
+ gridEditor: String
2828
+ gridFormat: String
2829
+ gridRank: Int
2830
+ gridValidator: String
2831
+ gridWidth: Int
2832
+ ignoreOnSav: Boolean
2833
+ name: String!
2834
+ nullable: Boolean
2835
+ rangeVal: String
2836
+ rank: Float
2837
+ refName: String
2838
+ refParams: String
2839
+ refRelated: String
2840
+ refType: String
2841
+ refUrl: String
2842
+ reverseSort: Boolean
2843
+ searchEditor: String
2844
+ searchInitVal: String
2845
+ searchName: String
2846
+ searchOper: String
2847
+ searchRank: Int
2848
+ sortRank: Int
2849
+ term: String
2850
+ uniqRank: Int
2851
+ virtualField: Boolean
2852
+ }
2853
+
2854
+ input NewFavorite {
2855
+ routing: String!
2856
+ }
2857
+
2858
+ input NewFont {
2859
+ active: Boolean
2860
+ files: [Upload!]
2861
+ name: String!
2862
+ path: String
2863
+ provider: String
2864
+ uri: String
2865
+ }
2866
+
2867
+ input NewGroup {
2868
+ description: String
2869
+ name: String!
2870
+ }
2871
+
2872
+ input NewLiteMenu {
2873
+ active: Boolean
2874
+ appName: String
2875
+ description: String
2876
+ icon: String
2877
+ labels: Object
2878
+ name: String!
2879
+ parent: String
2880
+ privilege: PrivilegeInput
2881
+ rank: Int
2882
+ type: String
2883
+ value: String
2884
+ }
2885
+
2886
+ input NewMenu {
2887
+ buttons: [ObjectRef!]
2888
+ category: String
2889
+ children: [ObjectRef!]
2890
+ columns: [ObjectRef!]
2891
+ description: String
2892
+ detailFormId: String
2893
+ detailLayout: String
2894
+ fixedColumns: Int
2895
+ gridSaveUrl: String
2896
+ hiddenFlag: Boolean
2897
+ iconPath: String
2898
+ idField: String
2899
+ itemsProp: String
2900
+ menuType: String!
2901
+ name: String!
2902
+ pagination: Boolean
2903
+ parent: ObjectRef
2904
+ privilege: PrivilegeInput
2905
+ rank: Int
2906
+ resourceId: String
2907
+ resourceName: String
2908
+ resourceType: String
2909
+ resourceUrl: String
2910
+ role: ObjectRef
2911
+ routing: String
2912
+ routingType: String
2913
+ template: String
2914
+ titleField: String
2915
+ totalProp: String
2916
+ }
2917
+
2918
+ input NewMenuButton {
2919
+ auth: String
2920
+ icon: String
2921
+ logic: String
2922
+ menu: String!
2923
+ rank: Int
2924
+ style: String
2925
+ text: String!
2926
+ }
2927
+
2928
+ input NewMenuColumn {
2929
+ colSize: Int
2930
+ colType: String!
2931
+ defVal: String
2932
+ description: String
2933
+ extField: Boolean
2934
+ formEditor: String
2935
+ formFormat: String
2936
+ formValidator: String
2937
+ gridAlign: String
2938
+ gridEditor: String
2939
+ gridFormat: String
2940
+ gridRank: Int
2941
+ gridValidator: String
2942
+ gridWidth: Int
2943
+ ignoreOnSave: Boolean
2944
+ menu: String!
2945
+ name: String!
2946
+ nullable: Boolean
2947
+ rangeVal: String
2948
+ rank: Int
2949
+ refName: String
2950
+ refParams: String
2951
+ refRelated: String
2952
+ refType: String
2953
+ refUrl: String
2954
+ reverseSort: Boolean
2955
+ searchEditor: String
2956
+ searchInitVal: String
2957
+ searchName: String
2958
+ searchOper: String
2959
+ searchRank: Int
2960
+ sortRank: Int
2961
+ term: String
2962
+ uniqRank: Int
2963
+ virtualField: Boolean
2964
+ }
2965
+
2966
+ input NewMenuDetail {
2967
+ association: String
2968
+ buttons: [String!]
2969
+ columns: [String!]
2970
+ customView: String
2971
+ dataProp: String
2972
+ entityId: String
2973
+ masterField: String
2974
+ menu: String!
2975
+ name: String!
2976
+ saveUrl: String
2977
+ searchUrl: String
2978
+ viewSection: String!
2979
+ }
2980
+
2981
+ input NewMenuDetailButton {
2982
+ icon: String
2983
+ logic: String
2984
+ menuDetail: String!
2985
+ rank: Int
2986
+ style: String
2987
+ text: String!
2988
+ }
2989
+
2990
+ input NewMenuDetailColumn {
2991
+ colSize: Int
2992
+ colType: String
2993
+ defVal: String
2994
+ description: String
2995
+ extField: Boolean
2996
+ formEditor: String
2997
+ formFormat: String
2998
+ formValidator: String
2999
+ gridAlign: String
3000
+ gridEditor: String
3001
+ gridFormat: String
3002
+ gridRank: Int
3003
+ gridValidator: String
3004
+ gridWidth: Int
3005
+ ignoreOnSave: Boolean
3006
+ menuDetail: String
3007
+ name: String
3008
+ nullable: Boolean
3009
+ rangeVal: String
3010
+ rank: Int
3011
+ refName: String
3012
+ refParams: String
3013
+ refRelated: String
3014
+ refType: String
3015
+ refUrl: String
3016
+ reverseSort: Boolean
3017
+ searchEditor: String
3018
+ searchInitVal: String
3019
+ searchName: String
3020
+ searchOper: String
3021
+ searchRank: Int
3022
+ sortRank: Int
3023
+ term: String
3024
+ uniqRank: Int
3025
+ virtualField: Boolean
3026
+ }
3027
+
3028
+ input NewNotification {
3029
+ body: String
3030
+ image: String
3031
+ ownerId: String
3032
+ property: Object
3033
+ subject: String
3034
+ timestamp: DateTimeISO
3035
+ title: String
3036
+ type: String
3037
+ url: String
3038
+ }
3039
+
3040
+ input NewNotificationRule {
3041
+ active: Boolean
3042
+ body: String
3043
+ description: String
3044
+ name: String!
3045
+ state: NotificationRuleStatus
3046
+ thumbnail: Upload
3047
+ title: String
3048
+ url: String
3049
+ }
3050
+
3051
+ input NewOauth2Client {
3052
+ accessToken: String
3053
+ accessTokenUrl: String
3054
+ authUrl: String
3055
+ callbackUrl: String
3056
+ clientId: String
3057
+ clientSecret: String
3058
+ codeChallengeMethod: String
3059
+ codeVerifier: String
3060
+ description: String
3061
+ grantType: String
3062
+ icon: String
3063
+ jwtToken: JWT
3064
+ name: String!
3065
+ password: String
3066
+ refreshToken: String
3067
+ scopes: String
3068
+ username: String
3069
+ webhook: String
3070
+ }
3071
+
3072
+ input NewPagePreference {
3073
+ element: String
3074
+ page: String
3075
+ preference: Object!
3076
+ user: ObjectRef!
3077
+ }
3078
+
3079
+ input NewPayloadLog {
3080
+ description: String
3081
+ name: String!
3082
+ }
3083
+
3084
+ input NewPlayGroup {
3085
+ description: String
3086
+ name: String!
3087
+ }
3088
+
3089
+ input NewPrinterDevice {
3090
+ activeFlag: Boolean
3091
+ defaultFlag: Boolean
3092
+ description: String!
3093
+ dpi: Int
3094
+ jobCategory: String
3095
+ jobClass: String
3096
+ jobType: String
3097
+ name: String!
3098
+ note: String
3099
+ printerDriver: String
3100
+ printerIp: String
3101
+ printerPort: Int
3102
+ serviceUrl: String
3103
+ status: String
3104
+ type: String
3105
+ }
3106
+
3107
+ input NewPrivilege {
3108
+ category: String!
3109
+ description: String
3110
+ name: String!
3111
+ roles: [ObjectRef!]
3112
+ }
3113
+
3114
+ input NewProject {
3115
+ name: String!
3116
+ }
3117
+
3118
+ input NewResource {
3119
+ active: Boolean
3120
+ description: String
3121
+ name: String!
3122
+ params: String
3123
+ }
3124
+
3125
+ input NewRole {
3126
+ description: String
3127
+ name: String!
3128
+ privileges: [ObjectRef!]
3129
+ users: [ObjectRef!]
3130
+ }
3131
+
3132
+ input NewScenario {
3133
+ active: Boolean
3134
+ description: String
3135
+ name: String!
3136
+ privilege: PrivilegeInput
3137
+ schedule: String
3138
+ timezone: String
3139
+ ttl: Float
3140
+ type: String
3141
+ }
3142
+
3143
+ input NewSetting {
3144
+ category: String!
3145
+ description: String
3146
+ name: String!
3147
+ value: String
3148
+ }
3149
+
3150
+ input NewStateRegister {
3151
+ description: String
3152
+ name: String!
3153
+ refBy: String
3154
+ state: Object
3155
+ ttl: Int
3156
+ type: String
3157
+ }
3158
+
3159
+ input NewTask {
3160
+ active: Boolean
3161
+ description: String
3162
+ name: String!
3163
+ params: String
3164
+ }
3165
+
3166
+ input NewTerminology {
3167
+ category: String!
3168
+ description: String
3169
+ display: String!
3170
+ locale: String!
3171
+ name: String!
3172
+ }
3173
+
3174
+ input NewTheme {
3175
+ active: Boolean
3176
+ description: String
3177
+ name: String!
3178
+ type: String
3179
+ value: Object
3180
+ }
3181
+
3182
+ input NewUser {
3183
+ description: String
3184
+ email: EmailAddress!
3185
+ name: String!
3186
+ password: String
3187
+ roles: [ObjectRef!]
3188
+ userType: String
3189
+ }
3190
+
3191
+ input NewUserByDomainWizardInput {
3192
+ email: EmailAddress!
3193
+ isInvitee: Boolean
3194
+ name: String!
3195
+ owner: Boolean!
3196
+ password: String
3197
+ roles: [NewRole!]!
3198
+ }
3199
+
3200
+ input NewUserPreference {
3201
+ key: String!
3202
+ preference: Object!
3203
+ user: ObjectRef!
3204
+ }
3205
+
3206
+ """Entity for Notification"""
3207
+ type Notification {
3208
+ body: String
3209
+ createdAt: DateTimeISO
3210
+ creator: User
3211
+ domain: Domain!
3212
+ id: ID!
3213
+ image: String
3214
+ owner: User
3215
+ property: Object
3216
+ state: String
3217
+ subject: String
3218
+ timestamp: Date
3219
+ title: String
3220
+ type: String
3221
+ updatedAt: DateTimeISO
3222
+ updater: User
3223
+ url: String
3224
+ }
3225
+
3226
+ type NotificationList {
3227
+ items: [Notification!]!
3228
+ total: Int!
3229
+ }
3230
+
3231
+ input NotificationPatch {
3232
+ cuFlag: String
3233
+ id: ID
3234
+ state: NotificationStatus
3235
+ }
3236
+
3237
+ """Entity for NotificationRule"""
3238
+ type NotificationRule {
3239
+ body: String
3240
+ channels: String
3241
+ createdAt: DateTimeISO
3242
+ creator: User
3243
+ deletedAt: DateTimeISO
3244
+ description: String
3245
+ domain: Domain!
3246
+ id: ID!
3247
+ name: String
3248
+
3249
+ """notification recipients."""
3250
+ recipients: [RecipientItem!]
3251
+ state: String
3252
+ thumbnail: String
3253
+ title: String
3254
+ updatedAt: DateTimeISO
3255
+ updater: User
3256
+ url: String
3257
+ version: Float
3258
+ }
3259
+
3260
+ type NotificationRuleList {
3261
+ items: [NotificationRule!]!
3262
+ total: Int!
3263
+ }
3264
+
3265
+ input NotificationRulePatch {
3266
+ body: String
3267
+ cuFlag: String
3268
+ description: String
3269
+ id: ID
3270
+ name: String
3271
+ state: NotificationRuleStatus
3272
+ thumbnail: Upload
3273
+ title: String
3274
+ url: String
3275
+ }
3276
+
3277
+ """state enumeration of a notificationRule"""
3278
+ enum NotificationRuleStatus {
3279
+ DRAFT
3280
+ RELEASED
3281
+ }
3282
+
3283
+ """state enumeration of a notification"""
3284
+ enum NotificationStatus {
3285
+ NOTREAD
3286
+ READ
3287
+ }
3288
+
3289
+ """Entity for Oauth2Client"""
3290
+ type Oauth2Client {
3291
+ accessToken: String
3292
+ accessTokenUrl: String
3293
+ authUrl: String
3294
+ callbackUrl: String
3295
+ clientId: String
3296
+ clientSecret: String
3297
+ codeChallengeMethod: String
3298
+ codeVerifier: String
3299
+ createdAt: DateTimeISO
3300
+ creator: User
3301
+ description: String
3302
+ domain: Domain!
3303
+ expires: DateTimeISO
3304
+ grantType: String
3305
+ icon: String
3306
+ id: ID!
3307
+ jwtToken: JWT
3308
+ name: String!
3309
+ password: String
3310
+ refreshToken: String
3311
+ scopes: String
3312
+ state: String
3313
+ tokenType: String
3314
+ updatedAt: DateTimeISO
3315
+ updater: User
3316
+ username: String
3317
+ webhook: String
3318
+ }
3319
+
3320
+ type Oauth2ClientList {
3321
+ items: [Oauth2Client!]!
3322
+ total: Int!
3323
+ }
3324
+
3325
+ input Oauth2ClientPatch {
3326
+ accessToken: String
3327
+ accessTokenUrl: String
3328
+ authUrl: String
3329
+ callbackUrl: String
3330
+ clientId: String
3331
+ clientSecret: String
3332
+ codeChallengeMethod: String
3333
+ codeVerifier: String
3334
+ description: String
3335
+ grantType: String
3336
+ icon: String
3337
+ jwtToken: JWT
3338
+ name: String
3339
+ password: String
3340
+ refreshToken: String
3341
+ scopes: String
3342
+ username: String
3343
+ webhook: String
3344
+ }
3345
+
3346
+ """Can be anything"""
3347
+ scalar Object
3348
+
3349
+ input ObjectRef {
3350
+ """Field description"""
3351
+ description: String
3352
+
3353
+ """Field id"""
3354
+ id: ID!
3355
+
3356
+ """Field name"""
3357
+ name: String
3358
+ }
3359
+
3360
+ input ObjectRefApprovalLineOwnerType {
3361
+ controlNo: String
3362
+
3363
+ """Field description"""
3364
+ description: String
3365
+
3366
+ """Field id"""
3367
+ id: ID!
3368
+
3369
+ """Field name"""
3370
+ name: String
3371
+ }
3372
+
3373
+ input ObjectRefForEmployee {
3374
+ active: Boolean
3375
+ alias: String
3376
+ controlNo: String
3377
+
3378
+ """Field description"""
3379
+ description: String
3380
+ email: EmailAddress
3381
+ hiredOn: String
3382
+
3383
+ """Field id"""
3384
+ id: ID!
3385
+ jobPosition: String
3386
+ jobResponsibility: String
3387
+
3388
+ """Field name"""
3389
+ name: String
3390
+ photo: String
3391
+ type: EmployeeType
3392
+ }
3393
+
3394
+ input ObjectRefForUser {
3395
+ """Field description"""
3396
+ description: String
3397
+ email: EmailAddress
3398
+
3399
+ """Field id"""
3400
+ id: ID!
3401
+
3402
+ """Field name"""
3403
+ name: String
3404
+ }
3405
+
3406
+ type OrgMemberTarget {
3407
+ controlNo: String
3408
+
3409
+ """Field description"""
3410
+ description: String
3411
+
3412
+ """Field id"""
3413
+ id: ID!
3414
+
3415
+ """Field name"""
3416
+ name: String
3417
+ }
3418
+
3419
+ """type enumeration of a approval line item"""
3420
+ enum OrgMemberTargetType {
3421
+ Department
3422
+ Employee
3423
+ MyDepartment
3424
+ MySupervisor
3425
+ Myself
3426
+ Role
3427
+ }
3428
+
3429
+ """Entity for PagePreference"""
3430
+ type PagePreference {
3431
+ createdAt: DateTimeISO
3432
+ creator: User
3433
+ domain: Domain!
3434
+ element: String
3435
+ id: ID!
3436
+ page: String
3437
+ preference: Object
3438
+ updatedAt: DateTimeISO
3439
+ updater: User
3440
+ user: User!
3441
+ }
3442
+
3443
+ type PagePreferenceList {
3444
+ items: [PagePreference!]!
3445
+ total: Int!
3446
+ }
3447
+
3448
+ input Pagination {
3449
+ limit: Int
3450
+ page: Int
3451
+ }
3452
+
3453
+ type Partner {
3454
+ approvedAt: DateTimeISO
3455
+ approver: User
3456
+ domain: Domain!
3457
+ id: ID!
3458
+ partnerDomain: Domain!
3459
+ requestedAt: DateTimeISO
3460
+ requester: User
3461
+ }
3462
+
3463
+ type PartnerList {
3464
+ items: [Partner!]
3465
+ total: Int
3466
+ }
3467
+
3468
+ """Entity for PartnerSetting"""
3469
+ type PartnerSetting {
3470
+ category: String
3471
+ createdAt: DateTimeISO
3472
+ creator: User
3473
+ description: String
3474
+ domain: Domain!
3475
+ id: ID!
3476
+ name: String
3477
+ partnerDomain: Domain
3478
+ partnerDomainId: String
3479
+ setting: Setting
3480
+ settingId: String
3481
+ updatedAt: DateTimeISO
3482
+ updater: User
3483
+ value: String
3484
+ }
3485
+
3486
+ type PartnerSettingList {
3487
+ items: [PartnerSetting!]!
3488
+ total: Int!
3489
+ }
3490
+
3491
+ input PartnerSettingPatch {
3492
+ cuFlag: String!
3493
+ id: ID
3494
+ partnerDomain: ObjectRef
3495
+ setting: ObjectRef
3496
+ value: String
3497
+ }
3498
+
3499
+ """Entity for PayloadLog"""
3500
+ type PayloadLog {
3501
+ createdAt: DateTimeISO
3502
+ creator: User
3503
+ domain: Domain!
3504
+ endpoint: String!
3505
+ id: ID!
3506
+ name: String!
3507
+ request: String!
3508
+ response: String!
3509
+ src: String
3510
+ type: String!
3511
+ updatedAt: DateTimeISO
3512
+ updater: User
3513
+ }
3514
+
3515
+ type PayloadLogList {
3516
+ items: [PayloadLog!]!
3517
+ total: Int!
3518
+ }
3519
+
3520
+ input PayloadLogPatch {
3521
+ cuFlag: String!
3522
+ description: String
3523
+ id: ID
3524
+ name: String
3525
+ }
3526
+
3527
+ type PendingObject {
3528
+ due: String!
3529
+ priority: Int!
3530
+ stuff: Object!
3531
+ tag: String
3532
+ }
3533
+
3534
+ """Entity for Board PlayGroup"""
3535
+ type PlayGroup {
3536
+ boards: [Board!]
3537
+ createdAt: DateTimeISO
3538
+ creator: User
3539
+ description: String
3540
+ domain: Domain
3541
+ id: ID!
3542
+ name: String!
3543
+ updatedAt: DateTimeISO
3544
+ updater: User
3545
+ }
3546
+
3547
+ type PlayGroupList {
3548
+ items: [PlayGroup!]!
3549
+ total: Int!
3550
+ }
3551
+
3552
+ input PlayGroupPatch {
3553
+ description: String
3554
+ name: String
3555
+ }
3556
+
3557
+ """Entity for PrinterDevice"""
3558
+ type PrinterDevice {
3559
+ activeFlag: Boolean
3560
+ createdAt: DateTimeISO
3561
+ creator: User
3562
+ defaultFlag: Boolean
3563
+ description: String!
3564
+ domain: Domain!
3565
+ dpi: Int
3566
+ id: ID!
3567
+ jobCategory: String
3568
+ jobClass: String
3569
+ jobType: String
3570
+ name: String!
3571
+ note: String
3572
+ printerDriver: String
3573
+ printerIp: String
3574
+ printerPort: Int
3575
+ serviceUrl: String
3576
+ status: String
3577
+ type: String!
3578
+ updatedAt: DateTimeISO
3579
+ updater: User
3580
+ }
3581
+
3582
+ type PrinterDeviceList {
3583
+ items: [PrinterDevice!]!
3584
+ total: Int!
3585
+ }
3586
+
3587
+ input PrinterDevicePatch {
3588
+ activeFlag: Boolean
3589
+ cuFlag: String!
3590
+ defaultFlag: Boolean
3591
+ description: String
3592
+ dpi: Int
3593
+ id: ID
3594
+ jobCategory: String
3595
+ jobClass: String
3596
+ jobType: String
3597
+ name: String
3598
+ note: String
3599
+ printerDriver: String
3600
+ printerIp: String
3601
+ printerPort: Int
3602
+ serviceUrl: String
3603
+ status: String
3604
+ type: String
3605
+ }
3606
+
3607
+ type Privilege {
3608
+ category: String
3609
+ createdAt: DateTimeISO
3610
+ creator: User
3611
+ description: String
3612
+ id: ID!
3613
+ name: String!
3614
+ privilege: String!
3615
+ roles: [Role!]
3616
+ updatedAt: DateTimeISO
3617
+ updater: User
3618
+ }
3619
+
3620
+ input PrivilegeInput {
3621
+ category: String
3622
+ owner: Boolean
3623
+ privilege: String
3624
+ super: Boolean
3625
+ }
3626
+
3627
+ type PrivilegeList {
3628
+ items: [Privilege!]
3629
+ total: Int
3630
+ }
3631
+
3632
+ type PrivilegeObject {
3633
+ category: String
3634
+ owner: Boolean
3635
+ privilege: String
3636
+ super: Boolean
3637
+ }
3638
+
3639
+ input PrivilegePatch {
3640
+ category: String
3641
+ description: String
3642
+ id: String
3643
+ name: String
3644
+ roles: [ObjectRef!]
3645
+ }
3646
+
3647
+ """Object type for Profile"""
3648
+ type Profile {
3649
+ left: Float
3650
+ picture: String
3651
+ top: Float
3652
+ zoom: Float
3653
+ }
3654
+
3655
+ """Input type for Profile"""
3656
+ input ProfileInput {
3657
+ file: Upload
3658
+ left: Float
3659
+ picture: String
3660
+ top: Float
3661
+ zoom: Float
3662
+ }
3663
+
3664
+ """프로젝트"""
3665
+ type Project {
3666
+ buildingComplex: BuildingComplex
3667
+ createdAt: DateTimeISO
3668
+ creator: User
3669
+ deletedAt: DateTimeISO
3670
+ domain: Domain
3671
+ endDate: String
3672
+ id: ID!
3673
+ inspPassRate: Float
3674
+ kpi: Float
3675
+ mainPhoto: Attachment
3676
+ name: String!
3677
+ robotProgressRate: Float
3678
+ startDate: String
3679
+ state: String!
3680
+ structuralSafetyRate: Float
3681
+ tasks: [Task!]
3682
+ totalProgress: Float
3683
+ updatedAt: DateTimeISO
3684
+ updater: User
3685
+ weeklyProgress: Float
3686
+ }
3687
+
3688
+ type ProjectList {
3689
+ items: [Project!]!
3690
+ total: Int!
3691
+ }
3692
+
3693
+ input ProjectPatch {
3694
+ buildingComplex: BuildingComplexPatch
3695
+ endDate: String
3696
+ id: String!
3697
+ inspPassRate: Float
3698
+ kpi: Float
3699
+ mainPhotoUpload: Upload
3700
+ name: String!
3701
+ robotProgressRate: Float
3702
+ startDate: String
3703
+ structuralSafetyRate: Float
3704
+ totalProgress: Float
3705
+ weeklyProgress: Float
3706
+ }
3707
+
3708
+ type PropertySpec {
3709
+ label: String!
3710
+ name: String!
3711
+ placeholder: String
3712
+ property: Object
3713
+ styles: Object
3714
+ type: String!
3715
+ }
3716
+
3717
+ type Query {
3718
+ APIDocCompletion(input: APIDocCompletionInput!): APIDocCompletionOutput!
3719
+ appBinding(id: String!): AppBinding!
3720
+ appBindings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AppBindingList!
3721
+
3722
+ """ To fetch appliance"""
3723
+ appliance(id: String!): Appliance!
3724
+
3725
+ """To fetch multiple appliance"""
3726
+ appliances(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApplianceList!
3727
+
3728
+ """To fetch application"""
3729
+ application(id: String!): Application!
3730
+
3731
+ """To fetch multiple application"""
3732
+ applications(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApplicationList!
3733
+
3734
+ """To fetch a approval line"""
3735
+ approvalLine(id: String!): ApprovalLine
3736
+
3737
+ """To fetch referable approval lines for the user"""
3738
+ approvalLineReferences(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
3739
+
3740
+ """To fetch multiple approval lines"""
3741
+ approvalLines(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
3742
+ attachment(id: String!): Attachment!
3743
+ attachments(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AttachmentList!
3744
+
3745
+ """To fetch a AttributeSet"""
3746
+ attributeSet(id: String!): AttributeSet
3747
+
3748
+ """To fetch a AttributeSet by Entity name"""
3749
+ attributeSetByEntity(entity: String!): AttributeSet
3750
+
3751
+ """To fetch multiple AttributeSets"""
3752
+ attributeSets(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AttributeSetList!
3753
+
3754
+ """To fetch a AuthProvider"""
3755
+ authProvider(id: String!): AuthProvider
3756
+
3757
+ """To fetch a AuthProvider"""
3758
+ authProviderTypes: AuthProviderTypeList
3759
+
3760
+ """To fetch multiple AuthProviders"""
3761
+ authProviders(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AuthProviderList!
3762
+
3763
+ """To fetch a board"""
3764
+ board(id: String!): Board!
3765
+
3766
+ """To fetch a Board Model by name"""
3767
+ boardByName(name: String!): Board
3768
+
3769
+ """To fetch the latest Board published"""
3770
+ boardPublished(id: String!): BoardHistory!
3771
+
3772
+ """To fetch a BoardSettings"""
3773
+ boardSettings(names: [String!]): [BoardSetting!]!
3774
+
3775
+ """To fetch a BoardTemplate"""
3776
+ boardTemplate(id: String!): BoardTemplate
3777
+
3778
+ """To fetch multiple BoardTemplates"""
3779
+ boardTemplates(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardTemplateList!
3780
+
3781
+ """To fetch BoardTemplates created by me"""
3782
+ boardTemplatesCreatedByMe(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardTemplateList!
3783
+
3784
+ """To fetch a Board Versions"""
3785
+ boardVersions(id: String!): [BoardHistory!]!
3786
+
3787
+ """To fetch multiple Boards"""
3788
+ boards(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardList!
3789
+
3790
+ """To fetch Boards created by me"""
3791
+ boardsCreatedByMe(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardList!
3792
+
3793
+ """To fetch a building"""
3794
+ building(id: String!): Building
3795
+
3796
+ """To fetch a BuildingComplex"""
3797
+ buildingBuildingComplex(id: String!): BuildingComplex
3798
+ chatCompletion(input: ChatCompletionInput!): ChatCompletionOutput!
3799
+
3800
+ """To check if system would provide default password to create new user"""
3801
+ checkDefaultPassword: Boolean!
3802
+
3803
+ """To fetch a CheckItem"""
3804
+ checkItem(id: String!): CheckItem
3805
+
3806
+ """To fetch multiple CheckItems"""
3807
+ checkItems(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): CheckItemList!
3808
+
3809
+ """To check if system would provide default password to create new user"""
3810
+ checkResettablePasswordToDefault: Boolean!
3811
+
3812
+ """To fetch the preset of role for new user"""
3813
+ checkRolePreset: [Role!]!
3814
+
3815
+ """To check if current user is belongs to current domain"""
3816
+ checkUserBelongsDomain: Boolean!
3817
+
3818
+ """..."""
3819
+ checkUserExistence(email: EmailAddress!): Boolean!
3820
+
3821
+ """To fetch a Checklist"""
3822
+ checklist(id: String!): Checklist
3823
+
3824
+ """To fetch multiple Checklists"""
3825
+ checklists(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ChecklistList!
3826
+
3827
+ """To fetch common approval lines"""
3828
+ commonApprovalLines(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
3829
+
3830
+ """To fetch a CommonCode"""
3831
+ commonCode(name: String!): CommonCode
3832
+
3833
+ """To fetch a CommonCodeDetail"""
3834
+ commonCodeDetail(id: String!): CommonCodeDetail!
3835
+
3836
+ """To fetch multiple CommonCodeDetails"""
3837
+ commonCodeDetails(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): CommonCodeDetailList!
3838
+
3839
+ """To fetch multiple CommonCodes"""
3840
+ commonCodes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): CommonCodeList!
3841
+
3842
+ """To fetch a connector"""
3843
+ connection(name: String!): ConnectorType!
3844
+
3845
+ """To fetch multiple connections"""
3846
+ connections(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ConnectionList!
3847
+
3848
+ """To fetch the connector from a connection"""
3849
+ connectorByConnection(connectionName: String!): ConnectorType!
3850
+
3851
+ """To fetch multiple connector"""
3852
+ connectors: ConnectorList!
3853
+
3854
+ """To fetch a Contact"""
3855
+ contact(id: String!): Contact
3856
+
3857
+ """To fetch multiple Contacts"""
3858
+ contacts(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ContactList!
3859
+ customers: [Domain!]!
3860
+ decipherCode(input: CodeDecipherInput!): CodeDecipherOutput!
3861
+ decipherErrorCode(input: CodeDecipherInput!): CodeDecipherOutput!
3862
+
3863
+ """To fetch a Department"""
3864
+ department(id: String!): Department
3865
+
3866
+ """To fetch a Root Departments"""
3867
+ departmentRoots(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DepartmentList
3868
+
3869
+ """To fetch multiple Departments"""
3870
+ departments(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DepartmentList!
3871
+
3872
+ """To fetch domain"""
3873
+ domain(id: String!): Domain!
3874
+
3875
+ """To fetch all domains (Only superuser is granted this privilege.)"""
3876
+ domains(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
3877
+
3878
+ """To fetch domains with given privilege for user"""
3879
+ domainsWithPrivilege(category: String!, privilege: String!): [Domain!]!
3880
+
3881
+ """To fetch multiple appliance"""
3882
+ edges(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApplianceList!
3883
+
3884
+ """To fetch a Employee"""
3885
+ employee(id: String!): Employee
3886
+
3887
+ """To fetch multiple Employees"""
3888
+ employees(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EmployeeList!
3889
+
3890
+ """To fetch multiple Entities"""
3891
+ entities(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EntityList!
3892
+
3893
+ """To fetch a Entity"""
3894
+ entity(id: String!): Entity!
3895
+
3896
+ """To fetch a EntityColumn"""
3897
+ entityColumn(id: String!): EntityColumn!
3898
+
3899
+ """To fetch multiple EntityColumns"""
3900
+ entityColumns(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EntityColumnList!
3901
+
3902
+ """To fetch a EntityMetadata"""
3903
+ entityMetadata(name: String!): EntityMetadata!
3904
+
3905
+ """To fetch a Favorite"""
3906
+ favorite(id: String!): Favorite!
3907
+
3908
+ """To fetch multiple BoardFavorites"""
3909
+ favoriteBoards(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardFavoriteList!
3910
+
3911
+ """To fetch multiple Favorites"""
3912
+ favorites(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): FavoriteList!
3913
+
3914
+ """To fetch the state of a connection"""
3915
+ fetchConnectionState(name: String!): ConnectionState!
3916
+
3917
+ """To fetch a Font"""
3918
+ font(id: String!): Font!
3919
+
3920
+ """To fetch multiple Fonts"""
3921
+ fonts(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): FontList!
3922
+ grantedRoles: [GrantedRole!]!
3923
+ grantingRoles(customerId: String!): [GrantedRole!]!
3924
+
3925
+ """To fetch a Group"""
3926
+ group(id: String!): Group
3927
+
3928
+ """To fetch multiple Groups"""
3929
+ groups(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): GroupList!
3930
+
3931
+ """To query whether I have the given permission"""
3932
+ hasPrivilege(category: String!, privilege: String!): Boolean!
3933
+ i18nCompletion(input: i18nCompletionInput!): i18nCompletionOutput!
3934
+ imageCompletion(input: ImageCompletionInput!): ImageCompletionOutput!
3935
+
3936
+ """프로젝트의 검측상태 별 카운트"""
3937
+ inspectionSummary(projectId: String!): InspectionSummary!
3938
+
3939
+ """To fetch integration Analyses"""
3940
+ integrationAnalysis: Object!
3941
+ invitation(email: EmailAddress!, reference: String!, type: String!): Invitation!
3942
+ invitations(reference: String!, type: String!): InvitationList!
3943
+
3944
+ """To fetch a LiteMenu"""
3945
+ liteMenu(id: String!): LiteMenu!
3946
+
3947
+ """To fetch multiple LiteMenus"""
3948
+ liteMenus(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): LiteMenuList!
3949
+
3950
+ """To fetch multiple LoginHistories"""
3951
+ loginHistories(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): LoginHistoryList!
3952
+
3953
+ """To fetch a Menu"""
3954
+ menu(id: String!): Menu!
3955
+
3956
+ """To fetch a MenuButton"""
3957
+ menuButton(id: String!): MenuButton!
3958
+
3959
+ """To fetch multiple MenuButtons"""
3960
+ menuButtons(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuButtonList!
3961
+
3962
+ """To fetch a Menu by routing"""
3963
+ menuByRouting(routing: String!): Menu!
3964
+
3965
+ """To fetch a MenuColumn"""
3966
+ menuColumn(id: String!): MenuColumn!
3967
+
3968
+ """To fetch multiple MenuColumns"""
3969
+ menuColumns(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuColumnList!
3970
+
3971
+ """To fetch a MenuDetail"""
3972
+ menuDetail(id: String!): MenuDetail!
3973
+
3974
+ """To fetch a MenuDetailButton"""
3975
+ menuDetailButton(id: String!): MenuDetailButton!
3976
+
3977
+ """To fetch multiple MenuDetailButtons"""
3978
+ menuDetailButtons(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuDetailButtonList!
3979
+
3980
+ """To fetch a MenuDetailColumn"""
3981
+ menuDetailColumn(id: String!): MenuDetailColumn!
3982
+
3983
+ """To fetch multiple MenuDetailColumns"""
3984
+ menuDetailColumns(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuDetailColumnList!
3985
+
3986
+ """To fetch multiple MenuDetails"""
3987
+ menuDetails(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuDetailList!
3988
+
3989
+ """To fetch multiple Menus"""
3990
+ menus(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuList!
3991
+
3992
+ """To fetch approval lines only for to the user"""
3993
+ myApprovalLines(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
3994
+
3995
+ """To fetch current user's Favorites"""
3996
+ myFavorites: [Favorite!]!
3997
+
3998
+ """To fetch my own LiteMenus"""
3999
+ myLiteMenus(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): LiteMenuList!
4000
+ myLoginHistories(limit: Float!): [LoginHistory!]!
4001
+
4002
+ """To fetch my own Menus"""
4003
+ myMenus(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuList!
4004
+
4005
+ """To fetch my notifications"""
4006
+ myNotifications(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationList!
4007
+
4008
+ """To fetch a User's own PagePreference"""
4009
+ myPageAllPreferences(page: String!): [PagePreference!]
4010
+
4011
+ """To fetch a User's own PagePreference"""
4012
+ myPagePreference(element: String!, page: String!): PagePreference
4013
+
4014
+ """To fetch multiple PagePreferences"""
4015
+ myPagePreferences(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PagePreferenceList!
4016
+
4017
+ """To fetch roles of current user"""
4018
+ myRoles: [Role!]!
4019
+
4020
+ """To fetch a User's own UserPreference"""
4021
+ myUserPreference(element: String!, key: String!): UserPreference
4022
+
4023
+ """To fetch multiple UserPreferences"""
4024
+ myUserPreferences(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): UserPreferenceList!
4025
+
4026
+ """To fetch a Notification"""
4027
+ notification(id: String!): Notification
4028
+
4029
+ """To fetch a NotificationRule"""
4030
+ notificationRule(id: String!): NotificationRule
4031
+
4032
+ """To fetch multiple NotificationRules"""
4033
+ notificationRules(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationRuleList!
4034
+
4035
+ """To fetch multiple Notificationes"""
4036
+ notificationes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationList!
4037
+
4038
+ """To fetch a Oauth2Client"""
4039
+ oauth2Client(id: String!): Oauth2Client
4040
+
4041
+ """To fetch multiple Oauth2Clients"""
4042
+ oauth2Clients(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): Oauth2ClientList!
4043
+
4044
+ """To fetch a PagePreference"""
4045
+ pagePreference(id: String!): PagePreference
4046
+
4047
+ """To fetch specific domain's CommonCodes by given name"""
4048
+ partnerCommonCode(name: String!, partnerDomainId: String!): CommonCode!
4049
+
4050
+ """To fetch a PartnerSetting"""
4051
+ partnerSetting(name: String!, partnerDomainId: String!): PartnerSetting!
4052
+
4053
+ """To fetch multiple PartnerSettings"""
4054
+ partnerSettings(filters: [Filter!]!, pagination: Pagination!, partnerDomain: ObjectRef!, sortings: [Sorting!]!): PartnerSettingList!
4055
+ partners(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PartnerList!
4056
+
4057
+ """To fetch a PayloadLog"""
4058
+ payloadLog(id: String!): PayloadLog!
4059
+
4060
+ """To fetch multiple PayloadLogs"""
4061
+ payloadLogs(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PayloadLogList!
4062
+
4063
+ """To fetch a PlayGroup"""
4064
+ playGroup(id: String!): PlayGroup
4065
+
4066
+ """To fetch a PlayGroup by name"""
4067
+ playGroupByName(name: String!): PlayGroup
4068
+
4069
+ """To fetch multiple PlayGroups"""
4070
+ playGroups(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PlayGroupList!
4071
+
4072
+ """To fetch a UserPreference"""
4073
+ preference(id: String!): UserPreference
4074
+
4075
+ """To fetch a PrinterDevice"""
4076
+ printerDevice(id: String!): PrinterDevice!
4077
+
4078
+ """To fetch multiple PrinterDevices"""
4079
+ printerDevices(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PrinterDeviceList!
4080
+
4081
+ """To fetch multiple privileges"""
4082
+ privileges(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PrivilegeList!
4083
+
4084
+ """To fetch a Project"""
4085
+ project(id: String!): Project
4086
+
4087
+ """프로젝트 리스트"""
4088
+ projects(projectName: String!): ProjectList!
4089
+
4090
+ """To fetch a Resource"""
4091
+ resource(id: String!): Resource
4092
+
4093
+ """To fetch multiple Resources"""
4094
+ resources(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ResourceList!
4095
+
4096
+ """To fetch role"""
4097
+ role(name: String!): Role!
4098
+
4099
+ """To fetch Menus by role"""
4100
+ roleMenus(roleId: String!): MenuList!
4101
+
4102
+ """To fetch privileges of a role"""
4103
+ rolePrivileges(roleId: String!): [RolePrivilege!]!
4104
+
4105
+ """To fetch multiple users"""
4106
+ roles(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): RoleList!
4107
+
4108
+ """To fetch a scenario"""
4109
+ scenario(id: String!): Scenario!
4110
+
4111
+ """To fetch a scenario instance"""
4112
+ scenarioInstance(instanceName: String!): ScenarioInstance!
4113
+
4114
+ """To fetch multiple scenario instances"""
4115
+ scenarioInstances(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ScenarioInstanceList!
4116
+
4117
+ """To fetch multiple scenarios"""
4118
+ scenarios(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ScenarioList!
4119
+ searchCustomers(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
4120
+
4121
+ """To fetch domain"""
4122
+ secureIPList: Object
4123
+
4124
+ """To fetch a Setting"""
4125
+ setting(name: String!, partnerDomainId: String): Setting!
4126
+
4127
+ """To fetch multiple Settings"""
4128
+ settings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): SettingList!
4129
+
4130
+ """To fetch a StateRegister"""
4131
+ stateRegister(id: String!): StateRegister
4132
+
4133
+ """To fetch a StateRegister by name"""
4134
+ stateRegisterByName(name: String!): StateRegister
4135
+
4136
+ """To fetch multiple StateRegisters"""
4137
+ stateRegisters(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): StateRegisterList!
4138
+
4139
+ """To fetch a step"""
4140
+ step(name: String!): Step!
4141
+
4142
+ """To fetch multiple steps"""
4143
+ steps(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): StepList!
4144
+
4145
+ """To fetch a Task"""
4146
+ task(id: String!): Task
4147
+
4148
+ """To fetch a task-type"""
4149
+ taskType(name: String!): TaskType!
4150
+
4151
+ """To fetch multiple task-type"""
4152
+ taskTypes: TaskTypeList!
4153
+
4154
+ """To fetch the connector from a task-type"""
4155
+ taskTypesByConnection(connectionName: String!): TaskTypeList!
4156
+
4157
+ """To fetch multiple Tasks"""
4158
+ tasks(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): TaskList!
4159
+
4160
+ """To fetch multiple Terminologies"""
4161
+ terminologies(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): TerminologyList!
4162
+
4163
+ """To fetch a Terminology"""
4164
+ terminology(id: String!): Terminology!
4165
+
4166
+ """To fetch a Theme"""
4167
+ theme(id: String!): Theme
4168
+
4169
+ """To fetch multiple Themes"""
4170
+ themes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ThemeList!
4171
+
4172
+ """To fetch user"""
4173
+ user(email: EmailAddress!): User!
4174
+
4175
+ """To fetch Menus by role"""
4176
+ userMenus: [Menu!]!
4177
+
4178
+ """To fetch roles of a user"""
4179
+ userRoles(userId: String!): [UserRole!]!
4180
+
4181
+ """To fetch multiple users"""
4182
+ users(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): UserList!
4183
+ vendors: [Domain!]!
4184
+ }
4185
+
4186
+ type RecipientItem {
4187
+ recipient: OrgMemberTarget
4188
+ type: OrgMemberTargetType
4189
+ value: String
4190
+ }
4191
+
4192
+ """리소스 관리 (작업자)"""
4193
+ type Resource {
4194
+ createdAt: DateTimeISO
4195
+ creator: User
4196
+ deletedAt: DateTimeISO
4197
+ id: ID!
4198
+ name: String
4199
+ thumbnail: String!
4200
+ updatedAt: DateTimeISO
4201
+ updater: User
4202
+ }
4203
+
4204
+ type ResourceList {
4205
+ items: [Resource!]!
4206
+ total: Int!
4207
+ }
4208
+
4209
+ input ResourcePatch {
4210
+ active: Boolean
4211
+ cuFlag: String
4212
+ description: String
4213
+ id: ID
4214
+ name: String
4215
+ }
4216
+
4217
+ type Role {
4218
+ createdAt: DateTimeISO
4219
+ creator: User
4220
+ description: String
4221
+ domain: Domain!
4222
+ id: ID!
4223
+ name: String
4224
+ privileges: [Privilege!]
4225
+ updatedAt: DateTimeISO
4226
+ updater: User
4227
+ users: [User!]
4228
+ }
4229
+
4230
+ type RoleList {
4231
+ items: [Role!]
4232
+ total: Int
4233
+ }
4234
+
4235
+ input RolePatch {
4236
+ cuFlag: String
4237
+ description: String
4238
+ id: String
4239
+ name: String
4240
+ privileges: [ObjectRef!]
4241
+ users: [ObjectRef!]
4242
+ }
4243
+
4244
+ type RolePrivilege {
4245
+ assigned: Boolean
4246
+ category: String
4247
+ description: String
4248
+ id: String
4249
+ name: String
4250
+ }
4251
+
4252
+ type Scenario {
4253
+ """[will be deprecated] automatically be started when this server start"""
4254
+ active: Boolean
4255
+ connectionNames: [Connection!]!
4256
+ createdAt: DateTimeISO
4257
+ creator: User
4258
+ description: String
4259
+ domain: Domain!
4260
+ id: ID!
4261
+ instances: [ScenarioInstance!]
4262
+ name: String!
4263
+ privilege: PrivilegeObject
4264
+
4265
+ """accessible and executable system-wide"""
4266
+ public: Boolean
4267
+ publishTags: [Connection!]!
4268
+ schedule: String
4269
+ scheduleId: String
4270
+ state: String
4271
+ steps: [Step!]
4272
+ timezone: String
4273
+ ttl: Float
4274
+ type: String
4275
+ updatedAt: DateTimeISO
4276
+ updater: User
4277
+ }
4278
+
4279
+ type ScenarioInstance {
4280
+ data: Object
4281
+ domain: Domain
4282
+ instanceName: String
4283
+ message: String
4284
+ progress: ScenarioInstanceProgress
4285
+ result: Object
4286
+ root: ScenarioInstance
4287
+ scenarioName: String
4288
+ state: String
4289
+ timestamp: DateTimeISO
4290
+ user: User
4291
+ variables: Object
4292
+ }
4293
+
4294
+ type ScenarioInstanceList {
4295
+ items: [ScenarioInstance!]!
4296
+ total: Int!
4297
+ }
4298
+
4299
+ type ScenarioInstanceProgress {
4300
+ rate: Int!
4301
+ rounds: Int!
4302
+ step: Int!
4303
+ steps: Int!
4304
+ }
4305
+
4306
+ type ScenarioInstanceRunResult {
4307
+ data: Object
4308
+ instanceName: String
4309
+ message: String
4310
+ result: Object
4311
+ scenarioName: String
4312
+ state: String
4313
+ timestamp: DateTimeISO
4314
+ variables: Object
4315
+ }
4316
+
4317
+ type ScenarioInstanceState {
4318
+ data: Object
4319
+ domain: Domain
4320
+ instanceName: String
4321
+ message: String
4322
+ progress: ScenarioInstanceProgress
4323
+ scenarioName: String
4324
+ state: ScenarioInstanceStatus
4325
+ timestamp: DateTimeISO
4326
+ variables: Object
4327
+ }
4328
+
4329
+ """state enumeration of a scenario-instance"""
4330
+ enum ScenarioInstanceStatus {
4331
+ HALTED
4332
+ READY
4333
+ STARTED
4334
+ STOPPED
4335
+ UNLOADED
4336
+ }
4337
+
4338
+ type ScenarioList {
4339
+ items: [Scenario!]!
4340
+ total: Int!
4341
+ }
4342
+
4343
+ input ScenarioPatch {
4344
+ active: Boolean
4345
+ cuFlag: String
4346
+ description: String
4347
+ id: ID
4348
+ name: String
4349
+ privilege: PrivilegeInput
4350
+ schedule: String
4351
+ steps: [StepPatch!]
4352
+ timezone: String
4353
+ ttl: Float
4354
+ type: String
4355
+ }
4356
+
4357
+ type ScenarioQueueState {
4358
+ domain: Domain!
4359
+ queue: [PendingObject!]!
4360
+ }
4361
+
4362
+ """Entity for Setting"""
4363
+ type Setting {
4364
+ category: String!
4365
+ createdAt: DateTimeISO
4366
+ creator: User
4367
+ description: String
4368
+ domain: Domain!
4369
+ id: ID!
4370
+ name: String!
4371
+ updatedAt: DateTimeISO
4372
+ updater: User
4373
+ value: String
4374
+ }
4375
+
4376
+ type SettingList {
4377
+ items: [Setting!]!
4378
+ total: Int!
4379
+ }
4380
+
4381
+ input SettingPatch {
4382
+ category: String
4383
+ cuFlag: String
4384
+ description: String
4385
+ id: ID
4386
+ name: String
4387
+ value: String
4388
+ }
4389
+
4390
+ input Sorting {
4391
+ """
4392
+ Set to true if descending sort. Default is "false"
4393
+ """
4394
+ desc: Boolean
4395
+
4396
+ """Field name to sort by"""
4397
+ name: String!
4398
+ }
4399
+
4400
+ """Entity for StateRegister"""
4401
+ type StateRegister {
4402
+ createdAt: DateTimeISO
4403
+ creator: User
4404
+ description: String
4405
+ domain: Domain!
4406
+ id: ID!
4407
+ name: String
4408
+ refBy: String
4409
+ state: Object
4410
+ ttl: Int
4411
+ type: String
4412
+ updatedAt: DateTimeISO
4413
+ updater: User
4414
+ writer: User
4415
+ wroteAt: DateTimeISO
4416
+ }
4417
+
4418
+ type StateRegisterList {
4419
+ items: [StateRegister!]!
4420
+ total: Int!
4421
+ }
4422
+
4423
+ input StateRegisterPatch {
4424
+ cuFlag: String
4425
+ description: String
4426
+ id: ID
4427
+ name: String
4428
+ refBy: String
4429
+ state: Object
4430
+ ttl: Int
4431
+ type: String
4432
+ }
4433
+
4434
+ type Step {
4435
+ connection: String
4436
+ createdAt: DateTimeISO
4437
+ creator: User
4438
+ description: String
4439
+ domain: Domain
4440
+ id: ID!
4441
+ log: Boolean
4442
+ name: String!
4443
+ params: String
4444
+
4445
+ """
4446
+ A boolean attribute indicating the inclusion status of an element in the result
4447
+ """
4448
+ result: Boolean
4449
+ scenario: Scenario
4450
+ sequence: Float
4451
+ skip: Boolean
4452
+ task: String
4453
+ updatedAt: DateTimeISO
4454
+ updater: User
4455
+ }
4456
+
4457
+ type StepList {
4458
+ items: [Step!]!
4459
+ total: Int!
4460
+ }
4461
+
4462
+ input StepPatch {
4463
+ connection: String
4464
+ cuFlag: String
4465
+ description: String
4466
+ id: ID
4467
+ log: Boolean
4468
+ name: String
4469
+ params: String
4470
+ result: Boolean
4471
+ sequence: Int
4472
+ skip: Boolean
4473
+ task: String
4474
+ }
4475
+
4476
+ type Subscription {
4477
+ board(id: String!): Board!
4478
+ connectionLog(level: String): Log!
4479
+ connectionState(name: String): ConnectionState!
4480
+ data(tag: String!): Data!
4481
+ notification(subjects: [String!]): Notification!
4482
+ playGroup(id: String!): PlayGroup!
4483
+ scenarioInstanceLog(instanceName: String, level: String, scenarioName: String): Log!
4484
+ scenarioInstanceState(instanceName: String, scenarioName: String): ScenarioInstanceState!
4485
+ scenarioQueueState: ScenarioQueueState!
4486
+ }
4487
+
4488
+ """공정표 작업 정보"""
4489
+ type Task {
4490
+ checklists: Checklist!
4491
+ createdAt: DateTimeISO
4492
+ creator: User
4493
+ deletedAt: DateTimeISO
4494
+ endDate: DateTimeISO
4495
+ id: ID!
4496
+ name: String
4497
+ parentTaskId: String
4498
+ project: Project!
4499
+ startDate: DateTimeISO
4500
+ thumbnail: String!
4501
+ type: String
4502
+ updatedAt: DateTimeISO
4503
+ updater: User
4504
+ }
4505
+
4506
+ type TaskList {
4507
+ items: [Task!]!
4508
+ total: Int!
4509
+ }
4510
+
4511
+ input TaskPatch {
4512
+ active: Boolean
4513
+ cuFlag: String
4514
+ description: String
4515
+ id: ID
4516
+ name: String
4517
+ }
4518
+
4519
+ type TaskType {
4520
+ connectorFree: Boolean
4521
+ description: String
4522
+ help: String
4523
+ name: String!
4524
+ parameterSpec: [PropertySpec!]
4525
+ }
4526
+
4527
+ type TaskTypeList {
4528
+ items: [TaskType!]!
4529
+ total: Int!
4530
+ }
4531
+
4532
+ """Entity for Terminology"""
4533
+ type Terminology {
4534
+ category: String!
4535
+ createdAt: DateTimeISO
4536
+ creator: User
4537
+ description: String
4538
+ display: String!
4539
+ domain: Domain!
4540
+ id: ID!
4541
+ locale: String!
4542
+ name: String!
4543
+ updatedAt: DateTimeISO
4544
+ updater: User
4545
+ }
4546
+
4547
+ type TerminologyList {
4548
+ items: [Terminology!]!
4549
+ total: Int!
4550
+ }
4551
+
4552
+ input TerminologyPatch {
4553
+ category: String
4554
+ cuFlag: String
4555
+ description: String
4556
+ display: String
4557
+ id: ID
4558
+ locale: String
4559
+ name: String
4560
+ }
4561
+
4562
+ """Entity for Theme"""
4563
+ type Theme {
4564
+ active: Boolean
4565
+ createdAt: DateTimeISO
4566
+ creator: User
4567
+ deletedAt: DateTimeISO
4568
+ description: String
4569
+ domain: Domain!
4570
+ id: ID!
4571
+ name: String
4572
+ type: String
4573
+ updatedAt: DateTimeISO
4574
+ updater: User
4575
+ value: Object
4576
+ }
4577
+
4578
+ type ThemeList {
4579
+ items: [Theme!]!
4580
+ total: Int!
4581
+ }
4582
+
4583
+ input ThemePatch {
4584
+ active: Boolean
4585
+ cuFlag: String
4586
+ description: String
4587
+ id: ID
4588
+ name: String
4589
+ type: String
4590
+ value: Object
4591
+ }
4592
+
4593
+ """The `Upload` scalar type represents a file upload."""
4594
+ scalar Upload
4595
+
4596
+ type UploadURL {
4597
+ fields: Any!
4598
+ url: String!
4599
+ }
4600
+
4601
+ type User {
4602
+ createdAt: DateTimeISO
4603
+ creator: User
4604
+ description: String
4605
+ domains: [Domain!]!
4606
+ email: EmailAddress!
4607
+ id: ID!
4608
+ locale: String
4609
+ name: String
4610
+ owner: Boolean
4611
+ reference: String
4612
+ roles: [Role!]!
4613
+ ssoId: String
4614
+ status: String!
4615
+ updatedAt: DateTimeISO
4616
+ updater: User
4617
+ userType: String
4618
+ usersAuthProviders: [UsersAuthProviders!]
4619
+ }
4620
+
4621
+ type UserList {
4622
+ items: [User!]
4623
+ total: Int
4624
+ }
4625
+
4626
+ input UserPatch {
4627
+ cuFlag: String
4628
+ description: String
4629
+ domains: [ObjectRef!]
4630
+ email: EmailAddress
4631
+ id: ID
4632
+ name: String
4633
+ password: String
4634
+ roles: [ObjectRef!]
4635
+ status: String
4636
+ userType: String
4637
+ }
4638
+
4639
+ """Entity for UserPreference"""
4640
+ type UserPreference {
4641
+ createdAt: DateTimeISO
4642
+ creator: User
4643
+ domain: Domain
4644
+ id: ID!
4645
+ key: String
4646
+ preference: Object
4647
+ updatedAt: DateTimeISO
4648
+ updater: User
4649
+ user: User!
4650
+ }
4651
+
4652
+ type UserPreferenceList {
4653
+ items: [UserPreference!]!
4654
+ total: Int!
4655
+ }
4656
+
4657
+ input UserPreferencePatch {
4658
+ cuFlag: String
4659
+ id: ID
4660
+ key: String!
4661
+ preference: Object!
4662
+ user: ObjectRef!
4663
+ }
4664
+
4665
+ type UserRole {
4666
+ assigned: Boolean
4667
+ description: String
4668
+ id: String
4669
+ name: String
4670
+ }
4671
+
4672
+ """Entity for UsersAuthProviders"""
4673
+ type UsersAuthProviders {
4674
+ authProvider: AuthProvider
4675
+ createdAt: DateTimeISO
4676
+ domain: Domain!
4677
+ id: ID!
4678
+ ssoId: String
4679
+ updatedAt: DateTimeISO
4680
+ user: User
4681
+ }
4682
+
4683
+ input i18nCompletionInput {
4684
+ json: String!
4685
+ }
4686
+
4687
+ type i18nCompletionOutput {
4688
+ message: String
4689
+ }