@dssp/dcsp 0.0.21 → 0.0.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/_index.html +2 -2
- package/assets/manifest.json +1 -1
- package/dist-client/icons/menu-icons.js +5 -19
- package/dist-client/icons/menu-icons.js.map +1 -1
- package/dist-client/themes/dark.css +43 -43
- package/dist-client/themes/light.css +39 -39
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-client/viewparts/menu-tools.js +11 -11
- package/dist-client/viewparts/menu-tools.js.map +1 -1
- package/installer/docker-compose.yml +3 -3
- package/installer/install.sh +7 -7
- package/installer/migrate.sh +1 -1
- package/installer/upgrade.sh +1 -1
- package/package.json +10 -5
- package/schema.graphql +1651 -124
- package/views/auth-page.html +1 -2
- package/views/public/home.html +2 -2
package/schema.graphql
CHANGED
|
@@ -17,6 +17,46 @@ type AccessToken {
|
|
|
17
17
|
refreshToken: String!
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
+
"""Entity for ActionPlan"""
|
|
21
|
+
type ActionPlan {
|
|
22
|
+
active: Boolean
|
|
23
|
+
content: String
|
|
24
|
+
createdAt: DateTimeISO
|
|
25
|
+
creator: User
|
|
26
|
+
deletedAt: DateTimeISO
|
|
27
|
+
description: String
|
|
28
|
+
domain: Domain
|
|
29
|
+
id: ID!
|
|
30
|
+
issue: Issue!
|
|
31
|
+
name: String
|
|
32
|
+
params: String
|
|
33
|
+
state: String
|
|
34
|
+
thumbnail: String
|
|
35
|
+
updatedAt: DateTimeISO
|
|
36
|
+
updater: User
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
type ActionPlanList {
|
|
40
|
+
items: [ActionPlan!]!
|
|
41
|
+
total: Int!
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
input ActionPlanPatch {
|
|
45
|
+
active: Boolean
|
|
46
|
+
cuFlag: String
|
|
47
|
+
description: String
|
|
48
|
+
id: ID
|
|
49
|
+
name: String
|
|
50
|
+
state: ActionPlanStatus
|
|
51
|
+
thumbnail: Upload
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
"""state enumeration of a actionPlan"""
|
|
55
|
+
enum ActionPlanStatus {
|
|
56
|
+
STATUS_A
|
|
57
|
+
STATUS_B
|
|
58
|
+
}
|
|
59
|
+
|
|
20
60
|
"""Any Scalar type (String, Boolean, Int, Float, Object, List)"""
|
|
21
61
|
scalar Any
|
|
22
62
|
|
|
@@ -29,7 +69,7 @@ type AppBinding {
|
|
|
29
69
|
email: EmailAddress!
|
|
30
70
|
id: ID!
|
|
31
71
|
locale: String
|
|
32
|
-
name: String
|
|
72
|
+
name: String
|
|
33
73
|
owner: Boolean
|
|
34
74
|
reference: String
|
|
35
75
|
refreshToken: String
|
|
@@ -133,7 +173,7 @@ type ApprovalLine {
|
|
|
133
173
|
createdAt: DateTimeISO
|
|
134
174
|
creator: User
|
|
135
175
|
description: String
|
|
136
|
-
domain: Domain
|
|
176
|
+
domain: Domain!
|
|
137
177
|
id: ID!
|
|
138
178
|
model: [ApprovalLineItem!]
|
|
139
179
|
name: String
|
|
@@ -201,6 +241,7 @@ type Attachment {
|
|
|
201
241
|
refBy: String
|
|
202
242
|
refType: String
|
|
203
243
|
size: String!
|
|
244
|
+
tags: Object
|
|
204
245
|
updatedAt: DateTimeISO!
|
|
205
246
|
updater: User
|
|
206
247
|
}
|
|
@@ -219,6 +260,7 @@ input AttachmentPatch {
|
|
|
219
260
|
name: String
|
|
220
261
|
refBy: String
|
|
221
262
|
refType: String
|
|
263
|
+
tags: Object
|
|
222
264
|
}
|
|
223
265
|
|
|
224
266
|
"""Entity for AttributeSet"""
|
|
@@ -283,11 +325,10 @@ type AuthProvider {
|
|
|
283
325
|
clientSecret: String
|
|
284
326
|
createdAt: DateTimeISO
|
|
285
327
|
creator: User
|
|
286
|
-
domain: Domain
|
|
328
|
+
domain: Domain!
|
|
287
329
|
id: ID!
|
|
288
330
|
params: Object
|
|
289
331
|
privateKey: String
|
|
290
|
-
state: String
|
|
291
332
|
tenantId: String
|
|
292
333
|
type: String
|
|
293
334
|
updatedAt: DateTimeISO
|
|
@@ -305,6 +346,7 @@ type AuthProviderParameterSpec {
|
|
|
305
346
|
name: String!
|
|
306
347
|
placeholder: String
|
|
307
348
|
property: Object
|
|
349
|
+
styles: Object
|
|
308
350
|
type: String!
|
|
309
351
|
}
|
|
310
352
|
|
|
@@ -418,7 +460,7 @@ type BoardTemplate {
|
|
|
418
460
|
createdAt: DateTimeISO
|
|
419
461
|
creator: User
|
|
420
462
|
description: String
|
|
421
|
-
domain: Domain
|
|
463
|
+
domain: Domain!
|
|
422
464
|
id: ID!
|
|
423
465
|
mine: Boolean!
|
|
424
466
|
model: String
|
|
@@ -445,6 +487,170 @@ input BoardTemplatePatch {
|
|
|
445
487
|
visibility: String
|
|
446
488
|
}
|
|
447
489
|
|
|
490
|
+
"""동 정보"""
|
|
491
|
+
type Building {
|
|
492
|
+
buildingComplex: BuildingComplex
|
|
493
|
+
buildingLevels: [BuildingLevel!]
|
|
494
|
+
createdAt: DateTimeISO
|
|
495
|
+
creator: User
|
|
496
|
+
deletedAt: DateTimeISO
|
|
497
|
+
drawing: Attachment
|
|
498
|
+
floorCount: Float
|
|
499
|
+
id: ID!
|
|
500
|
+
name: String
|
|
501
|
+
updatedAt: DateTimeISO
|
|
502
|
+
updater: User
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
"""단지 정보"""
|
|
506
|
+
type BuildingComplex {
|
|
507
|
+
address: String
|
|
508
|
+
area: Float
|
|
509
|
+
buildingCount: Float
|
|
510
|
+
buildings: [Building!]
|
|
511
|
+
clientCompany: String
|
|
512
|
+
constructionCompany: String
|
|
513
|
+
constructionCost: Float
|
|
514
|
+
constructionType: String
|
|
515
|
+
createdAt: DateTimeISO
|
|
516
|
+
creator: User
|
|
517
|
+
deletedAt: DateTimeISO
|
|
518
|
+
designCompany: String
|
|
519
|
+
domain: Domain
|
|
520
|
+
drawing: Attachment
|
|
521
|
+
etc: String
|
|
522
|
+
householdCount: Float
|
|
523
|
+
id: ID!
|
|
524
|
+
latitude: Float
|
|
525
|
+
longitude: Float
|
|
526
|
+
notice: String
|
|
527
|
+
planXScale: Float
|
|
528
|
+
planYScale: Float
|
|
529
|
+
supervisoryCompany: String
|
|
530
|
+
updatedAt: DateTimeISO
|
|
531
|
+
updater: User
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
input BuildingComplexPatch {
|
|
535
|
+
address: String
|
|
536
|
+
area: Float
|
|
537
|
+
buildingCount: Float
|
|
538
|
+
buildings: [BuildingPatch!]
|
|
539
|
+
clientCompany: String
|
|
540
|
+
constructionCompany: String
|
|
541
|
+
constructionCost: Float
|
|
542
|
+
constructionType: String
|
|
543
|
+
designCompany: String
|
|
544
|
+
drawingUpload: Upload
|
|
545
|
+
etc: String
|
|
546
|
+
householdCount: Float
|
|
547
|
+
id: String
|
|
548
|
+
latitude: Float
|
|
549
|
+
longitude: Float
|
|
550
|
+
notice: String
|
|
551
|
+
planXScale: Float
|
|
552
|
+
planYScale: Float
|
|
553
|
+
supervisoryCompany: String
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
type BuildingInspection {
|
|
557
|
+
attatchments: [Attachment!]!
|
|
558
|
+
buildingInspectionSummary: BuildingInspectionSummary!
|
|
559
|
+
buildingLevel: BuildingLevel
|
|
560
|
+
checklist: Checklist
|
|
561
|
+
createdAt: DateTimeISO
|
|
562
|
+
creator: User
|
|
563
|
+
deletedAt: DateTimeISO
|
|
564
|
+
drawingMarker: String
|
|
565
|
+
id: ID!
|
|
566
|
+
requestDate: String
|
|
567
|
+
status: String
|
|
568
|
+
updatedAt: DateTimeISO
|
|
569
|
+
updater: User
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
type BuildingInspectionList {
|
|
573
|
+
items: [BuildingInspection!]!
|
|
574
|
+
total: Int!
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
type BuildingInspectionSummary {
|
|
578
|
+
"""검측 실패 수"""
|
|
579
|
+
fail: Int!
|
|
580
|
+
|
|
581
|
+
"""검측 통과 수"""
|
|
582
|
+
pass: Int!
|
|
583
|
+
|
|
584
|
+
"""검측 요청 수"""
|
|
585
|
+
request: Int!
|
|
586
|
+
|
|
587
|
+
"""요청일자"""
|
|
588
|
+
requestDate: String
|
|
589
|
+
|
|
590
|
+
"""검측 대기 수"""
|
|
591
|
+
wait: Int!
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
type BuildingInspectionSummaryOfLevel {
|
|
595
|
+
"""검측 실패 수"""
|
|
596
|
+
fail: Int!
|
|
597
|
+
|
|
598
|
+
"""검측 통과 수"""
|
|
599
|
+
pass: Int!
|
|
600
|
+
|
|
601
|
+
"""검측 요청 수"""
|
|
602
|
+
request: Int!
|
|
603
|
+
|
|
604
|
+
"""검측 대기 수"""
|
|
605
|
+
wait: Int!
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
input BuildingInspectionsOfBuildingLevel {
|
|
609
|
+
buildingLevelId: String!
|
|
610
|
+
limit: Float
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
input BuildingInspectionsOfProject {
|
|
614
|
+
limit: Float
|
|
615
|
+
projectId: String!
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
"""층 정보"""
|
|
619
|
+
type BuildingLevel {
|
|
620
|
+
building: Building!
|
|
621
|
+
createdAt: DateTimeISO
|
|
622
|
+
creator: User
|
|
623
|
+
deletedAt: DateTimeISO
|
|
624
|
+
elevationDrawing: Attachment
|
|
625
|
+
elevationDrawingThumbnail: String
|
|
626
|
+
floor: Float!
|
|
627
|
+
id: ID!
|
|
628
|
+
inspectionSummary: BuildingInspectionSummaryOfLevel!
|
|
629
|
+
mainDrawing: Attachment
|
|
630
|
+
mainDrawingImage: String
|
|
631
|
+
mainDrawingThumbnail: String
|
|
632
|
+
rebarDistributionDrawing: Attachment
|
|
633
|
+
rebarDistributionDrawingThumbnail: String
|
|
634
|
+
updatedAt: DateTimeISO
|
|
635
|
+
updater: User
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
input BuildingLevelPatch {
|
|
639
|
+
elevationDrawingUpload: Upload
|
|
640
|
+
floor: Float!
|
|
641
|
+
id: ID
|
|
642
|
+
mainDrawingUpload: Upload
|
|
643
|
+
rebarDistributionDrawingUpload: Upload
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
input BuildingPatch {
|
|
647
|
+
buildingLevels: [BuildingLevelPatch!]
|
|
648
|
+
drawingUpload: Upload
|
|
649
|
+
floorCount: Float
|
|
650
|
+
id: ID
|
|
651
|
+
name: String
|
|
652
|
+
}
|
|
653
|
+
|
|
448
654
|
input ChatCompletionInput {
|
|
449
655
|
content: String!
|
|
450
656
|
}
|
|
@@ -453,6 +659,174 @@ type ChatCompletionOutput {
|
|
|
453
659
|
message: String
|
|
454
660
|
}
|
|
455
661
|
|
|
662
|
+
type Checklist {
|
|
663
|
+
buildingInspection: BuildingInspection!
|
|
664
|
+
checklistItems: [ChecklistItem!]!
|
|
665
|
+
constructionDetailType: String
|
|
666
|
+
constructionInspectionDate: DateTimeISO
|
|
667
|
+
constructionType: String
|
|
668
|
+
createdAt: DateTimeISO
|
|
669
|
+
creator: User
|
|
670
|
+
deletedAt: DateTimeISO
|
|
671
|
+
documentNo: String
|
|
672
|
+
id: ID!
|
|
673
|
+
inspectionDrawingType: String
|
|
674
|
+
inspectionParts: [String!]
|
|
675
|
+
location: String
|
|
676
|
+
name: String
|
|
677
|
+
overallConstructorSignature: String
|
|
678
|
+
overallSupervisorySignature: String
|
|
679
|
+
supervisorInspectionDate: DateTimeISO
|
|
680
|
+
task: Task!
|
|
681
|
+
taskConstructorSignature: String
|
|
682
|
+
taskSupervisorySignature: String
|
|
683
|
+
updatedAt: DateTimeISO
|
|
684
|
+
updater: User
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
input ChecklistInputType {
|
|
688
|
+
constructionDetailType: String!
|
|
689
|
+
constructionType: String!
|
|
690
|
+
inspectionDrawingType: String!
|
|
691
|
+
inspectionParts: [String!]!
|
|
692
|
+
location: String!
|
|
693
|
+
name: String!
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
type ChecklistItem {
|
|
697
|
+
checklist: Checklist
|
|
698
|
+
comment: String
|
|
699
|
+
constructionConfirmStatus: String
|
|
700
|
+
createdAt: DateTimeISO
|
|
701
|
+
creator: User
|
|
702
|
+
deletedAt: DateTimeISO
|
|
703
|
+
detailType: String!
|
|
704
|
+
id: ID!
|
|
705
|
+
inspctionCriteria: String
|
|
706
|
+
mainType: String!
|
|
707
|
+
name: String
|
|
708
|
+
sequence: Int
|
|
709
|
+
supervisoryConfirmStatus: String
|
|
710
|
+
updatedAt: DateTimeISO
|
|
711
|
+
updater: User
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
input ChecklistItemInputType {
|
|
715
|
+
detailType: String!
|
|
716
|
+
inspctionCriteria: String
|
|
717
|
+
mainType: String!
|
|
718
|
+
name: String!
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
type ChecklistItemList {
|
|
722
|
+
items: [ChecklistItem!]!
|
|
723
|
+
total: Int!
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
input ChecklistItemSubmitInputType {
|
|
727
|
+
constructionConfirmStatus: String
|
|
728
|
+
id: String!
|
|
729
|
+
supervisoryConfirmStatus: String
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
type ChecklistList {
|
|
733
|
+
items: [Checklist!]!
|
|
734
|
+
total: Int!
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
input ChecklistPatch {
|
|
738
|
+
active: Boolean
|
|
739
|
+
cuFlag: String
|
|
740
|
+
description: String
|
|
741
|
+
id: ID
|
|
742
|
+
name: String
|
|
743
|
+
}
|
|
744
|
+
|
|
745
|
+
input ChecklistSubmitInputType {
|
|
746
|
+
id: String!
|
|
747
|
+
overallConstructorSignature: String
|
|
748
|
+
overallSupervisorySignature: String
|
|
749
|
+
taskConstructorSignature: String
|
|
750
|
+
taskSupervisorySignature: String
|
|
751
|
+
}
|
|
752
|
+
|
|
753
|
+
type ChecklistTemplate {
|
|
754
|
+
checklistTemplateItems: [ChecklistTemplateItem!]!
|
|
755
|
+
createdAt: DateTimeISO
|
|
756
|
+
creator: User
|
|
757
|
+
deletedAt: DateTimeISO
|
|
758
|
+
domain: Domain
|
|
759
|
+
id: ID!
|
|
760
|
+
name: String
|
|
761
|
+
updatedAt: DateTimeISO
|
|
762
|
+
updater: User
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
type ChecklistTemplateItem {
|
|
766
|
+
checklistTemplate: ChecklistTemplate
|
|
767
|
+
createdAt: DateTimeISO
|
|
768
|
+
creator: User
|
|
769
|
+
detailType: String!
|
|
770
|
+
detailTypeName: String!
|
|
771
|
+
id: ID!
|
|
772
|
+
inspctionCriteria: String
|
|
773
|
+
mainType: String!
|
|
774
|
+
name: String!
|
|
775
|
+
sequence: Int
|
|
776
|
+
updatedAt: DateTimeISO
|
|
777
|
+
updater: User
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
type ChecklistTemplateItemList {
|
|
781
|
+
items: [ChecklistTemplateItem!]!
|
|
782
|
+
total: Int!
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
input ChecklistTemplateItemPatch {
|
|
786
|
+
checklistTemplateId: String
|
|
787
|
+
cuFlag: String
|
|
788
|
+
detailType: String
|
|
789
|
+
id: ID
|
|
790
|
+
inspctionCriteria: String
|
|
791
|
+
mainType: String
|
|
792
|
+
name: String
|
|
793
|
+
sequence: Int
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
type ChecklistTemplateList {
|
|
797
|
+
items: [ChecklistTemplate!]!
|
|
798
|
+
total: Int!
|
|
799
|
+
}
|
|
800
|
+
|
|
801
|
+
input ChecklistTemplatePatch {
|
|
802
|
+
cuFlag: String
|
|
803
|
+
id: ID
|
|
804
|
+
name: String
|
|
805
|
+
}
|
|
806
|
+
|
|
807
|
+
type ChecklistType {
|
|
808
|
+
createdAt: DateTimeISO
|
|
809
|
+
creator: User
|
|
810
|
+
detailType: String!
|
|
811
|
+
domain: Domain
|
|
812
|
+
id: ID!
|
|
813
|
+
mainType: String!
|
|
814
|
+
updatedAt: DateTimeISO
|
|
815
|
+
updater: User
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
type ChecklistTypeList {
|
|
819
|
+
items: [ChecklistType!]!
|
|
820
|
+
total: Int!
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
input ChecklistTypePatch {
|
|
824
|
+
cuFlag: String
|
|
825
|
+
detailType: String
|
|
826
|
+
id: ID
|
|
827
|
+
mainType: String
|
|
828
|
+
}
|
|
829
|
+
|
|
456
830
|
input CodeDecipherInput {
|
|
457
831
|
code: String!
|
|
458
832
|
language: String
|
|
@@ -469,7 +843,7 @@ type CommonCode {
|
|
|
469
843
|
creator: User
|
|
470
844
|
description: String
|
|
471
845
|
details: [CommonCodeDetail!]!
|
|
472
|
-
domain: Domain
|
|
846
|
+
domain: Domain!
|
|
473
847
|
id: ID!
|
|
474
848
|
name: String!
|
|
475
849
|
updatedAt: DateTimeISO
|
|
@@ -482,7 +856,7 @@ type CommonCodeDetail {
|
|
|
482
856
|
createdAt: DateTimeISO
|
|
483
857
|
creator: User
|
|
484
858
|
description: String
|
|
485
|
-
domain: Domain
|
|
859
|
+
domain: Domain!
|
|
486
860
|
id: ID!
|
|
487
861
|
labels: Object
|
|
488
862
|
name: String!
|
|
@@ -555,7 +929,7 @@ input ConnectionPatch {
|
|
|
555
929
|
|
|
556
930
|
type ConnectionState {
|
|
557
931
|
description: String
|
|
558
|
-
domain: Domain
|
|
932
|
+
domain: Domain!
|
|
559
933
|
edge: Appliance
|
|
560
934
|
id: String
|
|
561
935
|
name: String
|
|
@@ -577,6 +951,56 @@ type ConnectorType {
|
|
|
577
951
|
taskPrefixes: [String!]
|
|
578
952
|
}
|
|
579
953
|
|
|
954
|
+
"""세부 공종 타입"""
|
|
955
|
+
type ConstructionDetailType {
|
|
956
|
+
constructionType: ConstructionType
|
|
957
|
+
createdAt: DateTimeISO
|
|
958
|
+
creator: User
|
|
959
|
+
id: ID!
|
|
960
|
+
name: String
|
|
961
|
+
sequence: Int
|
|
962
|
+
updatedAt: DateTimeISO
|
|
963
|
+
updater: User
|
|
964
|
+
}
|
|
965
|
+
|
|
966
|
+
type ConstructionDetailTypeList {
|
|
967
|
+
items: [ConstructionDetailType!]!
|
|
968
|
+
total: Int!
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
input ConstructionDetailTypePatch {
|
|
972
|
+
cuFlag: String
|
|
973
|
+
id: ID
|
|
974
|
+
name: String
|
|
975
|
+
sequence: Int
|
|
976
|
+
}
|
|
977
|
+
|
|
978
|
+
"""공종 타입"""
|
|
979
|
+
type ConstructionType {
|
|
980
|
+
constructionDetailTypes: [ConstructionDetailType!]
|
|
981
|
+
createdAt: DateTimeISO
|
|
982
|
+
creator: User
|
|
983
|
+
deletedAt: DateTimeISO
|
|
984
|
+
description: String
|
|
985
|
+
domain: Domain
|
|
986
|
+
id: ID!
|
|
987
|
+
name: String
|
|
988
|
+
updatedAt: DateTimeISO
|
|
989
|
+
updater: User
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
type ConstructionTypeList {
|
|
993
|
+
items: [ConstructionType!]!
|
|
994
|
+
total: Int!
|
|
995
|
+
}
|
|
996
|
+
|
|
997
|
+
input ConstructionTypePatch {
|
|
998
|
+
cuFlag: String
|
|
999
|
+
description: String
|
|
1000
|
+
id: ID
|
|
1001
|
+
name: String
|
|
1002
|
+
}
|
|
1003
|
+
|
|
580
1004
|
"""Entity for Contact"""
|
|
581
1005
|
type Contact {
|
|
582
1006
|
address: String
|
|
@@ -585,7 +1009,7 @@ type Contact {
|
|
|
585
1009
|
creator: User
|
|
586
1010
|
deletedAt: DateTimeISO
|
|
587
1011
|
department: String
|
|
588
|
-
domain: Domain
|
|
1012
|
+
domain: Domain!
|
|
589
1013
|
email: EmailAddress
|
|
590
1014
|
id: ID!
|
|
591
1015
|
items: [ContactItem!]
|
|
@@ -656,7 +1080,7 @@ type Department {
|
|
|
656
1080
|
creator: User
|
|
657
1081
|
deletedAt: DateTimeISO
|
|
658
1082
|
description: String
|
|
659
|
-
domain: Domain
|
|
1083
|
+
domain: Domain!
|
|
660
1084
|
extension: String
|
|
661
1085
|
id: ID!
|
|
662
1086
|
manager: Employee
|
|
@@ -686,6 +1110,14 @@ input DepartmentPatch {
|
|
|
686
1110
|
picture: Upload
|
|
687
1111
|
}
|
|
688
1112
|
|
|
1113
|
+
type DigestedResource {
|
|
1114
|
+
"""할당량"""
|
|
1115
|
+
allocated: Float
|
|
1116
|
+
|
|
1117
|
+
"""자원 유형"""
|
|
1118
|
+
type: String
|
|
1119
|
+
}
|
|
1120
|
+
|
|
689
1121
|
type Domain {
|
|
690
1122
|
attributes: Object
|
|
691
1123
|
brandImage: String
|
|
@@ -754,19 +1186,23 @@ scalar EmailAddress @specifiedBy(url: "https://html.spec.whatwg.org/multipage/in
|
|
|
754
1186
|
"""Entity for Employee"""
|
|
755
1187
|
type Employee {
|
|
756
1188
|
active: Boolean
|
|
757
|
-
address: String
|
|
1189
|
+
address: String
|
|
758
1190
|
alias: String
|
|
759
1191
|
approvalLines: [ApprovalLine!]!
|
|
1192
|
+
bankAccount: String
|
|
1193
|
+
bankName: String
|
|
760
1194
|
contact: Contact
|
|
761
1195
|
controlNo: String!
|
|
762
1196
|
createdAt: DateTimeISO
|
|
763
1197
|
creator: User
|
|
764
1198
|
deletedAt: DateTimeISO
|
|
765
1199
|
department: Department
|
|
766
|
-
domain: Domain
|
|
1200
|
+
domain: Domain!
|
|
767
1201
|
email: EmailAddress
|
|
1202
|
+
emergencyContact: String
|
|
1203
|
+
emergencyContactPhone: String
|
|
768
1204
|
extension: String
|
|
769
|
-
hiredOn:
|
|
1205
|
+
hiredOn: DateTimeISO
|
|
770
1206
|
id: ID!
|
|
771
1207
|
jobPosition: String
|
|
772
1208
|
jobResponsibility: String
|
|
@@ -776,7 +1212,7 @@ type Employee {
|
|
|
776
1212
|
phone: String
|
|
777
1213
|
photo: String
|
|
778
1214
|
profile: Profile
|
|
779
|
-
|
|
1215
|
+
retiredOn: DateTimeISO
|
|
780
1216
|
supervises: [Employee!]!
|
|
781
1217
|
supervisor: Employee
|
|
782
1218
|
type: String
|
|
@@ -794,17 +1230,22 @@ type EmployeeList {
|
|
|
794
1230
|
input EmployeePatch {
|
|
795
1231
|
active: Boolean
|
|
796
1232
|
alias: String
|
|
1233
|
+
bankAccount: String
|
|
1234
|
+
bankName: String
|
|
1235
|
+
contact: ObjectRefForContact
|
|
797
1236
|
controlNo: String
|
|
798
1237
|
cuFlag: String
|
|
799
|
-
department:
|
|
800
|
-
|
|
1238
|
+
department: ObjectRefForDepartment
|
|
1239
|
+
emergencyContact: String
|
|
1240
|
+
emergencyContactPhone: String
|
|
1241
|
+
hiredOn: DateTimeISO
|
|
801
1242
|
id: ID
|
|
802
1243
|
jobPosition: String
|
|
803
1244
|
jobResponsibility: String
|
|
804
1245
|
name: String
|
|
805
1246
|
note: String
|
|
806
1247
|
photo: Upload
|
|
807
|
-
|
|
1248
|
+
retiredOn: DateTimeISO
|
|
808
1249
|
supervisor: ObjectRefForEmployee
|
|
809
1250
|
type: EmployeeType
|
|
810
1251
|
user: ObjectRefForUser
|
|
@@ -829,7 +1270,7 @@ type Entity {
|
|
|
829
1270
|
dataProp: String
|
|
830
1271
|
delStrategy: String
|
|
831
1272
|
description: String
|
|
832
|
-
domain: Domain
|
|
1273
|
+
domain: Domain!
|
|
833
1274
|
extEntity: Boolean
|
|
834
1275
|
fixedColumns: Float
|
|
835
1276
|
id: ID!
|
|
@@ -854,7 +1295,7 @@ type EntityColumn {
|
|
|
854
1295
|
creator: User
|
|
855
1296
|
defVal: String
|
|
856
1297
|
description: String
|
|
857
|
-
domain: Domain
|
|
1298
|
+
domain: Domain!
|
|
858
1299
|
entity: Entity!
|
|
859
1300
|
formEditor: String
|
|
860
1301
|
formFormat: String
|
|
@@ -1027,7 +1468,7 @@ type Font {
|
|
|
1027
1468
|
active: Boolean!
|
|
1028
1469
|
createdAt: DateTimeISO
|
|
1029
1470
|
creator: User
|
|
1030
|
-
domain: Domain
|
|
1471
|
+
domain: Domain!
|
|
1031
1472
|
files: [Attachment!]
|
|
1032
1473
|
id: ID!
|
|
1033
1474
|
name: String!
|
|
@@ -1097,6 +1538,53 @@ enum InheritedValueType {
|
|
|
1097
1538
|
Only
|
|
1098
1539
|
}
|
|
1099
1540
|
|
|
1541
|
+
"""Entity for InspectionDrawingType"""
|
|
1542
|
+
type InspectionDrawingType {
|
|
1543
|
+
createdAt: DateTimeISO
|
|
1544
|
+
creator: User
|
|
1545
|
+
domain: Domain
|
|
1546
|
+
id: ID!
|
|
1547
|
+
inspectionParts: [InspectionPart!]
|
|
1548
|
+
name: String
|
|
1549
|
+
updatedAt: DateTimeISO
|
|
1550
|
+
updater: User
|
|
1551
|
+
}
|
|
1552
|
+
|
|
1553
|
+
type InspectionDrawingTypeList {
|
|
1554
|
+
items: [InspectionDrawingType!]!
|
|
1555
|
+
total: Int!
|
|
1556
|
+
}
|
|
1557
|
+
|
|
1558
|
+
input InspectionDrawingTypePatch {
|
|
1559
|
+
cuFlag: String
|
|
1560
|
+
id: ID
|
|
1561
|
+
name: String
|
|
1562
|
+
}
|
|
1563
|
+
|
|
1564
|
+
"""Entity for InspectionPart"""
|
|
1565
|
+
type InspectionPart {
|
|
1566
|
+
createdAt: DateTimeISO
|
|
1567
|
+
creator: User
|
|
1568
|
+
id: ID!
|
|
1569
|
+
inspectionDrawingType: InspectionDrawingType
|
|
1570
|
+
name: String
|
|
1571
|
+
sequence: Int
|
|
1572
|
+
updatedAt: DateTimeISO
|
|
1573
|
+
updater: User
|
|
1574
|
+
}
|
|
1575
|
+
|
|
1576
|
+
type InspectionPartList {
|
|
1577
|
+
items: [InspectionPart!]!
|
|
1578
|
+
total: Int!
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1581
|
+
input InspectionPartPatch {
|
|
1582
|
+
cuFlag: String
|
|
1583
|
+
id: ID
|
|
1584
|
+
name: String
|
|
1585
|
+
sequence: Int
|
|
1586
|
+
}
|
|
1587
|
+
|
|
1100
1588
|
type Invitation {
|
|
1101
1589
|
createdAt: DateTimeISO
|
|
1102
1590
|
creator: User
|
|
@@ -1114,6 +1602,45 @@ type InvitationList {
|
|
|
1114
1602
|
total: Int
|
|
1115
1603
|
}
|
|
1116
1604
|
|
|
1605
|
+
"""Entity for Issue"""
|
|
1606
|
+
type Issue {
|
|
1607
|
+
actionPlans: [ActionPlan!]!
|
|
1608
|
+
active: Boolean
|
|
1609
|
+
createdAt: DateTimeISO
|
|
1610
|
+
creator: User
|
|
1611
|
+
deletedAt: DateTimeISO
|
|
1612
|
+
description: String
|
|
1613
|
+
domain: Domain
|
|
1614
|
+
id: ID!
|
|
1615
|
+
name: String
|
|
1616
|
+
params: String
|
|
1617
|
+
state: String
|
|
1618
|
+
thumbnail: String
|
|
1619
|
+
updatedAt: DateTimeISO
|
|
1620
|
+
updater: User
|
|
1621
|
+
}
|
|
1622
|
+
|
|
1623
|
+
type IssueList {
|
|
1624
|
+
items: [Issue!]!
|
|
1625
|
+
total: Int!
|
|
1626
|
+
}
|
|
1627
|
+
|
|
1628
|
+
input IssuePatch {
|
|
1629
|
+
active: Boolean
|
|
1630
|
+
cuFlag: String
|
|
1631
|
+
description: String
|
|
1632
|
+
id: ID
|
|
1633
|
+
name: String
|
|
1634
|
+
state: IssueStatus
|
|
1635
|
+
thumbnail: Upload
|
|
1636
|
+
}
|
|
1637
|
+
|
|
1638
|
+
"""state enumeration of a issue"""
|
|
1639
|
+
enum IssueStatus {
|
|
1640
|
+
STATUS_A
|
|
1641
|
+
STATUS_B
|
|
1642
|
+
}
|
|
1643
|
+
|
|
1117
1644
|
"""
|
|
1118
1645
|
A field whose value is a JSON Web Token (JWT): https://jwt.io/introduction.
|
|
1119
1646
|
"""
|
|
@@ -1127,13 +1654,15 @@ type LiteMenu {
|
|
|
1127
1654
|
createdAt: DateTimeISO
|
|
1128
1655
|
creator: User
|
|
1129
1656
|
description: String
|
|
1130
|
-
domain: Domain
|
|
1657
|
+
domain: Domain!
|
|
1131
1658
|
icon: String
|
|
1132
1659
|
id: ID!
|
|
1660
|
+
label: String!
|
|
1661
|
+
labels: Object
|
|
1133
1662
|
name: String!
|
|
1134
1663
|
parent: String
|
|
1135
|
-
privilege: PrivilegeObject
|
|
1136
1664
|
rank: Int
|
|
1665
|
+
role: Role
|
|
1137
1666
|
type: String
|
|
1138
1667
|
updatedAt: DateTimeISO
|
|
1139
1668
|
updater: User
|
|
@@ -1150,10 +1679,11 @@ input LiteMenuPatch {
|
|
|
1150
1679
|
appName: String
|
|
1151
1680
|
description: String
|
|
1152
1681
|
icon: String
|
|
1682
|
+
labels: Object
|
|
1153
1683
|
name: String
|
|
1154
1684
|
parent: String
|
|
1155
|
-
privilege: PrivilegeInput
|
|
1156
1685
|
rank: Int
|
|
1686
|
+
role: ObjectRef
|
|
1157
1687
|
type: String
|
|
1158
1688
|
value: String
|
|
1159
1689
|
}
|
|
@@ -1185,18 +1715,43 @@ type LoginHistoryList {
|
|
|
1185
1715
|
total: Int!
|
|
1186
1716
|
}
|
|
1187
1717
|
|
|
1718
|
+
"""담당자 관리"""
|
|
1719
|
+
type Manager {
|
|
1720
|
+
id: ID!
|
|
1721
|
+
phone: String
|
|
1722
|
+
position: String
|
|
1723
|
+
user: User
|
|
1724
|
+
}
|
|
1725
|
+
|
|
1726
|
+
type ManagerOutput {
|
|
1727
|
+
id: ID
|
|
1728
|
+
name: String
|
|
1729
|
+
phone: String
|
|
1730
|
+
position: String
|
|
1731
|
+
updatedAt: String
|
|
1732
|
+
userId: ID!
|
|
1733
|
+
}
|
|
1734
|
+
|
|
1735
|
+
input ManagerPatch {
|
|
1736
|
+
id: ID
|
|
1737
|
+
name: String
|
|
1738
|
+
phone: String
|
|
1739
|
+
position: String
|
|
1740
|
+
userId: ID
|
|
1741
|
+
}
|
|
1742
|
+
|
|
1188
1743
|
"""Entity for Menu"""
|
|
1189
1744
|
type Menu {
|
|
1190
1745
|
buttons: [MenuButton!]!
|
|
1191
1746
|
category: String
|
|
1192
|
-
children: [Menu!]!
|
|
1747
|
+
children(permittedOnly: Boolean! = false): [Menu!]!
|
|
1193
1748
|
columns: [MenuColumn!]!
|
|
1194
1749
|
createdAt: DateTimeISO
|
|
1195
1750
|
creator: User
|
|
1196
1751
|
description: String
|
|
1197
1752
|
detailFormId: String
|
|
1198
1753
|
detailLayout: String
|
|
1199
|
-
domain: Domain
|
|
1754
|
+
domain: Domain!
|
|
1200
1755
|
fixedColumns: Float
|
|
1201
1756
|
gridSaveUrl: String
|
|
1202
1757
|
hiddenFlag: Boolean
|
|
@@ -1229,7 +1784,7 @@ type MenuButton {
|
|
|
1229
1784
|
auth: String
|
|
1230
1785
|
createdAt: DateTimeISO
|
|
1231
1786
|
creator: User
|
|
1232
|
-
domain: Domain
|
|
1787
|
+
domain: Domain!
|
|
1233
1788
|
icon: String
|
|
1234
1789
|
id: ID!
|
|
1235
1790
|
logic: String
|
|
@@ -1264,7 +1819,7 @@ type MenuColumn {
|
|
|
1264
1819
|
creator: User
|
|
1265
1820
|
defVal: String
|
|
1266
1821
|
description: String
|
|
1267
|
-
domain: Domain
|
|
1822
|
+
domain: Domain!
|
|
1268
1823
|
extField: Boolean
|
|
1269
1824
|
formEditor: String
|
|
1270
1825
|
formFormat: String
|
|
@@ -1353,7 +1908,7 @@ type MenuDetail {
|
|
|
1353
1908
|
creator: User
|
|
1354
1909
|
customView: String
|
|
1355
1910
|
dataProp: String
|
|
1356
|
-
domain: Domain
|
|
1911
|
+
domain: Domain!
|
|
1357
1912
|
entityId: String
|
|
1358
1913
|
id: ID!
|
|
1359
1914
|
masterField: String
|
|
@@ -1370,7 +1925,7 @@ type MenuDetail {
|
|
|
1370
1925
|
type MenuDetailButton {
|
|
1371
1926
|
createdAt: DateTimeISO
|
|
1372
1927
|
creator: User
|
|
1373
|
-
domain: Domain
|
|
1928
|
+
domain: Domain!
|
|
1374
1929
|
icon: String
|
|
1375
1930
|
id: ID!
|
|
1376
1931
|
logic: String
|
|
@@ -1404,7 +1959,7 @@ type MenuDetailColumn {
|
|
|
1404
1959
|
creator: User
|
|
1405
1960
|
defVal: String
|
|
1406
1961
|
description: String
|
|
1407
|
-
domain: Domain
|
|
1962
|
+
domain: Domain!
|
|
1408
1963
|
extField: Boolean
|
|
1409
1964
|
formEditor: String
|
|
1410
1965
|
formFormat: String
|
|
@@ -1546,10 +2101,15 @@ type Mutation {
|
|
|
1546
2101
|
"""To activate user"""
|
|
1547
2102
|
activateUser(userId: String!): Boolean!
|
|
1548
2103
|
|
|
1549
|
-
"""
|
|
2104
|
+
"""
|
|
2105
|
+
Attaches an existing contact to an employee. The contact is identified by its ID and the employee is identified by their ID.
|
|
2106
|
+
"""
|
|
1550
2107
|
attachContact(contactId: String!, id: String!): Employee!
|
|
1551
2108
|
cancelInvitation(email: EmailAddress!, reference: String!, type: String!): Boolean!
|
|
1552
2109
|
|
|
2110
|
+
"""To clear translations cache"""
|
|
2111
|
+
clearTranslationsCache: Boolean!
|
|
2112
|
+
|
|
1553
2113
|
"""To clone a Board from existing Board"""
|
|
1554
2114
|
cloneBoard(id: String!, patch: BoardPatch!, targetGroupId: String, targetSubdomain: String!): Board!
|
|
1555
2115
|
|
|
@@ -1559,6 +2119,9 @@ type Mutation {
|
|
|
1559
2119
|
"""To import multiple scenarios"""
|
|
1560
2120
|
copyScenarios(ids: [String!]!): [Scenario!]!
|
|
1561
2121
|
|
|
2122
|
+
"""To create new ActionPlan"""
|
|
2123
|
+
createActionPlan(actionPlan: NewActionPlan!): ActionPlan!
|
|
2124
|
+
|
|
1562
2125
|
"""To create new appliance"""
|
|
1563
2126
|
createAppliance(appliance: NewAppliance!): Appliance!
|
|
1564
2127
|
|
|
@@ -1582,6 +2145,12 @@ type Mutation {
|
|
|
1582
2145
|
"""To create new BoardTemplate"""
|
|
1583
2146
|
createBoardTemplate(boardTemplate: NewBoardTemplate!): BoardTemplate!
|
|
1584
2147
|
|
|
2148
|
+
"""To create Building Inspection information"""
|
|
2149
|
+
createBuildingInspection(patch: NewBuildingInspection!): BuildingInspection!
|
|
2150
|
+
|
|
2151
|
+
"""To create new Checklist"""
|
|
2152
|
+
createChecklist(checklist: NewChecklist!): Checklist!
|
|
2153
|
+
|
|
1585
2154
|
"""To create new CommonCode"""
|
|
1586
2155
|
createCommonCode(commonCode: NewCommonCode!): CommonCode!
|
|
1587
2156
|
|
|
@@ -1600,7 +2169,9 @@ type Mutation {
|
|
|
1600
2169
|
"""To create domain (Only superuser is granted this privilege.)"""
|
|
1601
2170
|
createDomain(domainInput: DomainPatch!): Domain!
|
|
1602
2171
|
|
|
1603
|
-
"""
|
|
2172
|
+
"""
|
|
2173
|
+
Creates a new employee record with the provided details. Optionally associates the employee with a supervisor, department, and system user. If a photo is provided, it will be attached to the employee record.
|
|
2174
|
+
"""
|
|
1604
2175
|
createEmployee(employee: NewEmployee!): Employee!
|
|
1605
2176
|
|
|
1606
2177
|
"""To create new Entity"""
|
|
@@ -1618,6 +2189,9 @@ type Mutation {
|
|
|
1618
2189
|
"""To create new Group"""
|
|
1619
2190
|
createGroup(group: NewGroup!): Group
|
|
1620
2191
|
|
|
2192
|
+
"""To create new Issue"""
|
|
2193
|
+
createIssue(issue: NewIssue!): Issue!
|
|
2194
|
+
|
|
1621
2195
|
"""To create new LiteMenu"""
|
|
1622
2196
|
createLiteMenu(liteMenu: NewLiteMenu!): LiteMenu!
|
|
1623
2197
|
|
|
@@ -1642,6 +2216,9 @@ type Mutation {
|
|
|
1642
2216
|
"""To create new ApprovalLine for current user"""
|
|
1643
2217
|
createMyApprovalLine(approvalLine: NewApprovalLine!): ApprovalLine!
|
|
1644
2218
|
|
|
2219
|
+
"""To create my new PagePreference"""
|
|
2220
|
+
createMyPagePreference(pagePreference: NewPagePreference!): PagePreference!
|
|
2221
|
+
|
|
1645
2222
|
"""To create new Notification"""
|
|
1646
2223
|
createNotification(notification: NewNotification!): Notification!
|
|
1647
2224
|
|
|
@@ -1663,9 +2240,15 @@ type Mutation {
|
|
|
1663
2240
|
"""To create new privilege"""
|
|
1664
2241
|
createPrivilege(privilege: NewPrivilege!): Privilege!
|
|
1665
2242
|
|
|
1666
|
-
"""
|
|
2243
|
+
"""프로젝트 생성"""
|
|
1667
2244
|
createProject(project: NewProject!): Project!
|
|
1668
2245
|
|
|
2246
|
+
"""To create new ProjectReport"""
|
|
2247
|
+
createProjectReport(projectReport: NewProjectReport!): ProjectReport!
|
|
2248
|
+
|
|
2249
|
+
"""To create new Resource"""
|
|
2250
|
+
createResource(resource: NewResource!): Resource!
|
|
2251
|
+
|
|
1669
2252
|
"""To create new user"""
|
|
1670
2253
|
createRole(role: NewRole!): User!
|
|
1671
2254
|
|
|
@@ -1678,9 +2261,15 @@ type Mutation {
|
|
|
1678
2261
|
"""To create new StateRegister"""
|
|
1679
2262
|
createStateRegister(stateRegister: NewStateRegister!): StateRegister!
|
|
1680
2263
|
|
|
2264
|
+
"""To create new Supervisor"""
|
|
2265
|
+
createSupervisor(supervisor: NewSupervisor!): Supervisor!
|
|
2266
|
+
|
|
1681
2267
|
"""To create new Task"""
|
|
1682
2268
|
createTask(task: NewTask!): Task!
|
|
1683
2269
|
|
|
2270
|
+
"""To create new TaskResource"""
|
|
2271
|
+
createTaskResource(taskResource: NewTaskResource!): TaskResource!
|
|
2272
|
+
|
|
1684
2273
|
"""To create new Terminology"""
|
|
1685
2274
|
createTerminology(terminology: NewTerminology!): Terminology!
|
|
1686
2275
|
|
|
@@ -1689,6 +2278,15 @@ type Mutation {
|
|
|
1689
2278
|
|
|
1690
2279
|
"""To create new user"""
|
|
1691
2280
|
createUser(user: NewUser!): User!
|
|
2281
|
+
|
|
2282
|
+
"""To create new UserPreference"""
|
|
2283
|
+
createUserPreference(preference: NewUserPreference!): UserPreference!
|
|
2284
|
+
|
|
2285
|
+
"""To delete ActionPlan"""
|
|
2286
|
+
deleteActionPlan(id: String!): Boolean!
|
|
2287
|
+
|
|
2288
|
+
"""To delete multiple ActionPlans"""
|
|
2289
|
+
deleteActionPlans(ids: [String!]!): Boolean!
|
|
1692
2290
|
deleteAppBinding(id: String!): Boolean!
|
|
1693
2291
|
|
|
1694
2292
|
"""To delete appliance"""
|
|
@@ -1703,7 +2301,7 @@ type Mutation {
|
|
|
1703
2301
|
"""To delete multiple ApprovalLines"""
|
|
1704
2302
|
deleteApprovalLines(ids: [String!]!): Boolean!
|
|
1705
2303
|
deleteAttachment(id: String!): Boolean!
|
|
1706
|
-
deleteAttachmentsByRef(refBys: [String!]
|
|
2304
|
+
deleteAttachmentsByRef(refBys: [String!]!, refType: String): Boolean!
|
|
1707
2305
|
|
|
1708
2306
|
"""To delete AttributeSet"""
|
|
1709
2307
|
deleteAttributeSet(id: String!): Boolean!
|
|
@@ -1721,6 +2319,36 @@ type Mutation {
|
|
|
1721
2319
|
"""To delete BoardTemplate"""
|
|
1722
2320
|
deleteBoardTemplate(id: String!): Boolean!
|
|
1723
2321
|
|
|
2322
|
+
"""To delete Building"""
|
|
2323
|
+
deleteBuilding(id: String!): Boolean!
|
|
2324
|
+
|
|
2325
|
+
"""To delete BuildingComplex"""
|
|
2326
|
+
deleteBuildingComplex(id: String!): Boolean!
|
|
2327
|
+
|
|
2328
|
+
"""To delete multiple BuildingComplexes"""
|
|
2329
|
+
deleteBuildingComplexes(ids: [String!]!): Boolean!
|
|
2330
|
+
|
|
2331
|
+
"""To delete multiple Checklists"""
|
|
2332
|
+
deleteBuildingInspections(ids: [String!]!): Boolean!
|
|
2333
|
+
|
|
2334
|
+
"""To delete multiple Buildings"""
|
|
2335
|
+
deleteBuildings(ids: [String!]!): Boolean!
|
|
2336
|
+
|
|
2337
|
+
"""To delete ChecklistTemplateItem"""
|
|
2338
|
+
deleteChecklistTemplateItem(id: String!): Boolean!
|
|
2339
|
+
|
|
2340
|
+
"""To delete multiple ChecklistTemplateItems"""
|
|
2341
|
+
deleteChecklistTemplateItems(ids: [String!]!): Boolean!
|
|
2342
|
+
|
|
2343
|
+
"""To delete multiple ChecklistTemplates"""
|
|
2344
|
+
deleteChecklistTemplates(ids: [String!]!): Boolean!
|
|
2345
|
+
|
|
2346
|
+
"""To delete multiple ChecklistTypes"""
|
|
2347
|
+
deleteChecklistTypes(ids: [String!]!): Boolean!
|
|
2348
|
+
|
|
2349
|
+
"""To delete multiple Checklists"""
|
|
2350
|
+
deleteChecklists(ids: [String!]!): Boolean!
|
|
2351
|
+
|
|
1724
2352
|
"""To delete CommonCode"""
|
|
1725
2353
|
deleteCommonCode(id: String!): Boolean!
|
|
1726
2354
|
|
|
@@ -1739,6 +2367,12 @@ type Mutation {
|
|
|
1739
2367
|
"""To delete multiple connections"""
|
|
1740
2368
|
deleteConnections(names: [String!]!): Boolean!
|
|
1741
2369
|
|
|
2370
|
+
"""To delete multiple ConstructionDetailTypes"""
|
|
2371
|
+
deleteConstructionDetailTypes(ids: [String!]!): Boolean!
|
|
2372
|
+
|
|
2373
|
+
"""To delete multiple ConstructionTypes"""
|
|
2374
|
+
deleteConstructionTypes(ids: [String!]!): Boolean!
|
|
2375
|
+
|
|
1742
2376
|
"""To delete Contact"""
|
|
1743
2377
|
deleteContact(id: String!): Boolean!
|
|
1744
2378
|
|
|
@@ -1760,10 +2394,14 @@ type Mutation {
|
|
|
1760
2394
|
"""To delete multiple domains (Only superuser is granted this privilege.)"""
|
|
1761
2395
|
deleteDomains(names: [String!]!): Boolean!
|
|
1762
2396
|
|
|
1763
|
-
"""
|
|
2397
|
+
"""
|
|
2398
|
+
Deletes an employee record identified by the given ID. Also deletes any attachments associated with the employee.
|
|
2399
|
+
"""
|
|
1764
2400
|
deleteEmployee(id: String!): Boolean!
|
|
1765
2401
|
|
|
1766
|
-
"""
|
|
2402
|
+
"""
|
|
2403
|
+
Deletes multiple employee records identified by the given IDs. Also deletes any attachments associated with each employee.
|
|
2404
|
+
"""
|
|
1767
2405
|
deleteEmployees(ids: [String!]!): Boolean!
|
|
1768
2406
|
|
|
1769
2407
|
"""To delete multiple Entities"""
|
|
@@ -1787,6 +2425,18 @@ type Mutation {
|
|
|
1787
2425
|
"""To delete Group"""
|
|
1788
2426
|
deleteGroup(id: String!): Boolean!
|
|
1789
2427
|
|
|
2428
|
+
"""To delete multiple InspectionDrawingTypes"""
|
|
2429
|
+
deleteInspectionDrawingTypes(ids: [String!]!): Boolean!
|
|
2430
|
+
|
|
2431
|
+
"""To delete multiple InspectionParts"""
|
|
2432
|
+
deleteInspectionParts(ids: [String!]!): Boolean!
|
|
2433
|
+
|
|
2434
|
+
"""To delete Issue"""
|
|
2435
|
+
deleteIssue(id: String!): Boolean!
|
|
2436
|
+
|
|
2437
|
+
"""To delete multiple Issues"""
|
|
2438
|
+
deleteIssues(ids: [String!]!): Boolean!
|
|
2439
|
+
|
|
1790
2440
|
"""To delete LiteMenu"""
|
|
1791
2441
|
deleteLiteMenu(id: String!): Boolean!
|
|
1792
2442
|
|
|
@@ -1832,6 +2482,12 @@ type Mutation {
|
|
|
1832
2482
|
"""To delete multiple ApprovalLines for current user"""
|
|
1833
2483
|
deleteMyApprovalLines(ids: [String!]!): Boolean!
|
|
1834
2484
|
|
|
2485
|
+
"""To delete my PagePreference"""
|
|
2486
|
+
deleteMyPagePreference(element: String!, page: String!): Boolean!
|
|
2487
|
+
|
|
2488
|
+
"""To delete my preference"""
|
|
2489
|
+
deleteMyUserPreference(element: String!, key: String!): Boolean!
|
|
2490
|
+
|
|
1835
2491
|
"""To delete Notification"""
|
|
1836
2492
|
deleteNotification(id: String!): Boolean!
|
|
1837
2493
|
|
|
@@ -1850,6 +2506,12 @@ type Mutation {
|
|
|
1850
2506
|
"""To delete multiple Oauth2Clients"""
|
|
1851
2507
|
deleteOauth2Clients(ids: [String!]!): Boolean!
|
|
1852
2508
|
|
|
2509
|
+
"""To delete PagePreference"""
|
|
2510
|
+
deletePagePreference(id: String!): Boolean!
|
|
2511
|
+
|
|
2512
|
+
"""To delete multiple PagePreferences"""
|
|
2513
|
+
deletePagePreferences(ids: [String!]!): Boolean!
|
|
2514
|
+
|
|
1853
2515
|
"""To delete multiple partnerSettings"""
|
|
1854
2516
|
deletePartnerSettings(ids: [String!]!): Boolean!
|
|
1855
2517
|
|
|
@@ -1874,8 +2536,17 @@ type Mutation {
|
|
|
1874
2536
|
"""To delete Project"""
|
|
1875
2537
|
deleteProject(id: String!): Boolean!
|
|
1876
2538
|
|
|
1877
|
-
"""To delete
|
|
1878
|
-
|
|
2539
|
+
"""To delete ProjectReport"""
|
|
2540
|
+
deleteProjectReport(id: String!): Boolean!
|
|
2541
|
+
|
|
2542
|
+
"""To delete multiple ProjectReports"""
|
|
2543
|
+
deleteProjectReports(ids: [String!]!): Boolean!
|
|
2544
|
+
|
|
2545
|
+
"""To delete Resource"""
|
|
2546
|
+
deleteResource(id: String!): Boolean!
|
|
2547
|
+
|
|
2548
|
+
"""To delete multiple Resources"""
|
|
2549
|
+
deleteResources(ids: [String!]!): Boolean!
|
|
1879
2550
|
|
|
1880
2551
|
"""To delete role"""
|
|
1881
2552
|
deleteRole(id: String!): Boolean!
|
|
@@ -1904,9 +2575,21 @@ type Mutation {
|
|
|
1904
2575
|
"""To delete multiple steps"""
|
|
1905
2576
|
deleteSteps(ids: [String!]!): Boolean!
|
|
1906
2577
|
|
|
2578
|
+
"""To delete Supervisor"""
|
|
2579
|
+
deleteSupervisor(id: String!): Boolean!
|
|
2580
|
+
|
|
2581
|
+
"""To delete multiple Supervisors"""
|
|
2582
|
+
deleteSupervisors(ids: [String!]!): Boolean!
|
|
2583
|
+
|
|
1907
2584
|
"""To delete Task"""
|
|
1908
2585
|
deleteTask(id: String!): Boolean!
|
|
1909
2586
|
|
|
2587
|
+
"""To delete TaskResource"""
|
|
2588
|
+
deleteTaskResource(id: String!): Boolean!
|
|
2589
|
+
|
|
2590
|
+
"""To delete multiple TaskResources"""
|
|
2591
|
+
deleteTaskResources(ids: [String!]!): Boolean!
|
|
2592
|
+
|
|
1910
2593
|
"""To delete multiple Tasks"""
|
|
1911
2594
|
deleteTasks(ids: [String!]!): Boolean!
|
|
1912
2595
|
|
|
@@ -1925,10 +2608,21 @@ type Mutation {
|
|
|
1925
2608
|
"""To delete a user"""
|
|
1926
2609
|
deleteUser(email: EmailAddress!): Boolean!
|
|
1927
2610
|
|
|
2611
|
+
"""To delete UserPreference"""
|
|
2612
|
+
deleteUserPreference(id: String!): Boolean!
|
|
2613
|
+
|
|
2614
|
+
"""To delete multiple UserPreferences"""
|
|
2615
|
+
deleteUserPreferences(ids: [String!]!): Boolean!
|
|
2616
|
+
|
|
1928
2617
|
"""To delete some users"""
|
|
1929
2618
|
deleteUsers(emails: [String!]!): Boolean!
|
|
1930
2619
|
|
|
1931
|
-
"""To
|
|
2620
|
+
"""To delete multiple WorkerTypes"""
|
|
2621
|
+
deleteWorkerTypes(ids: [String!]!): Boolean!
|
|
2622
|
+
|
|
2623
|
+
"""
|
|
2624
|
+
Detaches an existing contact from an employee. The employee is identified by their ID.
|
|
2625
|
+
"""
|
|
1932
2626
|
detachContact(id: String!): Employee!
|
|
1933
2627
|
|
|
1934
2628
|
"""To disconnect a connection"""
|
|
@@ -1943,6 +2637,9 @@ type Mutation {
|
|
|
1943
2637
|
getOauth2AuthUrl(id: String!): String!
|
|
1944
2638
|
grantRoles(customerId: String!, roles: [RolePatch!]!): Boolean!
|
|
1945
2639
|
|
|
2640
|
+
"""To import multiple ActionPlans"""
|
|
2641
|
+
importActionPlans(actionPlans: [ActionPlanPatch!]!): Boolean!
|
|
2642
|
+
|
|
1946
2643
|
"""To import multiple ApprovalLines"""
|
|
1947
2644
|
importApprovalLines(approvalLines: [ApprovalLinePatch!]!): Boolean!
|
|
1948
2645
|
|
|
@@ -1955,6 +2652,9 @@ type Mutation {
|
|
|
1955
2652
|
"""To import some Boards"""
|
|
1956
2653
|
importBoards(files: [Upload!]!, groupId: String!, overwrite: Boolean!): [Board!]!
|
|
1957
2654
|
|
|
2655
|
+
"""To import multiple Buildings"""
|
|
2656
|
+
importBuildings(buildings: [BuildingPatch!]!): Boolean!
|
|
2657
|
+
|
|
1958
2658
|
"""To import multiple CommonCodeDetails"""
|
|
1959
2659
|
importCommonCodeDetails(commonCodeDetails: [CommonCodeDetailPatch!]!): Boolean!
|
|
1960
2660
|
|
|
@@ -1970,9 +2670,14 @@ type Mutation {
|
|
|
1970
2670
|
"""To import multiple Departments"""
|
|
1971
2671
|
importDepartments(departments: [DepartmentPatch!]!): Boolean!
|
|
1972
2672
|
|
|
1973
|
-
"""
|
|
2673
|
+
"""
|
|
2674
|
+
Imports multiple employee records into the system. Each employee record must be provided in the EmployeePatch format.
|
|
2675
|
+
"""
|
|
1974
2676
|
importEmployees(employees: [EmployeePatch!]!): Boolean!
|
|
1975
2677
|
|
|
2678
|
+
"""To import multiple Issues"""
|
|
2679
|
+
importIssues(issues: [IssuePatch!]!): Boolean!
|
|
2680
|
+
|
|
1976
2681
|
"""To import multiple MenuButtons"""
|
|
1977
2682
|
importMenuButtons(menuButtons: [MenuButtonPatch!]!): Boolean!
|
|
1978
2683
|
|
|
@@ -1997,8 +2702,11 @@ type Mutation {
|
|
|
1997
2702
|
"""To import multiple Oauth2Clients"""
|
|
1998
2703
|
importOauth2Clients(oauth2Clients: [Oauth2ClientPatch!]!): Boolean!
|
|
1999
2704
|
|
|
2000
|
-
"""To import multiple
|
|
2001
|
-
|
|
2705
|
+
"""To import multiple ProjectReports"""
|
|
2706
|
+
importProjectReports(projectReports: [ProjectReportPatch!]!): Boolean!
|
|
2707
|
+
|
|
2708
|
+
"""To import multiple Resources"""
|
|
2709
|
+
importResources(resources: [ResourcePatch!]!): Boolean!
|
|
2002
2710
|
|
|
2003
2711
|
"""To import multiple scenarios"""
|
|
2004
2712
|
importScenarios(scenarios: [ScenarioPatch!]!): Boolean!
|
|
@@ -2006,6 +2714,12 @@ type Mutation {
|
|
|
2006
2714
|
"""To import multiple StateRegisters"""
|
|
2007
2715
|
importStateRegisters(stateRegisters: [StateRegisterPatch!]!): Boolean!
|
|
2008
2716
|
|
|
2717
|
+
"""To import multiple Supervisors"""
|
|
2718
|
+
importSupervisors(supervisors: [SupervisorPatch!]!): Boolean!
|
|
2719
|
+
|
|
2720
|
+
"""To import multiple TaskResources"""
|
|
2721
|
+
importTaskResources(taskResources: [TaskResourcePatch!]!): Boolean!
|
|
2722
|
+
|
|
2009
2723
|
"""To import multiple Tasks"""
|
|
2010
2724
|
importTasks(tasks: [TaskPatch!]!): Boolean!
|
|
2011
2725
|
|
|
@@ -2050,6 +2764,14 @@ type Mutation {
|
|
|
2050
2764
|
visibility: String!
|
|
2051
2765
|
): BoardTemplate!
|
|
2052
2766
|
|
|
2767
|
+
"""
|
|
2768
|
+
Registers an existing employee as a system user, granting them access to the system. The employee is identified by their ID.
|
|
2769
|
+
"""
|
|
2770
|
+
registerEmployeeAsSystemUser(
|
|
2771
|
+
"""Employee Id"""
|
|
2772
|
+
employeeId: String!
|
|
2773
|
+
): Boolean!
|
|
2774
|
+
|
|
2053
2775
|
"""To release a Board"""
|
|
2054
2776
|
releaseBoard(id: String!): Board!
|
|
2055
2777
|
renewApplicationAccessToken(id: String!, scope: String!): AccessToken!
|
|
@@ -2066,7 +2788,7 @@ type Mutation {
|
|
|
2066
2788
|
"""
|
|
2067
2789
|
To run new scenario instance and will return the result after the scenario stop.
|
|
2068
2790
|
"""
|
|
2069
|
-
runScenario(instanceName: String, scenarioName: String!, variables: Object):
|
|
2791
|
+
runScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstanceRunResult!
|
|
2070
2792
|
sendInvitation(email: EmailAddress!, reference: String!, type: String!): Invitation!
|
|
2071
2793
|
singleUpload(file: Upload!): Attachment!
|
|
2072
2794
|
|
|
@@ -2093,6 +2815,9 @@ type Mutation {
|
|
|
2093
2815
|
|
|
2094
2816
|
"""To transfer owner of domain"""
|
|
2095
2817
|
transferOwner(email: EmailAddress!): Boolean!
|
|
2818
|
+
|
|
2819
|
+
"""To modify ActionPlan information"""
|
|
2820
|
+
updateActionPlan(id: String!, patch: ActionPlanPatch!): ActionPlan!
|
|
2096
2821
|
updateAppliance(id: String!, patch: AppliancePatch!): Appliance!
|
|
2097
2822
|
updateApplication(id: String!, patch: ApplicationPatch!): Application!
|
|
2098
2823
|
|
|
@@ -2112,6 +2837,21 @@ type Mutation {
|
|
|
2112
2837
|
"""To modify BoardTemplate information"""
|
|
2113
2838
|
updateBoardTemplate(id: String!, patch: BoardTemplatePatch!): BoardTemplate!
|
|
2114
2839
|
|
|
2840
|
+
"""To modify Building information"""
|
|
2841
|
+
updateBuilding(id: String!, patch: BuildingPatch!): Building!
|
|
2842
|
+
|
|
2843
|
+
"""To modify BuildingComplex information"""
|
|
2844
|
+
updateBuildingComplex(id: String!, patch: BuildingComplexPatch!): BuildingComplex!
|
|
2845
|
+
|
|
2846
|
+
"""To update Building Inspection information"""
|
|
2847
|
+
updateBuildingInspection(patch: UpdateBuildingInspectionDrawingMarker!): BuildingInspection!
|
|
2848
|
+
|
|
2849
|
+
"""To create Building Inspection And Checklist information"""
|
|
2850
|
+
updateBuildingInspectionChecklist(buildingInspection: UpdateBuildingInspectionSubmitType!): Boolean!
|
|
2851
|
+
|
|
2852
|
+
"""To modify Checklist information"""
|
|
2853
|
+
updateChecklist(id: String!, patch: ChecklistPatch!): Checklist!
|
|
2854
|
+
|
|
2115
2855
|
"""To modify CommonCode information"""
|
|
2116
2856
|
updateCommonCode(name: String!, patch: CommonCodePatch!): CommonCode!
|
|
2117
2857
|
|
|
@@ -2133,7 +2873,9 @@ type Mutation {
|
|
|
2133
2873
|
"""To update multiple domains (Only superuser is granted this privilege.)"""
|
|
2134
2874
|
updateDomains(patches: [DomainPatch!]!): Boolean!
|
|
2135
2875
|
|
|
2136
|
-
"""
|
|
2876
|
+
"""
|
|
2877
|
+
Updates the details of an existing employee identified by the given ID. Optionally updates the supervisor, department, system user, and photo associated with the employee.
|
|
2878
|
+
"""
|
|
2137
2879
|
updateEmployee(id: String!, patch: EmployeePatch!): Employee!
|
|
2138
2880
|
|
|
2139
2881
|
"""To modify Entity' information"""
|
|
@@ -2148,6 +2890,9 @@ type Mutation {
|
|
|
2148
2890
|
"""To modify Group information"""
|
|
2149
2891
|
updateGroup(id: String!, patch: GroupPatch!): Group!
|
|
2150
2892
|
|
|
2893
|
+
"""To modify Issue information"""
|
|
2894
|
+
updateIssue(id: String!, patch: IssuePatch!): Issue!
|
|
2895
|
+
|
|
2151
2896
|
"""To modify LiteMenu information"""
|
|
2152
2897
|
updateLiteMenu(id: String!, patch: LiteMenuPatch!): LiteMenu!
|
|
2153
2898
|
|
|
@@ -2169,6 +2914,9 @@ type Mutation {
|
|
|
2169
2914
|
"""To modify MenuDetailColumn information"""
|
|
2170
2915
|
updateMenuDetailColumn(id: String!, patch: MenuDetailColumnPatch!): MenuDetailColumn!
|
|
2171
2916
|
|
|
2917
|
+
"""To modify multiple ActionPlans' information"""
|
|
2918
|
+
updateMultipleActionPlan(patches: [ActionPlanPatch!]!): [ActionPlan!]!
|
|
2919
|
+
|
|
2172
2920
|
"""To modify multiple ApprovalLines' information"""
|
|
2173
2921
|
updateMultipleApprovalLine(patches: [ApprovalLinePatch!]!): [ApprovalLine!]!
|
|
2174
2922
|
|
|
@@ -2176,6 +2924,21 @@ type Mutation {
|
|
|
2176
2924
|
updateMultipleAttributeSet(patches: [AttributeSetPatch!]!): [AttributeSet!]!
|
|
2177
2925
|
updateMultipleAuthProvider(patches: [AuthProviderPatch!]!): [AuthProvider!]!
|
|
2178
2926
|
|
|
2927
|
+
"""To modify multiple Buildings' information"""
|
|
2928
|
+
updateMultipleBuilding(patches: [BuildingPatch!]!): [Building!]!
|
|
2929
|
+
|
|
2930
|
+
"""To modify multiple Checklists' information"""
|
|
2931
|
+
updateMultipleChecklist(patches: [ChecklistPatch!]!): [Checklist!]!
|
|
2932
|
+
|
|
2933
|
+
"""To modify multiple ChecklistTemplates' information"""
|
|
2934
|
+
updateMultipleChecklistTemplate(patches: [ChecklistTemplatePatch!]!): [ChecklistTemplate!]!
|
|
2935
|
+
|
|
2936
|
+
"""To modify multiple ChecklistTemplateItems' information"""
|
|
2937
|
+
updateMultipleChecklistTemplateItems(checklistTemplateId: String!, patches: [ChecklistTemplateItemPatch!]!): [ChecklistTemplateItem!]!
|
|
2938
|
+
|
|
2939
|
+
"""To modify multiple ChecklistTypes' information"""
|
|
2940
|
+
updateMultipleChecklistType(patches: [ChecklistTypePatch!]!): [ChecklistType!]!
|
|
2941
|
+
|
|
2179
2942
|
"""To modify multiple CommonCodes' information"""
|
|
2180
2943
|
updateMultipleCommonCode(patches: [CommonCodePatch!]!): [CommonCode!]!
|
|
2181
2944
|
|
|
@@ -2185,13 +2948,21 @@ type Mutation {
|
|
|
2185
2948
|
"""To modify multiple connections' information"""
|
|
2186
2949
|
updateMultipleConnection(patches: [ConnectionPatch!]!): [Connection!]!
|
|
2187
2950
|
|
|
2951
|
+
"""To modify multiple ConstructionDetailTypes' information"""
|
|
2952
|
+
updateMultipleConstructionDetailType(constructionTypeId: String!, patches: [ConstructionDetailTypePatch!]!): [ConstructionDetailType!]!
|
|
2953
|
+
|
|
2954
|
+
"""To modify multiple ConstructionTypes' information"""
|
|
2955
|
+
updateMultipleConstructionType(patches: [ConstructionTypePatch!]!): [ConstructionType!]!
|
|
2956
|
+
|
|
2188
2957
|
"""To modify multiple Contacts' information"""
|
|
2189
2958
|
updateMultipleContact(patches: [ContactPatch!]!): [Contact!]!
|
|
2190
2959
|
|
|
2191
2960
|
"""To modify multiple Departments' information"""
|
|
2192
2961
|
updateMultipleDepartment(patches: [DepartmentPatch!]!): [Department!]!
|
|
2193
2962
|
|
|
2194
|
-
"""
|
|
2963
|
+
"""
|
|
2964
|
+
Updates or creates multiple employee records based on the provided patches. New employees are created if the "cuFlag" is "+", and existing employees are updated if the "cuFlag" is "M".
|
|
2965
|
+
"""
|
|
2195
2966
|
updateMultipleEmployee(patches: [EmployeePatch!]!): [Employee!]!
|
|
2196
2967
|
|
|
2197
2968
|
"""To modify multiple Entitys' information"""
|
|
@@ -2200,6 +2971,18 @@ type Mutation {
|
|
|
2200
2971
|
"""To modify multiple Entitys' information"""
|
|
2201
2972
|
updateMultipleEntityColumn(patches: [EntityColumnPatch!]!): [EntityColumn!]!
|
|
2202
2973
|
|
|
2974
|
+
"""To modify multiple InspectionDrawingTypes' information"""
|
|
2975
|
+
updateMultipleInspectionDrawingType(patches: [InspectionDrawingTypePatch!]!): [InspectionDrawingType!]!
|
|
2976
|
+
|
|
2977
|
+
"""To modify multiple InspectionParts' information"""
|
|
2978
|
+
updateMultipleInspectionPart(inspectionDrawingTypeId: String!, patches: [InspectionPartPatch!]!): [InspectionPart!]!
|
|
2979
|
+
|
|
2980
|
+
"""To modify multiple Issues' information"""
|
|
2981
|
+
updateMultipleIssue(patches: [IssuePatch!]!): [Issue!]!
|
|
2982
|
+
|
|
2983
|
+
"""To modify multiple Managers' information"""
|
|
2984
|
+
updateMultipleManager(patches: [ManagerPatch!]!): [Manager!]!
|
|
2985
|
+
|
|
2203
2986
|
"""To modify multiple Menus' information"""
|
|
2204
2987
|
updateMultipleMenu(patches: [MenuPatch!]!): [Menu!]!
|
|
2205
2988
|
|
|
@@ -2221,8 +3004,11 @@ type Mutation {
|
|
|
2221
3004
|
"""To modify multiple PrinterDevices' information"""
|
|
2222
3005
|
updateMultiplePrinterDevice(patches: [PrinterDevicePatch!]!): [PrinterDevice!]!
|
|
2223
3006
|
|
|
2224
|
-
"""To modify multiple
|
|
2225
|
-
|
|
3007
|
+
"""To modify multiple ProjectReports' information"""
|
|
3008
|
+
updateMultipleProjectReport(patches: [ProjectReportPatch!]!): [ProjectReport!]!
|
|
3009
|
+
|
|
3010
|
+
"""To modify multiple Resources' information"""
|
|
3011
|
+
updateMultipleResource(patches: [ResourcePatch!]!): [Resource!]!
|
|
2226
3012
|
|
|
2227
3013
|
"""To modify multiple scenarios' information"""
|
|
2228
3014
|
updateMultipleScenario(patches: [ScenarioPatch!]!): [Scenario!]!
|
|
@@ -2236,9 +3022,15 @@ type Mutation {
|
|
|
2236
3022
|
"""To modify multiple steps' in a scenario"""
|
|
2237
3023
|
updateMultipleStep(patches: [StepPatch!]!, scenarioId: String!): [Step!]!
|
|
2238
3024
|
|
|
3025
|
+
"""To modify multiple Supervisors' information"""
|
|
3026
|
+
updateMultipleSupervisor(patches: [SupervisorPatch!]!): [Supervisor!]!
|
|
3027
|
+
|
|
2239
3028
|
"""To modify multiple Tasks' information"""
|
|
2240
3029
|
updateMultipleTask(patches: [TaskPatch!]!): [Task!]!
|
|
2241
3030
|
|
|
3031
|
+
"""To modify multiple TaskResources' information"""
|
|
3032
|
+
updateMultipleTaskResource(patches: [TaskResourcePatch!]!): [TaskResource!]!
|
|
3033
|
+
|
|
2242
3034
|
"""To modify multiple Terminologies' information"""
|
|
2243
3035
|
updateMultipleTerminologies(patches: [TerminologyPatch!]!): [Terminology!]!
|
|
2244
3036
|
|
|
@@ -2248,9 +3040,18 @@ type Mutation {
|
|
|
2248
3040
|
"""To modify multiple users information"""
|
|
2249
3041
|
updateMultipleUser(patches: [UserPatch!]!): [User!]!
|
|
2250
3042
|
|
|
3043
|
+
"""To modify multiple WorkerTypes' information"""
|
|
3044
|
+
updateMultipleWorkerType(patches: [WorkerTypePatch!]!): [WorkerType!]!
|
|
3045
|
+
|
|
2251
3046
|
"""To modify ApprovalLine information for current user"""
|
|
2252
3047
|
updateMyApprovalLine(id: String!, patch: ApprovalLinePatch!): ApprovalLine!
|
|
2253
3048
|
|
|
3049
|
+
"""To create or update my PagePreference"""
|
|
3050
|
+
updateMyPagePreference(element: String!, page: String!, preference: Object!): PagePreference!
|
|
3051
|
+
|
|
3052
|
+
"""To create or update my preference"""
|
|
3053
|
+
updateMyUserPreference(key: String!, preference: Object!): UserPreference!
|
|
3054
|
+
|
|
2254
3055
|
"""To modify Notification information"""
|
|
2255
3056
|
updateNotification(id: String!, patch: NotificationPatch!): Notification!
|
|
2256
3057
|
|
|
@@ -2272,8 +3073,17 @@ type Mutation {
|
|
|
2272
3073
|
"""To modify privilege information"""
|
|
2273
3074
|
updatePrivilege(category: String!, name: String!, patch: PrivilegePatch!): Privilege!
|
|
2274
3075
|
|
|
2275
|
-
"""
|
|
2276
|
-
updateProject(
|
|
3076
|
+
"""프로젝트 업데이트"""
|
|
3077
|
+
updateProject(project: ProjectPatch!): Project!
|
|
3078
|
+
|
|
3079
|
+
"""프로젝트 도면 업데이트"""
|
|
3080
|
+
updateProjectPlan(project: ProjectPatch!): Project!
|
|
3081
|
+
|
|
3082
|
+
"""To modify ProjectReport information"""
|
|
3083
|
+
updateProjectReport(id: String!, patch: ProjectReportPatch!): ProjectReport!
|
|
3084
|
+
|
|
3085
|
+
"""To modify Resource information"""
|
|
3086
|
+
updateResource(id: String!, patch: ResourcePatch!): Resource!
|
|
2277
3087
|
|
|
2278
3088
|
"""To modify role information"""
|
|
2279
3089
|
updateRole(id: String!, patch: RolePatch!): Role!
|
|
@@ -2299,9 +3109,15 @@ type Mutation {
|
|
|
2299
3109
|
"""To update state of StateRegister by name"""
|
|
2300
3110
|
updateStateRegisterByName(name: String!, state: Object!): StateRegister!
|
|
2301
3111
|
|
|
3112
|
+
"""To modify Supervisor information"""
|
|
3113
|
+
updateSupervisor(id: String!, patch: SupervisorPatch!): Supervisor!
|
|
3114
|
+
|
|
2302
3115
|
"""To modify Task information"""
|
|
2303
3116
|
updateTask(id: String!, patch: TaskPatch!): Task!
|
|
2304
3117
|
|
|
3118
|
+
"""To modify TaskResource information"""
|
|
3119
|
+
updateTaskResource(id: String!, patch: TaskResourcePatch!): TaskResource!
|
|
3120
|
+
|
|
2305
3121
|
"""To modify Terminology information"""
|
|
2306
3122
|
updateTerminology(id: String!, patch: TerminologyPatch!): Terminology!
|
|
2307
3123
|
|
|
@@ -2311,10 +3127,22 @@ type Mutation {
|
|
|
2311
3127
|
"""To modify user information"""
|
|
2312
3128
|
updateUser(email: EmailAddress!, patch: UserPatch!): User!
|
|
2313
3129
|
|
|
3130
|
+
"""To modify UserPreference information"""
|
|
3131
|
+
updateUserPreference(id: String!, patch: UserPreferencePatch!): UserPreference!
|
|
3132
|
+
|
|
2314
3133
|
"""To update roles for a user"""
|
|
2315
3134
|
updateUserRoles(availableRoles: [ObjectRef!]!, selectedRoles: [ObjectRef!]!, userId: String!): User!
|
|
2316
3135
|
}
|
|
2317
3136
|
|
|
3137
|
+
input NewActionPlan {
|
|
3138
|
+
active: Boolean
|
|
3139
|
+
description: String
|
|
3140
|
+
name: String!
|
|
3141
|
+
params: String
|
|
3142
|
+
state: ActionPlanStatus
|
|
3143
|
+
thumbnail: Upload
|
|
3144
|
+
}
|
|
3145
|
+
|
|
2318
3146
|
input NewAppliance {
|
|
2319
3147
|
brand: String!
|
|
2320
3148
|
description: String
|
|
@@ -2349,6 +3177,7 @@ input NewAttachment {
|
|
|
2349
3177
|
file: Upload!
|
|
2350
3178
|
refBy: String
|
|
2351
3179
|
refType: String
|
|
3180
|
+
tags: Object
|
|
2352
3181
|
}
|
|
2353
3182
|
|
|
2354
3183
|
input NewAttributeSet {
|
|
@@ -2384,6 +3213,19 @@ input NewBoardTemplate {
|
|
|
2384
3213
|
visibility: String!
|
|
2385
3214
|
}
|
|
2386
3215
|
|
|
3216
|
+
input NewBuildingInspection {
|
|
3217
|
+
buildingLevelId: String!
|
|
3218
|
+
checklist: ChecklistInputType!
|
|
3219
|
+
checklistItem: [ChecklistItemInputType!]!
|
|
3220
|
+
}
|
|
3221
|
+
|
|
3222
|
+
input NewChecklist {
|
|
3223
|
+
active: Boolean
|
|
3224
|
+
description: String
|
|
3225
|
+
name: String!
|
|
3226
|
+
params: String
|
|
3227
|
+
}
|
|
3228
|
+
|
|
2387
3229
|
input NewCommonCode {
|
|
2388
3230
|
description: String
|
|
2389
3231
|
details: [String!]
|
|
@@ -2433,16 +3275,21 @@ input NewDepartment {
|
|
|
2433
3275
|
input NewEmployee {
|
|
2434
3276
|
active: Boolean
|
|
2435
3277
|
alias: String
|
|
3278
|
+
bankAccount: String
|
|
3279
|
+
bankName: String
|
|
3280
|
+
contact: ObjectRefForContact
|
|
2436
3281
|
controlNo: String!
|
|
2437
|
-
department:
|
|
3282
|
+
department: ObjectRefForDepartment
|
|
3283
|
+
emergencyContact: String
|
|
3284
|
+
emergencyContactPhone: String
|
|
2438
3285
|
extension: String
|
|
2439
|
-
hiredOn:
|
|
3286
|
+
hiredOn: DateTimeISO
|
|
2440
3287
|
jobPosition: String
|
|
2441
3288
|
jobResponsibility: String
|
|
2442
3289
|
name: String!
|
|
2443
3290
|
note: String
|
|
2444
3291
|
photo: Upload
|
|
2445
|
-
|
|
3292
|
+
retiredOn: DateTimeISO
|
|
2446
3293
|
supervisor: ObjectRefForEmployee
|
|
2447
3294
|
type: EmployeeType
|
|
2448
3295
|
user: ObjectRefForUser
|
|
@@ -2524,15 +3371,25 @@ input NewGroup {
|
|
|
2524
3371
|
name: String!
|
|
2525
3372
|
}
|
|
2526
3373
|
|
|
3374
|
+
input NewIssue {
|
|
3375
|
+
active: Boolean
|
|
3376
|
+
description: String
|
|
3377
|
+
name: String!
|
|
3378
|
+
params: String
|
|
3379
|
+
state: IssueStatus
|
|
3380
|
+
thumbnail: Upload
|
|
3381
|
+
}
|
|
3382
|
+
|
|
2527
3383
|
input NewLiteMenu {
|
|
2528
3384
|
active: Boolean
|
|
2529
3385
|
appName: String
|
|
2530
3386
|
description: String
|
|
2531
3387
|
icon: String
|
|
3388
|
+
labels: Object
|
|
2532
3389
|
name: String!
|
|
2533
3390
|
parent: String
|
|
2534
|
-
privilege: PrivilegeInput
|
|
2535
3391
|
rank: Int
|
|
3392
|
+
role: ObjectRef
|
|
2536
3393
|
type: String
|
|
2537
3394
|
value: String
|
|
2538
3395
|
}
|
|
@@ -2722,6 +3579,13 @@ input NewOauth2Client {
|
|
|
2722
3579
|
webhook: String
|
|
2723
3580
|
}
|
|
2724
3581
|
|
|
3582
|
+
input NewPagePreference {
|
|
3583
|
+
element: String
|
|
3584
|
+
page: String
|
|
3585
|
+
preference: Object!
|
|
3586
|
+
user: ObjectRef!
|
|
3587
|
+
}
|
|
3588
|
+
|
|
2725
3589
|
input NewPayloadLog {
|
|
2726
3590
|
description: String
|
|
2727
3591
|
name: String!
|
|
@@ -2758,14 +3622,28 @@ input NewPrivilege {
|
|
|
2758
3622
|
}
|
|
2759
3623
|
|
|
2760
3624
|
input NewProject {
|
|
3625
|
+
"""연관된 건물 복합체 정보 (선택 사항)"""
|
|
3626
|
+
buildingComplex: ObjectRef
|
|
3627
|
+
|
|
3628
|
+
"""프로젝트 이름"""
|
|
3629
|
+
name: String!
|
|
3630
|
+
}
|
|
3631
|
+
|
|
3632
|
+
input NewProjectReport {
|
|
2761
3633
|
active: Boolean
|
|
2762
3634
|
description: String
|
|
2763
3635
|
name: String!
|
|
2764
3636
|
params: String
|
|
2765
|
-
state:
|
|
3637
|
+
state: ProjectReportStatus
|
|
2766
3638
|
thumbnail: Upload
|
|
2767
3639
|
}
|
|
2768
3640
|
|
|
3641
|
+
input NewResource {
|
|
3642
|
+
name: String!
|
|
3643
|
+
type: ResourceType!
|
|
3644
|
+
unit: String!
|
|
3645
|
+
}
|
|
3646
|
+
|
|
2769
3647
|
input NewRole {
|
|
2770
3648
|
description: String
|
|
2771
3649
|
name: String!
|
|
@@ -2777,9 +3655,10 @@ input NewScenario {
|
|
|
2777
3655
|
active: Boolean
|
|
2778
3656
|
description: String
|
|
2779
3657
|
name: String!
|
|
2780
|
-
|
|
3658
|
+
role: ObjectRef
|
|
2781
3659
|
schedule: String
|
|
2782
3660
|
timezone: String
|
|
3661
|
+
ttl: Float
|
|
2783
3662
|
type: String
|
|
2784
3663
|
}
|
|
2785
3664
|
|
|
@@ -2791,30 +3670,81 @@ input NewSetting {
|
|
|
2791
3670
|
}
|
|
2792
3671
|
|
|
2793
3672
|
input NewStateRegister {
|
|
3673
|
+
"""Description of the state register"""
|
|
2794
3674
|
description: String
|
|
3675
|
+
|
|
3676
|
+
"""Group name for the state register"""
|
|
3677
|
+
group: String
|
|
3678
|
+
|
|
3679
|
+
"""Name of the state register"""
|
|
2795
3680
|
name: String!
|
|
3681
|
+
|
|
3682
|
+
"""Number of decimal places if the state is a number type"""
|
|
3683
|
+
place: String
|
|
3684
|
+
|
|
3685
|
+
"""
|
|
3686
|
+
Reference to an external entity or data, used as a flexible foreign key
|
|
3687
|
+
"""
|
|
2796
3688
|
refBy: String
|
|
3689
|
+
|
|
3690
|
+
"""Current state value"""
|
|
2797
3691
|
state: Object
|
|
3692
|
+
|
|
3693
|
+
"""Time to live for the state value in seconds"""
|
|
2798
3694
|
ttl: Int
|
|
3695
|
+
|
|
3696
|
+
"""Type of the state"""
|
|
2799
3697
|
type: String
|
|
3698
|
+
|
|
3699
|
+
"""Unit of the state value"""
|
|
3700
|
+
unit: String
|
|
2800
3701
|
}
|
|
2801
3702
|
|
|
2802
|
-
input
|
|
3703
|
+
input NewSupervisor {
|
|
2803
3704
|
active: Boolean
|
|
2804
3705
|
description: String
|
|
2805
3706
|
name: String!
|
|
2806
3707
|
params: String
|
|
2807
|
-
state:
|
|
3708
|
+
state: SupervisorStatus
|
|
2808
3709
|
thumbnail: Upload
|
|
2809
3710
|
}
|
|
2810
3711
|
|
|
2811
|
-
input
|
|
2812
|
-
|
|
2813
|
-
|
|
2814
|
-
|
|
2815
|
-
|
|
2816
|
-
|
|
2817
|
-
|
|
3712
|
+
input NewTask {
|
|
3713
|
+
"""작업이 활성 상태인지 여부 (선택 사항)"""
|
|
3714
|
+
active: Boolean
|
|
3715
|
+
|
|
3716
|
+
"""프로젝트 내에서 유니크한 작업 코드"""
|
|
3717
|
+
code: String!
|
|
3718
|
+
|
|
3719
|
+
"""작업에 대한 설명 (선택 사항)"""
|
|
3720
|
+
description: String
|
|
3721
|
+
|
|
3722
|
+
"""작업의 이름"""
|
|
3723
|
+
name: String!
|
|
3724
|
+
|
|
3725
|
+
"""작업에 대한 추가 파라미터, JSON 형식으로 저장 (선택 사항)"""
|
|
3726
|
+
params: String
|
|
3727
|
+
|
|
3728
|
+
"""부모 작업, 해당 작업이 하위 작업인 경우 (선택 사항)"""
|
|
3729
|
+
parent: ObjectRefForTask
|
|
3730
|
+
|
|
3731
|
+
"""작업이 속한 프로젝트 (선택 사항)"""
|
|
3732
|
+
project: ObjectRefForProject
|
|
3733
|
+
}
|
|
3734
|
+
|
|
3735
|
+
input NewTaskResource {
|
|
3736
|
+
quantity: Float!
|
|
3737
|
+
resourceId: ID!
|
|
3738
|
+
taskId: ID!
|
|
3739
|
+
}
|
|
3740
|
+
|
|
3741
|
+
input NewTerminology {
|
|
3742
|
+
category: String!
|
|
3743
|
+
description: String
|
|
3744
|
+
display: String!
|
|
3745
|
+
locale: String!
|
|
3746
|
+
name: String!
|
|
3747
|
+
}
|
|
2818
3748
|
|
|
2819
3749
|
input NewTheme {
|
|
2820
3750
|
active: Boolean
|
|
@@ -2842,12 +3772,18 @@ input NewUserByDomainWizardInput {
|
|
|
2842
3772
|
roles: [NewRole!]!
|
|
2843
3773
|
}
|
|
2844
3774
|
|
|
3775
|
+
input NewUserPreference {
|
|
3776
|
+
key: String!
|
|
3777
|
+
preference: Object!
|
|
3778
|
+
user: ObjectRef!
|
|
3779
|
+
}
|
|
3780
|
+
|
|
2845
3781
|
"""Entity for Notification"""
|
|
2846
3782
|
type Notification {
|
|
2847
3783
|
body: String
|
|
2848
3784
|
createdAt: DateTimeISO
|
|
2849
3785
|
creator: User
|
|
2850
|
-
domain: Domain
|
|
3786
|
+
domain: Domain!
|
|
2851
3787
|
id: ID!
|
|
2852
3788
|
image: String
|
|
2853
3789
|
owner: User
|
|
@@ -2881,7 +3817,7 @@ type NotificationRule {
|
|
|
2881
3817
|
creator: User
|
|
2882
3818
|
deletedAt: DateTimeISO
|
|
2883
3819
|
description: String
|
|
2884
|
-
domain: Domain
|
|
3820
|
+
domain: Domain!
|
|
2885
3821
|
id: ID!
|
|
2886
3822
|
name: String
|
|
2887
3823
|
|
|
@@ -2938,7 +3874,7 @@ type Oauth2Client {
|
|
|
2938
3874
|
createdAt: DateTimeISO
|
|
2939
3875
|
creator: User
|
|
2940
3876
|
description: String
|
|
2941
|
-
domain: Domain
|
|
3877
|
+
domain: Domain!
|
|
2942
3878
|
expires: DateTimeISO
|
|
2943
3879
|
grantType: String
|
|
2944
3880
|
icon: String
|
|
@@ -3009,6 +3945,34 @@ input ObjectRefApprovalLineOwnerType {
|
|
|
3009
3945
|
name: String
|
|
3010
3946
|
}
|
|
3011
3947
|
|
|
3948
|
+
input ObjectRefForContact {
|
|
3949
|
+
address: String
|
|
3950
|
+
|
|
3951
|
+
"""Field description"""
|
|
3952
|
+
description: String
|
|
3953
|
+
email: EmailAddress
|
|
3954
|
+
|
|
3955
|
+
"""Field id"""
|
|
3956
|
+
id: ID!
|
|
3957
|
+
|
|
3958
|
+
"""Field name"""
|
|
3959
|
+
name: String
|
|
3960
|
+
phone: String
|
|
3961
|
+
}
|
|
3962
|
+
|
|
3963
|
+
input ObjectRefForDepartment {
|
|
3964
|
+
controlNo: String
|
|
3965
|
+
|
|
3966
|
+
"""Field description"""
|
|
3967
|
+
description: String
|
|
3968
|
+
|
|
3969
|
+
"""Field id"""
|
|
3970
|
+
id: ID!
|
|
3971
|
+
|
|
3972
|
+
"""Field name"""
|
|
3973
|
+
name: String
|
|
3974
|
+
}
|
|
3975
|
+
|
|
3012
3976
|
input ObjectRefForEmployee {
|
|
3013
3977
|
active: Boolean
|
|
3014
3978
|
alias: String
|
|
@@ -3017,7 +3981,7 @@ input ObjectRefForEmployee {
|
|
|
3017
3981
|
"""Field description"""
|
|
3018
3982
|
description: String
|
|
3019
3983
|
email: EmailAddress
|
|
3020
|
-
hiredOn:
|
|
3984
|
+
hiredOn: DateTimeISO
|
|
3021
3985
|
|
|
3022
3986
|
"""Field id"""
|
|
3023
3987
|
id: ID!
|
|
@@ -3030,6 +3994,31 @@ input ObjectRefForEmployee {
|
|
|
3030
3994
|
type: EmployeeType
|
|
3031
3995
|
}
|
|
3032
3996
|
|
|
3997
|
+
input ObjectRefForProject {
|
|
3998
|
+
"""Field description"""
|
|
3999
|
+
description: String
|
|
4000
|
+
|
|
4001
|
+
"""Field id"""
|
|
4002
|
+
id: ID!
|
|
4003
|
+
|
|
4004
|
+
"""프로젝트 이름 (선택 사항)"""
|
|
4005
|
+
name: String
|
|
4006
|
+
}
|
|
4007
|
+
|
|
4008
|
+
input ObjectRefForTask {
|
|
4009
|
+
"""작업 코드 (선택 사항)"""
|
|
4010
|
+
code: String
|
|
4011
|
+
|
|
4012
|
+
"""Field description"""
|
|
4013
|
+
description: String
|
|
4014
|
+
|
|
4015
|
+
"""Field id"""
|
|
4016
|
+
id: ID!
|
|
4017
|
+
|
|
4018
|
+
"""Field name"""
|
|
4019
|
+
name: String
|
|
4020
|
+
}
|
|
4021
|
+
|
|
3033
4022
|
input ObjectRefForUser {
|
|
3034
4023
|
"""Field description"""
|
|
3035
4024
|
description: String
|
|
@@ -3065,18 +4054,37 @@ enum OrgMemberTargetType {
|
|
|
3065
4054
|
Role
|
|
3066
4055
|
}
|
|
3067
4056
|
|
|
4057
|
+
"""Entity for PagePreference"""
|
|
4058
|
+
type PagePreference {
|
|
4059
|
+
createdAt: DateTimeISO
|
|
4060
|
+
creator: User
|
|
4061
|
+
domain: Domain!
|
|
4062
|
+
element: String
|
|
4063
|
+
id: ID!
|
|
4064
|
+
page: String
|
|
4065
|
+
preference: Object
|
|
4066
|
+
updatedAt: DateTimeISO
|
|
4067
|
+
updater: User
|
|
4068
|
+
user: User!
|
|
4069
|
+
}
|
|
4070
|
+
|
|
4071
|
+
type PagePreferenceList {
|
|
4072
|
+
items: [PagePreference!]!
|
|
4073
|
+
total: Int!
|
|
4074
|
+
}
|
|
4075
|
+
|
|
3068
4076
|
input Pagination {
|
|
3069
4077
|
limit: Int
|
|
3070
4078
|
page: Int
|
|
3071
4079
|
}
|
|
3072
4080
|
|
|
3073
4081
|
type Partner {
|
|
3074
|
-
approvedAt: DateTimeISO
|
|
4082
|
+
approvedAt: DateTimeISO
|
|
3075
4083
|
approver: User
|
|
3076
4084
|
domain: Domain!
|
|
3077
4085
|
id: ID!
|
|
3078
4086
|
partnerDomain: Domain!
|
|
3079
|
-
requestedAt: DateTimeISO
|
|
4087
|
+
requestedAt: DateTimeISO
|
|
3080
4088
|
requester: User
|
|
3081
4089
|
}
|
|
3082
4090
|
|
|
@@ -3091,7 +4099,7 @@ type PartnerSetting {
|
|
|
3091
4099
|
createdAt: DateTimeISO
|
|
3092
4100
|
creator: User
|
|
3093
4101
|
description: String
|
|
3094
|
-
domain: Domain
|
|
4102
|
+
domain: Domain!
|
|
3095
4103
|
id: ID!
|
|
3096
4104
|
name: String
|
|
3097
4105
|
partnerDomain: Domain
|
|
@@ -3116,11 +4124,23 @@ input PartnerSettingPatch {
|
|
|
3116
4124
|
value: String
|
|
3117
4125
|
}
|
|
3118
4126
|
|
|
4127
|
+
type PasswordRule {
|
|
4128
|
+
allowRepeat: Boolean
|
|
4129
|
+
digit: Boolean
|
|
4130
|
+
looseCharacterLength: Float
|
|
4131
|
+
lowerCase: Boolean
|
|
4132
|
+
specialCharacter: Boolean
|
|
4133
|
+
tightCharacterLength: Float
|
|
4134
|
+
upperCase: Boolean
|
|
4135
|
+
useLoosePattern: Boolean
|
|
4136
|
+
useTightPattern: Boolean
|
|
4137
|
+
}
|
|
4138
|
+
|
|
3119
4139
|
"""Entity for PayloadLog"""
|
|
3120
4140
|
type PayloadLog {
|
|
3121
4141
|
createdAt: DateTimeISO
|
|
3122
4142
|
creator: User
|
|
3123
|
-
domain: Domain
|
|
4143
|
+
domain: Domain!
|
|
3124
4144
|
endpoint: String!
|
|
3125
4145
|
id: ID!
|
|
3126
4146
|
name: String!
|
|
@@ -3237,13 +4257,6 @@ type Privilege {
|
|
|
3237
4257
|
updater: User
|
|
3238
4258
|
}
|
|
3239
4259
|
|
|
3240
|
-
input PrivilegeInput {
|
|
3241
|
-
category: String
|
|
3242
|
-
owner: Boolean
|
|
3243
|
-
privilege: String
|
|
3244
|
-
super: Boolean
|
|
3245
|
-
}
|
|
3246
|
-
|
|
3247
4260
|
type PrivilegeList {
|
|
3248
4261
|
items: [Privilege!]
|
|
3249
4262
|
total: Int
|
|
@@ -3281,43 +4294,114 @@ input ProfileInput {
|
|
|
3281
4294
|
zoom: Float
|
|
3282
4295
|
}
|
|
3283
4296
|
|
|
3284
|
-
"""
|
|
4297
|
+
"""프로젝트"""
|
|
3285
4298
|
type Project {
|
|
4299
|
+
buildingComplex: BuildingComplex
|
|
4300
|
+
createdAt: DateTimeISO
|
|
4301
|
+
creator: User
|
|
4302
|
+
deletedAt: DateTimeISO
|
|
4303
|
+
domain: Domain
|
|
4304
|
+
endDate: String
|
|
4305
|
+
id: ID!
|
|
4306
|
+
inspPassRate: Float
|
|
4307
|
+
kpi: Float
|
|
4308
|
+
mainPhoto: Attachment
|
|
4309
|
+
name: String!
|
|
4310
|
+
robotProgressRate: Float
|
|
4311
|
+
rootTasks: [Task!]
|
|
4312
|
+
startDate: String
|
|
4313
|
+
state: String!
|
|
4314
|
+
structuralSafetyRate: Float
|
|
4315
|
+
tasks: [Task!]
|
|
4316
|
+
totalProgress: Float
|
|
4317
|
+
updatedAt: DateTimeISO
|
|
4318
|
+
updater: User
|
|
4319
|
+
weeklyProgress: Float
|
|
4320
|
+
}
|
|
4321
|
+
|
|
4322
|
+
type ProjectList {
|
|
4323
|
+
"""프로젝트 리스트 항목들"""
|
|
4324
|
+
items: [Project!]!
|
|
4325
|
+
|
|
4326
|
+
"""전체 프로젝트 수"""
|
|
4327
|
+
total: Int!
|
|
4328
|
+
}
|
|
4329
|
+
|
|
4330
|
+
input ProjectPatch {
|
|
4331
|
+
buildingComplex: BuildingComplexPatch
|
|
4332
|
+
|
|
4333
|
+
"""프로젝트 준공일정"""
|
|
4334
|
+
endDate: String
|
|
4335
|
+
|
|
4336
|
+
"""수정할 프로젝트의 ID"""
|
|
4337
|
+
id: String!
|
|
4338
|
+
|
|
4339
|
+
"""검측/통과 비율 (%)"""
|
|
4340
|
+
inspPassRate: Float
|
|
4341
|
+
|
|
4342
|
+
"""프로젝트 KPI"""
|
|
4343
|
+
kpi: Float
|
|
4344
|
+
|
|
4345
|
+
"""프로젝트 대표 사진 업로드"""
|
|
4346
|
+
mainPhotoUpload: Upload
|
|
4347
|
+
|
|
4348
|
+
"""프로젝트 이름"""
|
|
4349
|
+
name: String!
|
|
4350
|
+
|
|
4351
|
+
"""로봇 작업 진행율 (%)"""
|
|
4352
|
+
robotProgressRate: Float
|
|
4353
|
+
|
|
4354
|
+
"""프로젝트 착공일정"""
|
|
4355
|
+
startDate: String
|
|
4356
|
+
|
|
4357
|
+
"""구조 안전도 (%)"""
|
|
4358
|
+
structuralSafetyRate: Float
|
|
4359
|
+
|
|
4360
|
+
"""프로젝트 전체 진행현황 (%)"""
|
|
4361
|
+
totalProgress: Float
|
|
4362
|
+
|
|
4363
|
+
"""프로젝트 주간 진행현황 (%)"""
|
|
4364
|
+
weeklyProgress: Float
|
|
4365
|
+
}
|
|
4366
|
+
|
|
4367
|
+
"""Entity for ProjectReport"""
|
|
4368
|
+
type ProjectReport {
|
|
3286
4369
|
active: Boolean
|
|
4370
|
+
content: String
|
|
3287
4371
|
createdAt: DateTimeISO
|
|
3288
4372
|
creator: User
|
|
4373
|
+
date: DateTimeISO
|
|
3289
4374
|
deletedAt: DateTimeISO
|
|
3290
4375
|
description: String
|
|
3291
4376
|
domain: Domain
|
|
3292
|
-
endDate: DateTimeISO
|
|
3293
4377
|
id: ID!
|
|
3294
4378
|
name: String
|
|
3295
4379
|
params: String
|
|
3296
|
-
|
|
4380
|
+
project: Project!
|
|
3297
4381
|
state: String
|
|
3298
|
-
|
|
4382
|
+
supervisor: Supervisor!
|
|
3299
4383
|
thumbnail: String
|
|
3300
4384
|
updatedAt: DateTimeISO
|
|
3301
4385
|
updater: User
|
|
3302
4386
|
}
|
|
3303
4387
|
|
|
3304
|
-
type
|
|
3305
|
-
items: [
|
|
4388
|
+
type ProjectReportList {
|
|
4389
|
+
items: [ProjectReport!]!
|
|
3306
4390
|
total: Int!
|
|
3307
4391
|
}
|
|
3308
4392
|
|
|
3309
|
-
input
|
|
4393
|
+
input ProjectReportPatch {
|
|
3310
4394
|
active: Boolean
|
|
3311
4395
|
cuFlag: String
|
|
3312
4396
|
description: String
|
|
3313
4397
|
id: ID
|
|
3314
4398
|
name: String
|
|
3315
|
-
state:
|
|
4399
|
+
state: ProjectReportStatus
|
|
3316
4400
|
thumbnail: Upload
|
|
3317
4401
|
}
|
|
3318
4402
|
|
|
3319
|
-
"""state enumeration of a
|
|
3320
|
-
enum
|
|
4403
|
+
"""state enumeration of a projectReport"""
|
|
4404
|
+
enum ProjectReportStatus {
|
|
3321
4405
|
STATUS_A
|
|
3322
4406
|
STATUS_B
|
|
3323
4407
|
}
|
|
@@ -3327,11 +4411,18 @@ type PropertySpec {
|
|
|
3327
4411
|
name: String!
|
|
3328
4412
|
placeholder: String
|
|
3329
4413
|
property: Object
|
|
4414
|
+
styles: Object
|
|
3330
4415
|
type: String!
|
|
3331
4416
|
}
|
|
3332
4417
|
|
|
3333
4418
|
type Query {
|
|
3334
4419
|
APIDocCompletion(input: APIDocCompletionInput!): APIDocCompletionOutput!
|
|
4420
|
+
|
|
4421
|
+
"""To fetch a ActionPlan"""
|
|
4422
|
+
actionPlan(id: String!): ActionPlan
|
|
4423
|
+
|
|
4424
|
+
"""To fetch multiple ActionPlans"""
|
|
4425
|
+
actionPlans(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActionPlanList!
|
|
3335
4426
|
appBinding(id: String!): AppBinding!
|
|
3336
4427
|
appBindings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AppBindingList!
|
|
3337
4428
|
|
|
@@ -3405,23 +4496,83 @@ type Query {
|
|
|
3405
4496
|
|
|
3406
4497
|
"""To fetch Boards created by me"""
|
|
3407
4498
|
boardsCreatedByMe(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardList!
|
|
4499
|
+
|
|
4500
|
+
"""To fetch a building"""
|
|
4501
|
+
building(id: String!): Building
|
|
4502
|
+
|
|
4503
|
+
"""To fetch a BuildingComplex"""
|
|
4504
|
+
buildingBuildingComplex(id: String!): BuildingComplex
|
|
4505
|
+
|
|
4506
|
+
"""To fetch a BuildingInspection"""
|
|
4507
|
+
buildingInspection(id: String!): BuildingInspection
|
|
4508
|
+
|
|
4509
|
+
"""To fetch a BuildingInspection Summary"""
|
|
4510
|
+
buildingInspectionDateSummaryOfLevelAndPeriod(buildingLevelId: String!, endDate: String!, startDate: String!): [BuildingInspectionSummary!]
|
|
4511
|
+
|
|
4512
|
+
"""To fetch a BuildingInspection Summary"""
|
|
4513
|
+
buildingInspectionSummaryOfBuildingLevel(buildingLevelId: String!): BuildingInspectionSummary
|
|
4514
|
+
|
|
4515
|
+
"""프로젝트의 검측상태 별 카운트"""
|
|
4516
|
+
buildingInspectionSummaryOfProject(projectId: String!): BuildingInspectionSummary!
|
|
4517
|
+
|
|
4518
|
+
"""To fetch multiple BuildingInspections"""
|
|
4519
|
+
buildingInspections(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BuildingInspectionList!
|
|
4520
|
+
|
|
4521
|
+
"""To fetch multiple BuildingInspections"""
|
|
4522
|
+
buildingInspectionsOfBuildingLevel(params: BuildingInspectionsOfBuildingLevel!): BuildingInspectionList!
|
|
4523
|
+
|
|
4524
|
+
"""To fetch multiple BuildingInspections"""
|
|
4525
|
+
buildingInspectionsOfProject(params: BuildingInspectionsOfProject!): BuildingInspectionList!
|
|
4526
|
+
|
|
4527
|
+
"""To fetch a building level"""
|
|
4528
|
+
buildingLevel(id: String!): BuildingLevel
|
|
3408
4529
|
chatCompletion(input: ChatCompletionInput!): ChatCompletionOutput!
|
|
3409
4530
|
|
|
3410
|
-
"""
|
|
4531
|
+
"""
|
|
4532
|
+
Checks if the system is configured to provide a default password for new users.
|
|
4533
|
+
"""
|
|
3411
4534
|
checkDefaultPassword: Boolean!
|
|
3412
4535
|
|
|
3413
|
-
"""
|
|
4536
|
+
"""
|
|
4537
|
+
Determines whether the system provides a default password when creating a new user.
|
|
4538
|
+
"""
|
|
3414
4539
|
checkResettablePasswordToDefault: Boolean!
|
|
3415
4540
|
|
|
3416
4541
|
"""To fetch the preset of role for new user"""
|
|
3417
4542
|
checkRolePreset: [Role!]!
|
|
3418
4543
|
|
|
3419
|
-
"""
|
|
4544
|
+
"""
|
|
4545
|
+
Checks if the current authenticated user belongs to the current domain.
|
|
4546
|
+
"""
|
|
3420
4547
|
checkUserBelongsDomain: Boolean!
|
|
3421
4548
|
|
|
3422
|
-
"""
|
|
4549
|
+
"""Checks if a user with the given email address exists in the system."""
|
|
3423
4550
|
checkUserExistence(email: EmailAddress!): Boolean!
|
|
3424
4551
|
|
|
4552
|
+
"""To fetch a Checklist"""
|
|
4553
|
+
checklist(id: String!): Checklist
|
|
4554
|
+
|
|
4555
|
+
"""To fetch a ChecklistItem"""
|
|
4556
|
+
checklistItem(id: String!): ChecklistItem
|
|
4557
|
+
|
|
4558
|
+
"""To fetch multiple ChecklistItems"""
|
|
4559
|
+
checklistItems(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ChecklistItemList!
|
|
4560
|
+
|
|
4561
|
+
"""To fetch a ChecklistTemplateItem"""
|
|
4562
|
+
checklistTemplateItem(id: String!): ChecklistTemplateItem
|
|
4563
|
+
|
|
4564
|
+
"""To fetch multiple ChecklistTemplateItems"""
|
|
4565
|
+
checklistTemplateItems(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ChecklistTemplateItemList!
|
|
4566
|
+
|
|
4567
|
+
"""To fetch multiple ChecklistTemplates"""
|
|
4568
|
+
checklistTemplates(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ChecklistTemplateList!
|
|
4569
|
+
|
|
4570
|
+
"""To fetch multiple ChecklistTypes"""
|
|
4571
|
+
checklistTypes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ChecklistTypeList!
|
|
4572
|
+
|
|
4573
|
+
"""To fetch multiple Checklists"""
|
|
4574
|
+
checklists(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ChecklistList!
|
|
4575
|
+
|
|
3425
4576
|
"""To fetch common approval lines"""
|
|
3426
4577
|
commonApprovalLines(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
|
|
3427
4578
|
|
|
@@ -3449,6 +4600,15 @@ type Query {
|
|
|
3449
4600
|
"""To fetch multiple connector"""
|
|
3450
4601
|
connectors: ConnectorList!
|
|
3451
4602
|
|
|
4603
|
+
"""To fetch multiple ConstructionDetailTypes"""
|
|
4604
|
+
constructionDetailTypes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ConstructionDetailTypeList!
|
|
4605
|
+
|
|
4606
|
+
"""To fetch a ConstructionType"""
|
|
4607
|
+
constructionType(id: String!): ConstructionType
|
|
4608
|
+
|
|
4609
|
+
"""To fetch multiple ConstructionTypes"""
|
|
4610
|
+
constructionTypes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ConstructionTypeList!
|
|
4611
|
+
|
|
3452
4612
|
"""To fetch a Contact"""
|
|
3453
4613
|
contact(id: String!): Contact
|
|
3454
4614
|
|
|
@@ -3479,10 +4639,14 @@ type Query {
|
|
|
3479
4639
|
"""To fetch multiple appliance"""
|
|
3480
4640
|
edges(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApplianceList!
|
|
3481
4641
|
|
|
3482
|
-
"""
|
|
4642
|
+
"""
|
|
4643
|
+
Fetches a specific employee by their unique ID. Returns the employee object if found, or null if not found.
|
|
4644
|
+
"""
|
|
3483
4645
|
employee(id: String!): Employee
|
|
3484
4646
|
|
|
3485
|
-
"""
|
|
4647
|
+
"""
|
|
4648
|
+
Fetches a list of employees based on provided query parameters. Supports searching by name, control number, and alias.
|
|
4649
|
+
"""
|
|
3486
4650
|
employees(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EmployeeList!
|
|
3487
4651
|
|
|
3488
4652
|
"""To fetch multiple Entities"""
|
|
@@ -3531,11 +4695,29 @@ type Query {
|
|
|
3531
4695
|
i18nCompletion(input: i18nCompletionInput!): i18nCompletionOutput!
|
|
3532
4696
|
imageCompletion(input: ImageCompletionInput!): ImageCompletionOutput!
|
|
3533
4697
|
|
|
4698
|
+
"""To fetch a InspectionDrawingType"""
|
|
4699
|
+
inspectionDrawingType(id: String!): InspectionDrawingType
|
|
4700
|
+
|
|
4701
|
+
"""To fetch multiple InspectionDrawingTypes"""
|
|
4702
|
+
inspectionDrawingTypes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): InspectionDrawingTypeList!
|
|
4703
|
+
|
|
4704
|
+
"""To fetch a InspectionPart"""
|
|
4705
|
+
inspectionPart(id: String!): InspectionPart
|
|
4706
|
+
|
|
4707
|
+
"""To fetch multiple InspectionParts"""
|
|
4708
|
+
inspectionParts(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): InspectionPartList!
|
|
4709
|
+
|
|
3534
4710
|
"""To fetch integration Analyses"""
|
|
3535
4711
|
integrationAnalysis: Object!
|
|
3536
4712
|
invitation(email: EmailAddress!, reference: String!, type: String!): Invitation!
|
|
3537
4713
|
invitations(reference: String!, type: String!): InvitationList!
|
|
3538
4714
|
|
|
4715
|
+
"""To fetch a Issue"""
|
|
4716
|
+
issue(id: String!): Issue
|
|
4717
|
+
|
|
4718
|
+
"""To fetch multiple Issues"""
|
|
4719
|
+
issues(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): IssueList!
|
|
4720
|
+
|
|
3539
4721
|
"""To fetch a LiteMenu"""
|
|
3540
4722
|
liteMenu(id: String!): LiteMenu!
|
|
3541
4723
|
|
|
@@ -3545,6 +4727,9 @@ type Query {
|
|
|
3545
4727
|
"""To fetch multiple LoginHistories"""
|
|
3546
4728
|
loginHistories(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): LoginHistoryList!
|
|
3547
4729
|
|
|
4730
|
+
"""담당자 리스트"""
|
|
4731
|
+
managers: [ManagerOutput!]!
|
|
4732
|
+
|
|
3548
4733
|
"""To fetch a Menu"""
|
|
3549
4734
|
menu(id: String!): Menu!
|
|
3550
4735
|
|
|
@@ -3594,12 +4779,30 @@ type Query {
|
|
|
3594
4779
|
myLiteMenus(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): LiteMenuList!
|
|
3595
4780
|
myLoginHistories(limit: Float!): [LoginHistory!]!
|
|
3596
4781
|
|
|
4782
|
+
"""To fetch my own Menus"""
|
|
4783
|
+
myMenus(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuList!
|
|
4784
|
+
|
|
3597
4785
|
"""To fetch my notifications"""
|
|
3598
4786
|
myNotifications(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationList!
|
|
3599
4787
|
|
|
4788
|
+
"""To fetch a User's own PagePreference"""
|
|
4789
|
+
myPageAllPreferences(page: String!): [PagePreference!]
|
|
4790
|
+
|
|
4791
|
+
"""To fetch a User's own PagePreference"""
|
|
4792
|
+
myPagePreference(element: String!, page: String!): PagePreference
|
|
4793
|
+
|
|
4794
|
+
"""To fetch multiple PagePreferences"""
|
|
4795
|
+
myPagePreferences(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PagePreferenceList!
|
|
4796
|
+
|
|
3600
4797
|
"""To fetch roles of current user"""
|
|
3601
4798
|
myRoles: [Role!]!
|
|
3602
4799
|
|
|
4800
|
+
"""To fetch a User's own UserPreference"""
|
|
4801
|
+
myUserPreference(element: String!, key: String!): UserPreference
|
|
4802
|
+
|
|
4803
|
+
"""To fetch multiple UserPreferences"""
|
|
4804
|
+
myUserPreferences(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): UserPreferenceList!
|
|
4805
|
+
|
|
3603
4806
|
"""To fetch a Notification"""
|
|
3604
4807
|
notification(id: String!): Notification
|
|
3605
4808
|
|
|
@@ -3618,6 +4821,9 @@ type Query {
|
|
|
3618
4821
|
"""To fetch multiple Oauth2Clients"""
|
|
3619
4822
|
oauth2Clients(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): Oauth2ClientList!
|
|
3620
4823
|
|
|
4824
|
+
"""To fetch a PagePreference"""
|
|
4825
|
+
pagePreference(id: String!): PagePreference
|
|
4826
|
+
|
|
3621
4827
|
"""To fetch specific domain's CommonCodes by given name"""
|
|
3622
4828
|
partnerCommonCode(name: String!, partnerDomainId: String!): CommonCode!
|
|
3623
4829
|
|
|
@@ -3628,6 +4834,11 @@ type Query {
|
|
|
3628
4834
|
partnerSettings(filters: [Filter!]!, pagination: Pagination!, partnerDomain: ObjectRef!, sortings: [Sorting!]!): PartnerSettingList!
|
|
3629
4835
|
partners(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PartnerList!
|
|
3630
4836
|
|
|
4837
|
+
"""
|
|
4838
|
+
Retrieves the current password rule configuration for the system, such as required character types and minimum length.
|
|
4839
|
+
"""
|
|
4840
|
+
passwordRule: PasswordRule!
|
|
4841
|
+
|
|
3631
4842
|
"""To fetch a PayloadLog"""
|
|
3632
4843
|
payloadLog(id: String!): PayloadLog!
|
|
3633
4844
|
|
|
@@ -3643,6 +4854,9 @@ type Query {
|
|
|
3643
4854
|
"""To fetch multiple PlayGroups"""
|
|
3644
4855
|
playGroups(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PlayGroupList!
|
|
3645
4856
|
|
|
4857
|
+
"""To fetch a UserPreference"""
|
|
4858
|
+
preference(id: String!): UserPreference
|
|
4859
|
+
|
|
3646
4860
|
"""To fetch a PrinterDevice"""
|
|
3647
4861
|
printerDevice(id: String!): PrinterDevice!
|
|
3648
4862
|
|
|
@@ -3655,9 +4869,27 @@ type Query {
|
|
|
3655
4869
|
"""To fetch a Project"""
|
|
3656
4870
|
project(id: String!): Project
|
|
3657
4871
|
|
|
3658
|
-
"""To fetch
|
|
4872
|
+
"""To fetch a Project"""
|
|
4873
|
+
projectByBuildingComplexId(buildingComplexId: String!): Project
|
|
4874
|
+
|
|
4875
|
+
"""To fetch Project"""
|
|
4876
|
+
projectByBuildingLevelId(buildingLevelId: String!): Project!
|
|
4877
|
+
|
|
4878
|
+
"""To fetch a ProjectReport"""
|
|
4879
|
+
projectReport(id: String!): ProjectReport
|
|
4880
|
+
|
|
4881
|
+
"""To fetch multiple ProjectReports"""
|
|
4882
|
+
projectReports(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ProjectReportList!
|
|
4883
|
+
|
|
4884
|
+
"""프로젝트 리스트"""
|
|
3659
4885
|
projects(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ProjectList!
|
|
3660
4886
|
|
|
4887
|
+
"""To fetch a Resource"""
|
|
4888
|
+
resource(id: String!): Resource
|
|
4889
|
+
|
|
4890
|
+
"""To fetch multiple Resources"""
|
|
4891
|
+
resources(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ResourceList!
|
|
4892
|
+
|
|
3661
4893
|
"""To fetch role"""
|
|
3662
4894
|
role(name: String!): Role!
|
|
3663
4895
|
|
|
@@ -3707,9 +4939,21 @@ type Query {
|
|
|
3707
4939
|
"""To fetch multiple steps"""
|
|
3708
4940
|
steps(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): StepList!
|
|
3709
4941
|
|
|
3710
|
-
"""To fetch a
|
|
4942
|
+
"""To fetch a Supervisor"""
|
|
4943
|
+
supervisor(id: String!): Supervisor
|
|
4944
|
+
|
|
4945
|
+
"""To fetch multiple Supervisors"""
|
|
4946
|
+
supervisors(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): SupervisorList!
|
|
4947
|
+
|
|
4948
|
+
"""Fetch a single Task by its ID"""
|
|
3711
4949
|
task(id: String!): Task
|
|
3712
4950
|
|
|
4951
|
+
"""To fetch a TaskResource"""
|
|
4952
|
+
taskResource(id: String!): TaskResource
|
|
4953
|
+
|
|
4954
|
+
"""To fetch multiple TaskResources"""
|
|
4955
|
+
taskResources(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): TaskResourceList!
|
|
4956
|
+
|
|
3713
4957
|
"""To fetch a task-type"""
|
|
3714
4958
|
taskType(name: String!): TaskType!
|
|
3715
4959
|
|
|
@@ -3719,7 +4963,7 @@ type Query {
|
|
|
3719
4963
|
"""To fetch the connector from a task-type"""
|
|
3720
4964
|
taskTypesByConnection(connectionName: String!): TaskTypeList!
|
|
3721
4965
|
|
|
3722
|
-
"""
|
|
4966
|
+
"""Fetch multiple Tasks based on list parameters"""
|
|
3723
4967
|
tasks(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): TaskList!
|
|
3724
4968
|
|
|
3725
4969
|
"""To fetch multiple Terminologies"""
|
|
@@ -3734,7 +4978,7 @@ type Query {
|
|
|
3734
4978
|
"""To fetch multiple Themes"""
|
|
3735
4979
|
themes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ThemeList!
|
|
3736
4980
|
|
|
3737
|
-
"""
|
|
4981
|
+
"""Fetches a user by their email address within the current domain."""
|
|
3738
4982
|
user(email: EmailAddress!): User!
|
|
3739
4983
|
|
|
3740
4984
|
"""To fetch Menus by role"""
|
|
@@ -3743,9 +4987,17 @@ type Query {
|
|
|
3743
4987
|
"""To fetch roles of a user"""
|
|
3744
4988
|
userRoles(userId: String!): [UserRole!]!
|
|
3745
4989
|
|
|
3746
|
-
"""
|
|
4990
|
+
"""
|
|
4991
|
+
Fetches a list of users based on provided search parameters within the current domain.
|
|
4992
|
+
"""
|
|
3747
4993
|
users(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): UserList!
|
|
3748
4994
|
vendors: [Domain!]!
|
|
4995
|
+
|
|
4996
|
+
"""To fetch a WorkerType"""
|
|
4997
|
+
workerType(id: String!): WorkerType
|
|
4998
|
+
|
|
4999
|
+
"""To fetch multiple WorkerTypes"""
|
|
5000
|
+
workerTypes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): WorkerTypeList!
|
|
3749
5001
|
}
|
|
3750
5002
|
|
|
3751
5003
|
type RecipientItem {
|
|
@@ -3754,13 +5006,47 @@ type RecipientItem {
|
|
|
3754
5006
|
value: String
|
|
3755
5007
|
}
|
|
3756
5008
|
|
|
5009
|
+
"""자원"""
|
|
5010
|
+
type Resource {
|
|
5011
|
+
createdAt: DateTimeISO
|
|
5012
|
+
creator: User
|
|
5013
|
+
deletedAt: DateTimeISO
|
|
5014
|
+
domain: Domain
|
|
5015
|
+
id: ID!
|
|
5016
|
+
name: String!
|
|
5017
|
+
type: String!
|
|
5018
|
+
unit: String!
|
|
5019
|
+
updatedAt: DateTimeISO
|
|
5020
|
+
updater: User
|
|
5021
|
+
}
|
|
5022
|
+
|
|
5023
|
+
type ResourceList {
|
|
5024
|
+
items: [Resource!]!
|
|
5025
|
+
total: Int!
|
|
5026
|
+
}
|
|
5027
|
+
|
|
5028
|
+
input ResourcePatch {
|
|
5029
|
+
cuFlag: String
|
|
5030
|
+
id: ID
|
|
5031
|
+
name: String
|
|
5032
|
+
type: ResourceType
|
|
5033
|
+
unit: String
|
|
5034
|
+
}
|
|
5035
|
+
|
|
5036
|
+
"""자원 유형"""
|
|
5037
|
+
enum ResourceType {
|
|
5038
|
+
EQUIPMENT
|
|
5039
|
+
HUMAN
|
|
5040
|
+
MATERIAL
|
|
5041
|
+
}
|
|
5042
|
+
|
|
3757
5043
|
type Role {
|
|
3758
5044
|
createdAt: DateTimeISO
|
|
3759
5045
|
creator: User
|
|
3760
5046
|
description: String
|
|
3761
5047
|
domain: Domain!
|
|
3762
5048
|
id: ID!
|
|
3763
|
-
name: String
|
|
5049
|
+
name: String
|
|
3764
5050
|
privileges: [Privilege!]
|
|
3765
5051
|
updatedAt: DateTimeISO
|
|
3766
5052
|
updater: User
|
|
@@ -3796,7 +5082,7 @@ type Scenario {
|
|
|
3796
5082
|
createdAt: DateTimeISO
|
|
3797
5083
|
creator: User
|
|
3798
5084
|
description: String
|
|
3799
|
-
domain: Domain
|
|
5085
|
+
domain: Domain!
|
|
3800
5086
|
id: ID!
|
|
3801
5087
|
instances: [ScenarioInstance!]
|
|
3802
5088
|
name: String!
|
|
@@ -3805,11 +5091,13 @@ type Scenario {
|
|
|
3805
5091
|
"""accessible and executable system-wide"""
|
|
3806
5092
|
public: Boolean
|
|
3807
5093
|
publishTags: [Connection!]!
|
|
5094
|
+
role: Role
|
|
3808
5095
|
schedule: String
|
|
3809
5096
|
scheduleId: String
|
|
3810
5097
|
state: String
|
|
3811
5098
|
steps: [Step!]
|
|
3812
5099
|
timezone: String
|
|
5100
|
+
ttl: Float
|
|
3813
5101
|
type: String
|
|
3814
5102
|
updatedAt: DateTimeISO
|
|
3815
5103
|
updater: User
|
|
@@ -3842,6 +5130,17 @@ type ScenarioInstanceProgress {
|
|
|
3842
5130
|
steps: Int!
|
|
3843
5131
|
}
|
|
3844
5132
|
|
|
5133
|
+
type ScenarioInstanceRunResult {
|
|
5134
|
+
data: Object
|
|
5135
|
+
instanceName: String
|
|
5136
|
+
message: String
|
|
5137
|
+
result: Object
|
|
5138
|
+
scenarioName: String
|
|
5139
|
+
state: String
|
|
5140
|
+
timestamp: DateTimeISO
|
|
5141
|
+
variables: Object
|
|
5142
|
+
}
|
|
5143
|
+
|
|
3845
5144
|
type ScenarioInstanceState {
|
|
3846
5145
|
data: Object
|
|
3847
5146
|
domain: Domain
|
|
@@ -3874,10 +5173,11 @@ input ScenarioPatch {
|
|
|
3874
5173
|
description: String
|
|
3875
5174
|
id: ID
|
|
3876
5175
|
name: String
|
|
3877
|
-
|
|
5176
|
+
role: ObjectRef
|
|
3878
5177
|
schedule: String
|
|
3879
5178
|
steps: [StepPatch!]
|
|
3880
5179
|
timezone: String
|
|
5180
|
+
ttl: Float
|
|
3881
5181
|
type: String
|
|
3882
5182
|
}
|
|
3883
5183
|
|
|
@@ -3892,7 +5192,7 @@ type Setting {
|
|
|
3892
5192
|
createdAt: DateTimeISO
|
|
3893
5193
|
creator: User
|
|
3894
5194
|
description: String
|
|
3895
|
-
domain: Domain
|
|
5195
|
+
domain: Domain!
|
|
3896
5196
|
id: ID!
|
|
3897
5197
|
name: String!
|
|
3898
5198
|
updatedAt: DateTimeISO
|
|
@@ -3926,36 +5226,113 @@ input Sorting {
|
|
|
3926
5226
|
|
|
3927
5227
|
"""Entity for StateRegister"""
|
|
3928
5228
|
type StateRegister {
|
|
5229
|
+
"""Creation time of the state register"""
|
|
3929
5230
|
createdAt: DateTimeISO
|
|
5231
|
+
|
|
5232
|
+
"""User who created the state register"""
|
|
3930
5233
|
creator: User
|
|
5234
|
+
|
|
5235
|
+
"""ID of the user who created the state register"""
|
|
5236
|
+
creatorId: String
|
|
5237
|
+
|
|
5238
|
+
"""Description of the state register"""
|
|
3931
5239
|
description: String
|
|
3932
|
-
|
|
5240
|
+
|
|
5241
|
+
"""Associated domain for the state register"""
|
|
5242
|
+
domain: Domain!
|
|
5243
|
+
|
|
5244
|
+
"""ID of the associated domain"""
|
|
5245
|
+
domainId: String!
|
|
5246
|
+
|
|
5247
|
+
"""Group name for the state register"""
|
|
5248
|
+
group: String
|
|
3933
5249
|
id: ID!
|
|
5250
|
+
|
|
5251
|
+
"""Name of the state register"""
|
|
3934
5252
|
name: String
|
|
5253
|
+
|
|
5254
|
+
"""Number of decimal places if the state is a number type"""
|
|
5255
|
+
place: String
|
|
5256
|
+
|
|
5257
|
+
"""
|
|
5258
|
+
Reference to an external entity or data, used as a flexible foreign key
|
|
5259
|
+
"""
|
|
3935
5260
|
refBy: String
|
|
5261
|
+
|
|
5262
|
+
"""Current state value"""
|
|
3936
5263
|
state: Object
|
|
5264
|
+
|
|
5265
|
+
"""Time to live for the state value in seconds"""
|
|
3937
5266
|
ttl: Int
|
|
5267
|
+
|
|
5268
|
+
"""Type of the state"""
|
|
3938
5269
|
type: String
|
|
5270
|
+
|
|
5271
|
+
"""Unit of the state value"""
|
|
5272
|
+
unit: String
|
|
5273
|
+
|
|
5274
|
+
"""Last update time of the state register"""
|
|
3939
5275
|
updatedAt: DateTimeISO
|
|
5276
|
+
|
|
5277
|
+
"""User who last updated the state register"""
|
|
3940
5278
|
updater: User
|
|
5279
|
+
|
|
5280
|
+
"""ID of the user who last updated the state register"""
|
|
5281
|
+
updaterId: String
|
|
5282
|
+
|
|
5283
|
+
"""User who wrote the state"""
|
|
3941
5284
|
writer: User
|
|
5285
|
+
|
|
5286
|
+
"""ID of the user who wrote the state"""
|
|
5287
|
+
writerId: String
|
|
5288
|
+
|
|
5289
|
+
"""Time when the state was recorded"""
|
|
3942
5290
|
wroteAt: DateTimeISO
|
|
3943
5291
|
}
|
|
3944
5292
|
|
|
3945
5293
|
type StateRegisterList {
|
|
5294
|
+
"""List of state registers"""
|
|
3946
5295
|
items: [StateRegister!]!
|
|
5296
|
+
|
|
5297
|
+
"""Total number of state registers"""
|
|
3947
5298
|
total: Int!
|
|
3948
5299
|
}
|
|
3949
5300
|
|
|
3950
5301
|
input StateRegisterPatch {
|
|
5302
|
+
"""Flag indicating create/update operations"""
|
|
3951
5303
|
cuFlag: String
|
|
5304
|
+
|
|
5305
|
+
"""Description of the state register"""
|
|
3952
5306
|
description: String
|
|
5307
|
+
|
|
5308
|
+
"""Group name for the state register"""
|
|
5309
|
+
group: String
|
|
5310
|
+
|
|
5311
|
+
"""ID of the state register"""
|
|
3953
5312
|
id: ID
|
|
5313
|
+
|
|
5314
|
+
"""Name of the state register"""
|
|
3954
5315
|
name: String
|
|
5316
|
+
|
|
5317
|
+
"""Number of decimal places if the state is a number type"""
|
|
5318
|
+
place: String
|
|
5319
|
+
|
|
5320
|
+
"""
|
|
5321
|
+
Reference to an external entity or data, used as a flexible foreign key
|
|
5322
|
+
"""
|
|
3955
5323
|
refBy: String
|
|
5324
|
+
|
|
5325
|
+
"""Current state value"""
|
|
3956
5326
|
state: Object
|
|
5327
|
+
|
|
5328
|
+
"""Time to live for the state value in seconds"""
|
|
3957
5329
|
ttl: Int
|
|
5330
|
+
|
|
5331
|
+
"""Type of the state"""
|
|
3958
5332
|
type: String
|
|
5333
|
+
|
|
5334
|
+
"""Unit of the state value"""
|
|
5335
|
+
unit: String
|
|
3959
5336
|
}
|
|
3960
5337
|
|
|
3961
5338
|
type Step {
|
|
@@ -4012,48 +5389,134 @@ type Subscription {
|
|
|
4012
5389
|
scenarioQueueState: ScenarioQueueState!
|
|
4013
5390
|
}
|
|
4014
5391
|
|
|
4015
|
-
"""Entity for
|
|
4016
|
-
type
|
|
5392
|
+
"""Entity for Supervisor"""
|
|
5393
|
+
type Supervisor {
|
|
4017
5394
|
active: Boolean
|
|
4018
5395
|
createdAt: DateTimeISO
|
|
4019
5396
|
creator: User
|
|
4020
5397
|
deletedAt: DateTimeISO
|
|
4021
|
-
dependencies: [Task!]
|
|
4022
5398
|
description: String
|
|
4023
5399
|
domain: Domain
|
|
4024
|
-
|
|
5400
|
+
email: String
|
|
4025
5401
|
id: ID!
|
|
4026
5402
|
name: String
|
|
4027
5403
|
params: String
|
|
4028
|
-
|
|
4029
|
-
|
|
5404
|
+
phoneNumber: String
|
|
5405
|
+
reports: [ProjectReport!]!
|
|
4030
5406
|
state: String
|
|
4031
5407
|
thumbnail: String
|
|
4032
5408
|
updatedAt: DateTimeISO
|
|
4033
5409
|
updater: User
|
|
4034
5410
|
}
|
|
4035
5411
|
|
|
4036
|
-
type
|
|
4037
|
-
items: [
|
|
5412
|
+
type SupervisorList {
|
|
5413
|
+
items: [Supervisor!]!
|
|
4038
5414
|
total: Int!
|
|
4039
5415
|
}
|
|
4040
5416
|
|
|
4041
|
-
input
|
|
5417
|
+
input SupervisorPatch {
|
|
4042
5418
|
active: Boolean
|
|
4043
5419
|
cuFlag: String
|
|
4044
5420
|
description: String
|
|
4045
5421
|
id: ID
|
|
4046
5422
|
name: String
|
|
4047
|
-
state:
|
|
5423
|
+
state: SupervisorStatus
|
|
4048
5424
|
thumbnail: Upload
|
|
4049
5425
|
}
|
|
4050
5426
|
|
|
4051
|
-
"""state enumeration of a
|
|
4052
|
-
enum
|
|
5427
|
+
"""state enumeration of a supervisor"""
|
|
5428
|
+
enum SupervisorStatus {
|
|
4053
5429
|
STATUS_A
|
|
4054
5430
|
STATUS_B
|
|
4055
5431
|
}
|
|
4056
5432
|
|
|
5433
|
+
"""공정표 작업 정보"""
|
|
5434
|
+
type Task {
|
|
5435
|
+
children(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): [Task!]
|
|
5436
|
+
code: String!
|
|
5437
|
+
createdAt: DateTimeISO
|
|
5438
|
+
creator: User
|
|
5439
|
+
deletedAt: DateTimeISO
|
|
5440
|
+
dependsOn: String
|
|
5441
|
+
duration: Float
|
|
5442
|
+
endDate: DateTimeISO
|
|
5443
|
+
id: ID!
|
|
5444
|
+
|
|
5445
|
+
"""Calculate the duration of the task in days"""
|
|
5446
|
+
length: String
|
|
5447
|
+
name: String
|
|
5448
|
+
parent: Task
|
|
5449
|
+
progress: Float
|
|
5450
|
+
project: Project!
|
|
5451
|
+
|
|
5452
|
+
"""Return the simple list of resources allocated to the task"""
|
|
5453
|
+
resources: [DigestedResource!]!
|
|
5454
|
+
startDate: DateTimeISO
|
|
5455
|
+
tags: Object
|
|
5456
|
+
taskResources: [TaskResource!]
|
|
5457
|
+
type: String
|
|
5458
|
+
updatedAt: DateTimeISO
|
|
5459
|
+
updater: User
|
|
5460
|
+
}
|
|
5461
|
+
|
|
5462
|
+
type TaskList {
|
|
5463
|
+
"""작업 리스트 항목들"""
|
|
5464
|
+
items: [Task!]!
|
|
5465
|
+
|
|
5466
|
+
"""전체 작업 수"""
|
|
5467
|
+
total: Int!
|
|
5468
|
+
}
|
|
5469
|
+
|
|
5470
|
+
input TaskPatch {
|
|
5471
|
+
"""작업이 활성 상태인지 여부 (선택 사항)"""
|
|
5472
|
+
active: Boolean
|
|
5473
|
+
|
|
5474
|
+
"""프로젝트 내에서 유니크한 작업 코드 (선택 사항)"""
|
|
5475
|
+
code: String
|
|
5476
|
+
|
|
5477
|
+
"""생성('+') 또는 수정('M') 플래그 (선택 사항)"""
|
|
5478
|
+
cuFlag: String
|
|
5479
|
+
|
|
5480
|
+
"""작업에 대한 설명 (선택 사항)"""
|
|
5481
|
+
description: String
|
|
5482
|
+
|
|
5483
|
+
"""수정할 작업의 ID (선택 사항)"""
|
|
5484
|
+
id: ID
|
|
5485
|
+
|
|
5486
|
+
"""작업의 이름 (선택 사항)"""
|
|
5487
|
+
name: String
|
|
5488
|
+
|
|
5489
|
+
"""부모 작업, 해당 작업이 하위 작업인 경우 (선택 사항)"""
|
|
5490
|
+
parent: ObjectRefForTask
|
|
5491
|
+
|
|
5492
|
+
"""작업이 속한 프로젝트 (선택 사항)"""
|
|
5493
|
+
project: ObjectRefForProject
|
|
5494
|
+
}
|
|
5495
|
+
|
|
5496
|
+
"""작업에 소요되는 자원"""
|
|
5497
|
+
type TaskResource {
|
|
5498
|
+
createdAt: DateTimeISO
|
|
5499
|
+
deletedAt: DateTimeISO
|
|
5500
|
+
id: ID!
|
|
5501
|
+
quantity: Float!
|
|
5502
|
+
resource: Resource!
|
|
5503
|
+
task: Task!
|
|
5504
|
+
updatedAt: DateTimeISO
|
|
5505
|
+
}
|
|
5506
|
+
|
|
5507
|
+
type TaskResourceList {
|
|
5508
|
+
items: [TaskResource!]!
|
|
5509
|
+
total: Int!
|
|
5510
|
+
}
|
|
5511
|
+
|
|
5512
|
+
input TaskResourcePatch {
|
|
5513
|
+
cuFlag: String
|
|
5514
|
+
id: ID
|
|
5515
|
+
quantity: Float
|
|
5516
|
+
resourceId: ID
|
|
5517
|
+
taskId: ID
|
|
5518
|
+
}
|
|
5519
|
+
|
|
4057
5520
|
type TaskType {
|
|
4058
5521
|
connectorFree: Boolean
|
|
4059
5522
|
description: String
|
|
@@ -4071,13 +5534,15 @@ type TaskTypeList {
|
|
|
4071
5534
|
type Terminology {
|
|
4072
5535
|
category: String!
|
|
4073
5536
|
createdAt: DateTimeISO
|
|
5537
|
+
creator: User
|
|
4074
5538
|
description: String
|
|
4075
5539
|
display: String!
|
|
4076
|
-
domain: Domain
|
|
5540
|
+
domain: Domain!
|
|
4077
5541
|
id: ID!
|
|
4078
5542
|
locale: String!
|
|
4079
5543
|
name: String!
|
|
4080
5544
|
updatedAt: DateTimeISO
|
|
5545
|
+
updater: User
|
|
4081
5546
|
}
|
|
4082
5547
|
|
|
4083
5548
|
type TerminologyList {
|
|
@@ -4086,12 +5551,12 @@ type TerminologyList {
|
|
|
4086
5551
|
}
|
|
4087
5552
|
|
|
4088
5553
|
input TerminologyPatch {
|
|
4089
|
-
category: String
|
|
5554
|
+
category: String
|
|
4090
5555
|
cuFlag: String
|
|
4091
5556
|
description: String
|
|
4092
|
-
display: String
|
|
5557
|
+
display: String
|
|
4093
5558
|
id: ID
|
|
4094
|
-
locale: String
|
|
5559
|
+
locale: String
|
|
4095
5560
|
name: String
|
|
4096
5561
|
}
|
|
4097
5562
|
|
|
@@ -4102,7 +5567,7 @@ type Theme {
|
|
|
4102
5567
|
creator: User
|
|
4103
5568
|
deletedAt: DateTimeISO
|
|
4104
5569
|
description: String
|
|
4105
|
-
domain: Domain
|
|
5570
|
+
domain: Domain!
|
|
4106
5571
|
id: ID!
|
|
4107
5572
|
name: String
|
|
4108
5573
|
type: String
|
|
@@ -4126,6 +5591,17 @@ input ThemePatch {
|
|
|
4126
5591
|
value: Object
|
|
4127
5592
|
}
|
|
4128
5593
|
|
|
5594
|
+
input UpdateBuildingInspectionDrawingMarker {
|
|
5595
|
+
drawingMarker: String
|
|
5596
|
+
id: String!
|
|
5597
|
+
}
|
|
5598
|
+
|
|
5599
|
+
input UpdateBuildingInspectionSubmitType {
|
|
5600
|
+
checklist: ChecklistSubmitInputType!
|
|
5601
|
+
checklistItem: [ChecklistItemSubmitInputType!]!
|
|
5602
|
+
id: String!
|
|
5603
|
+
}
|
|
5604
|
+
|
|
4129
5605
|
"""The `Upload` scalar type represents a file upload."""
|
|
4130
5606
|
scalar Upload
|
|
4131
5607
|
|
|
@@ -4142,7 +5618,7 @@ type User {
|
|
|
4142
5618
|
email: EmailAddress!
|
|
4143
5619
|
id: ID!
|
|
4144
5620
|
locale: String
|
|
4145
|
-
name: String
|
|
5621
|
+
name: String
|
|
4146
5622
|
owner: Boolean
|
|
4147
5623
|
reference: String
|
|
4148
5624
|
roles: [Role!]!
|
|
@@ -4172,6 +5648,32 @@ input UserPatch {
|
|
|
4172
5648
|
userType: String
|
|
4173
5649
|
}
|
|
4174
5650
|
|
|
5651
|
+
"""Entity for UserPreference"""
|
|
5652
|
+
type UserPreference {
|
|
5653
|
+
createdAt: DateTimeISO
|
|
5654
|
+
creator: User
|
|
5655
|
+
domain: Domain
|
|
5656
|
+
id: ID!
|
|
5657
|
+
key: String
|
|
5658
|
+
preference: Object
|
|
5659
|
+
updatedAt: DateTimeISO
|
|
5660
|
+
updater: User
|
|
5661
|
+
user: User!
|
|
5662
|
+
}
|
|
5663
|
+
|
|
5664
|
+
type UserPreferenceList {
|
|
5665
|
+
items: [UserPreference!]!
|
|
5666
|
+
total: Int!
|
|
5667
|
+
}
|
|
5668
|
+
|
|
5669
|
+
input UserPreferencePatch {
|
|
5670
|
+
cuFlag: String
|
|
5671
|
+
id: ID
|
|
5672
|
+
key: String!
|
|
5673
|
+
preference: Object!
|
|
5674
|
+
user: ObjectRef!
|
|
5675
|
+
}
|
|
5676
|
+
|
|
4175
5677
|
type UserRole {
|
|
4176
5678
|
assigned: Boolean
|
|
4177
5679
|
description: String
|
|
@@ -4183,13 +5685,38 @@ type UserRole {
|
|
|
4183
5685
|
type UsersAuthProviders {
|
|
4184
5686
|
authProvider: AuthProvider
|
|
4185
5687
|
createdAt: DateTimeISO
|
|
4186
|
-
domain: Domain
|
|
5688
|
+
domain: Domain!
|
|
4187
5689
|
id: ID!
|
|
4188
5690
|
ssoId: String
|
|
4189
5691
|
updatedAt: DateTimeISO
|
|
4190
5692
|
user: User
|
|
4191
5693
|
}
|
|
4192
5694
|
|
|
5695
|
+
"""작업자 타입"""
|
|
5696
|
+
type WorkerType {
|
|
5697
|
+
createdAt: DateTimeISO
|
|
5698
|
+
creator: User
|
|
5699
|
+
deletedAt: DateTimeISO
|
|
5700
|
+
description: String
|
|
5701
|
+
domain: Domain
|
|
5702
|
+
id: ID!
|
|
5703
|
+
name: String!
|
|
5704
|
+
updatedAt: DateTimeISO
|
|
5705
|
+
updater: User
|
|
5706
|
+
}
|
|
5707
|
+
|
|
5708
|
+
type WorkerTypeList {
|
|
5709
|
+
items: [WorkerType!]!
|
|
5710
|
+
total: Int!
|
|
5711
|
+
}
|
|
5712
|
+
|
|
5713
|
+
input WorkerTypePatch {
|
|
5714
|
+
cuFlag: String!
|
|
5715
|
+
description: String
|
|
5716
|
+
id: ID
|
|
5717
|
+
name: String
|
|
5718
|
+
}
|
|
5719
|
+
|
|
4193
5720
|
input i18nCompletionInput {
|
|
4194
5721
|
json: String!
|
|
4195
5722
|
}
|