@dssp/dssp 0.0.9 → 0.0.11
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/.dockerignore +13 -0
- package/_index.html +1 -23
- package/dist-client/bootstrap.js +137 -8
- package/dist-client/bootstrap.js.map +1 -1
- package/dist-client/themes/dark.css +22 -22
- package/dist-client/themes/light.css +22 -22
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +54 -54
- package/schema.graphql +1005 -144
- package/views/auth-page.html +0 -13
- package/views/public/home.html +0 -15
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
|
|
|
@@ -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"""
|
|
@@ -511,54 +553,60 @@ input BuildingComplexPatch {
|
|
|
511
553
|
supervisoryCompany: String
|
|
512
554
|
}
|
|
513
555
|
|
|
514
|
-
"""시공 검측 (층별 도면의 검측 리스트)"""
|
|
515
556
|
type BuildingInspection {
|
|
516
|
-
attachments: [Attachment!]
|
|
517
557
|
attatchments: [Attachment!]!
|
|
518
|
-
|
|
558
|
+
buildingInspectionSummary: BuildingInspectionSummary!
|
|
519
559
|
buildingLevel: BuildingLevel
|
|
560
|
+
checklist: Checklist
|
|
520
561
|
createdAt: DateTimeISO
|
|
521
562
|
creator: User
|
|
522
563
|
deletedAt: DateTimeISO
|
|
523
|
-
|
|
564
|
+
drawingMarker: String
|
|
524
565
|
id: ID!
|
|
525
|
-
|
|
526
|
-
indexY: Float
|
|
566
|
+
requestDate: DateTimeISO
|
|
527
567
|
status: String
|
|
528
568
|
updatedAt: DateTimeISO
|
|
529
569
|
updater: User
|
|
530
570
|
}
|
|
531
571
|
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
createdAt: DateTimeISO
|
|
536
|
-
creator: User
|
|
537
|
-
deletedAt: DateTimeISO
|
|
538
|
-
id: ID!
|
|
539
|
-
updatedAt: DateTimeISO
|
|
540
|
-
updater: User
|
|
572
|
+
type BuildingInspectionList {
|
|
573
|
+
items: [BuildingInspection!]!
|
|
574
|
+
total: Int!
|
|
541
575
|
}
|
|
542
576
|
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
577
|
+
type BuildingInspectionSummary {
|
|
578
|
+
"""검측 실패 수"""
|
|
579
|
+
fail: Int!
|
|
580
|
+
|
|
581
|
+
"""검측 통과 수"""
|
|
582
|
+
pass: Int!
|
|
583
|
+
|
|
584
|
+
"""검측 요청 수"""
|
|
585
|
+
request: Int!
|
|
586
|
+
|
|
587
|
+
"""검측 대기 수"""
|
|
588
|
+
wait: Int!
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
input BuildingInspectionsOfBuildingLevel {
|
|
592
|
+
buildingLevelId: String!
|
|
593
|
+
limit: Float
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
input BuildingInspectionsOfProject {
|
|
597
|
+
limit: Float
|
|
598
|
+
projectId: String!
|
|
549
599
|
}
|
|
550
600
|
|
|
551
601
|
"""층 정보"""
|
|
552
602
|
type BuildingLevel {
|
|
553
603
|
building: Building!
|
|
554
|
-
buildingInspections: [BuildingInspection!]
|
|
555
604
|
createdAt: DateTimeISO
|
|
556
605
|
creator: User
|
|
557
606
|
deletedAt: DateTimeISO
|
|
558
607
|
elevationDrawing: Attachment
|
|
559
608
|
elevationDrawingThumbnail: String
|
|
560
609
|
floor: Float!
|
|
561
|
-
floorInspectionSummary: FloorInspectionSummary!
|
|
562
610
|
id: ID!
|
|
563
611
|
mainDrawing: Attachment
|
|
564
612
|
mainDrawingImage: String
|
|
@@ -570,7 +618,6 @@ type BuildingLevel {
|
|
|
570
618
|
}
|
|
571
619
|
|
|
572
620
|
input BuildingLevelPatch {
|
|
573
|
-
buildingInspections: [BuildingInspectionPatch!]
|
|
574
621
|
elevationDrawingUpload: Upload
|
|
575
622
|
floor: Float!
|
|
576
623
|
id: ID
|
|
@@ -594,28 +641,82 @@ type ChatCompletionOutput {
|
|
|
594
641
|
message: String
|
|
595
642
|
}
|
|
596
643
|
|
|
597
|
-
|
|
598
|
-
|
|
644
|
+
type Checklist {
|
|
645
|
+
buildingInspection: BuildingInspection!
|
|
646
|
+
checklistItems: [ChecklistItem!]!
|
|
647
|
+
constructionDetailType: String
|
|
648
|
+
constructionInspectionDate: DateTimeISO
|
|
649
|
+
constructionType: String
|
|
650
|
+
createdAt: DateTimeISO
|
|
651
|
+
creator: User
|
|
652
|
+
deletedAt: DateTimeISO
|
|
653
|
+
documentNo: String
|
|
654
|
+
id: ID!
|
|
655
|
+
inspectionDrawingType: String
|
|
656
|
+
inspectionParts: [String!]
|
|
657
|
+
location: String
|
|
658
|
+
name: String
|
|
659
|
+
overallConstructorSignature: String
|
|
660
|
+
overallSupervisorySignature: String
|
|
661
|
+
supervisorInspectionDate: DateTimeISO
|
|
662
|
+
task: Task!
|
|
663
|
+
taskConstructorSignature: String
|
|
664
|
+
taskSupervisorySignature: String
|
|
665
|
+
updatedAt: DateTimeISO
|
|
666
|
+
updater: User
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
input ChecklistInputType {
|
|
670
|
+
constructionDetailType: String!
|
|
671
|
+
constructionType: String!
|
|
672
|
+
inspectionDrawingType: String!
|
|
673
|
+
inspectionParts: [String!]!
|
|
674
|
+
location: String!
|
|
675
|
+
name: String!
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
type ChecklistItem {
|
|
599
679
|
checklist: Checklist
|
|
680
|
+
comment: String
|
|
681
|
+
constructionConfirmStatus: String
|
|
600
682
|
createdAt: DateTimeISO
|
|
601
683
|
creator: User
|
|
602
684
|
deletedAt: DateTimeISO
|
|
685
|
+
detailType: String!
|
|
603
686
|
id: ID!
|
|
604
|
-
|
|
687
|
+
inspctionCriteria: String
|
|
688
|
+
mainType: String!
|
|
605
689
|
name: String
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
thumbnail: String!
|
|
690
|
+
sequence: Int
|
|
691
|
+
supervisoryConfirmStatus: String
|
|
609
692
|
updatedAt: DateTimeISO
|
|
610
693
|
updater: User
|
|
611
694
|
}
|
|
612
695
|
|
|
613
|
-
|
|
614
|
-
|
|
696
|
+
input ChecklistItemInputType {
|
|
697
|
+
detailType: String!
|
|
698
|
+
inspctionCriteria: String
|
|
699
|
+
mainType: String!
|
|
700
|
+
name: String!
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
type ChecklistItemList {
|
|
704
|
+
items: [ChecklistItem!]!
|
|
705
|
+
total: Int!
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
input ChecklistItemSubmitInputType {
|
|
709
|
+
constructionConfirmStatus: String
|
|
710
|
+
id: String!
|
|
711
|
+
supervisoryConfirmStatus: String
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
type ChecklistList {
|
|
715
|
+
items: [Checklist!]!
|
|
615
716
|
total: Int!
|
|
616
717
|
}
|
|
617
718
|
|
|
618
|
-
input
|
|
719
|
+
input ChecklistPatch {
|
|
619
720
|
active: Boolean
|
|
620
721
|
cuFlag: String
|
|
621
722
|
description: String
|
|
@@ -623,42 +724,90 @@ input CheckItemPatch {
|
|
|
623
724
|
name: String
|
|
624
725
|
}
|
|
625
726
|
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
727
|
+
input ChecklistSubmitInputType {
|
|
728
|
+
id: String!
|
|
729
|
+
overallConstructorSignature: String
|
|
730
|
+
overallSupervisorySignature: String
|
|
731
|
+
taskConstructorSignature: String
|
|
732
|
+
taskSupervisorySignature: String
|
|
733
|
+
}
|
|
734
|
+
|
|
735
|
+
type ChecklistTemplate {
|
|
736
|
+
checklistTemplateItems: [ChecklistTemplateItem!]!
|
|
630
737
|
createdAt: DateTimeISO
|
|
631
738
|
creator: User
|
|
632
739
|
deletedAt: DateTimeISO
|
|
633
|
-
|
|
740
|
+
domain: Domain
|
|
634
741
|
id: ID!
|
|
635
|
-
location: String
|
|
636
742
|
name: String
|
|
637
|
-
overallConstructionSignature: String
|
|
638
|
-
overallSupervisorySignature: String
|
|
639
|
-
part: String
|
|
640
|
-
supervisorInspectorDate: DateTimeISO
|
|
641
|
-
task: Task!
|
|
642
|
-
taskConstructionSignature: String
|
|
643
|
-
taskSupervisorySignature: String
|
|
644
|
-
thumbnail: String!
|
|
645
743
|
updatedAt: DateTimeISO
|
|
646
744
|
updater: User
|
|
647
745
|
}
|
|
648
746
|
|
|
649
|
-
type
|
|
650
|
-
|
|
747
|
+
type ChecklistTemplateItem {
|
|
748
|
+
checklistTemplate: ChecklistTemplate
|
|
749
|
+
createdAt: DateTimeISO
|
|
750
|
+
creator: User
|
|
751
|
+
detailType: String!
|
|
752
|
+
id: ID!
|
|
753
|
+
inspctionCriteria: String
|
|
754
|
+
mainType: String!
|
|
755
|
+
name: String!
|
|
756
|
+
sequence: Int
|
|
757
|
+
updatedAt: DateTimeISO
|
|
758
|
+
updater: User
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
type ChecklistTemplateItemList {
|
|
762
|
+
items: [ChecklistTemplateItem!]!
|
|
651
763
|
total: Int!
|
|
652
764
|
}
|
|
653
765
|
|
|
654
|
-
input
|
|
655
|
-
|
|
766
|
+
input ChecklistTemplateItemPatch {
|
|
767
|
+
checklistTemplateId: String
|
|
768
|
+
cuFlag: String
|
|
769
|
+
detailType: String
|
|
770
|
+
id: ID
|
|
771
|
+
inspctionCriteria: String
|
|
772
|
+
mainType: String
|
|
773
|
+
name: String
|
|
774
|
+
sequence: Int
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
type ChecklistTemplateList {
|
|
778
|
+
items: [ChecklistTemplate!]!
|
|
779
|
+
total: Int!
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
input ChecklistTemplatePatch {
|
|
656
783
|
cuFlag: String
|
|
657
|
-
description: String
|
|
658
784
|
id: ID
|
|
659
785
|
name: String
|
|
660
786
|
}
|
|
661
787
|
|
|
788
|
+
type ChecklistType {
|
|
789
|
+
createdAt: DateTimeISO
|
|
790
|
+
creator: User
|
|
791
|
+
detailType: String!
|
|
792
|
+
domain: Domain
|
|
793
|
+
id: ID!
|
|
794
|
+
mainType: String!
|
|
795
|
+
updatedAt: DateTimeISO
|
|
796
|
+
updater: User
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
type ChecklistTypeList {
|
|
800
|
+
items: [ChecklistType!]!
|
|
801
|
+
total: Int!
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
input ChecklistTypePatch {
|
|
805
|
+
cuFlag: String
|
|
806
|
+
detailType: String
|
|
807
|
+
id: ID
|
|
808
|
+
mainType: String
|
|
809
|
+
}
|
|
810
|
+
|
|
662
811
|
input CodeDecipherInput {
|
|
663
812
|
code: String!
|
|
664
813
|
language: String
|
|
@@ -783,8 +932,33 @@ type ConnectorType {
|
|
|
783
932
|
taskPrefixes: [String!]
|
|
784
933
|
}
|
|
785
934
|
|
|
935
|
+
"""세부 공종 타입"""
|
|
936
|
+
type ConstructionDetailType {
|
|
937
|
+
constructionType: ConstructionType
|
|
938
|
+
createdAt: DateTimeISO
|
|
939
|
+
creator: User
|
|
940
|
+
id: ID!
|
|
941
|
+
name: String
|
|
942
|
+
sequence: Int
|
|
943
|
+
updatedAt: DateTimeISO
|
|
944
|
+
updater: User
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
type ConstructionDetailTypeList {
|
|
948
|
+
items: [ConstructionDetailType!]!
|
|
949
|
+
total: Int!
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
input ConstructionDetailTypePatch {
|
|
953
|
+
cuFlag: String
|
|
954
|
+
id: ID
|
|
955
|
+
name: String
|
|
956
|
+
sequence: Int
|
|
957
|
+
}
|
|
958
|
+
|
|
786
959
|
"""공종 타입"""
|
|
787
960
|
type ConstructionType {
|
|
961
|
+
constructionDetailTypes: [ConstructionDetailType!]
|
|
788
962
|
createdAt: DateTimeISO
|
|
789
963
|
creator: User
|
|
790
964
|
deletedAt: DateTimeISO
|
|
@@ -917,6 +1091,14 @@ input DepartmentPatch {
|
|
|
917
1091
|
picture: Upload
|
|
918
1092
|
}
|
|
919
1093
|
|
|
1094
|
+
type DigestedResource {
|
|
1095
|
+
"""할당량"""
|
|
1096
|
+
allocated: Float
|
|
1097
|
+
|
|
1098
|
+
"""자원 유형"""
|
|
1099
|
+
type: String
|
|
1100
|
+
}
|
|
1101
|
+
|
|
920
1102
|
type Domain {
|
|
921
1103
|
attributes: Object
|
|
922
1104
|
brandImage: String
|
|
@@ -985,9 +1167,11 @@ scalar EmailAddress @specifiedBy(url: "https://html.spec.whatwg.org/multipage/in
|
|
|
985
1167
|
"""Entity for Employee"""
|
|
986
1168
|
type Employee {
|
|
987
1169
|
active: Boolean
|
|
988
|
-
address: String
|
|
1170
|
+
address: String
|
|
989
1171
|
alias: String
|
|
990
1172
|
approvalLines: [ApprovalLine!]!
|
|
1173
|
+
bankAccount: String
|
|
1174
|
+
bankName: String
|
|
991
1175
|
contact: Contact
|
|
992
1176
|
controlNo: String!
|
|
993
1177
|
createdAt: DateTimeISO
|
|
@@ -996,8 +1180,10 @@ type Employee {
|
|
|
996
1180
|
department: Department
|
|
997
1181
|
domain: Domain!
|
|
998
1182
|
email: EmailAddress
|
|
1183
|
+
emergencyContact: String
|
|
1184
|
+
emergencyContactPhone: String
|
|
999
1185
|
extension: String
|
|
1000
|
-
hiredOn:
|
|
1186
|
+
hiredOn: DateTimeISO
|
|
1001
1187
|
id: ID!
|
|
1002
1188
|
jobPosition: String
|
|
1003
1189
|
jobResponsibility: String
|
|
@@ -1007,7 +1193,7 @@ type Employee {
|
|
|
1007
1193
|
phone: String
|
|
1008
1194
|
photo: String
|
|
1009
1195
|
profile: Profile
|
|
1010
|
-
|
|
1196
|
+
retiredOn: DateTimeISO
|
|
1011
1197
|
supervises: [Employee!]!
|
|
1012
1198
|
supervisor: Employee
|
|
1013
1199
|
type: String
|
|
@@ -1025,17 +1211,22 @@ type EmployeeList {
|
|
|
1025
1211
|
input EmployeePatch {
|
|
1026
1212
|
active: Boolean
|
|
1027
1213
|
alias: String
|
|
1214
|
+
bankAccount: String
|
|
1215
|
+
bankName: String
|
|
1216
|
+
contact: ObjectRefForContact
|
|
1028
1217
|
controlNo: String
|
|
1029
1218
|
cuFlag: String
|
|
1030
|
-
department:
|
|
1031
|
-
|
|
1219
|
+
department: ObjectRefForDepartment
|
|
1220
|
+
emergencyContact: String
|
|
1221
|
+
emergencyContactPhone: String
|
|
1222
|
+
hiredOn: DateTimeISO
|
|
1032
1223
|
id: ID
|
|
1033
1224
|
jobPosition: String
|
|
1034
1225
|
jobResponsibility: String
|
|
1035
1226
|
name: String
|
|
1036
1227
|
note: String
|
|
1037
1228
|
photo: Upload
|
|
1038
|
-
|
|
1229
|
+
retiredOn: DateTimeISO
|
|
1039
1230
|
supervisor: ObjectRefForEmployee
|
|
1040
1231
|
type: EmployeeType
|
|
1041
1232
|
user: ObjectRefForUser
|
|
@@ -1253,12 +1444,6 @@ input Filter {
|
|
|
1253
1444
|
value: Any
|
|
1254
1445
|
}
|
|
1255
1446
|
|
|
1256
|
-
type FloorInspectionSummary {
|
|
1257
|
-
fail: Int!
|
|
1258
|
-
pass: Int!
|
|
1259
|
-
request: Int!
|
|
1260
|
-
}
|
|
1261
|
-
|
|
1262
1447
|
"""Entity for Font"""
|
|
1263
1448
|
type Font {
|
|
1264
1449
|
active: Boolean!
|
|
@@ -1334,10 +1519,51 @@ enum InheritedValueType {
|
|
|
1334
1519
|
Only
|
|
1335
1520
|
}
|
|
1336
1521
|
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1522
|
+
"""Entity for InspectionDrawingType"""
|
|
1523
|
+
type InspectionDrawingType {
|
|
1524
|
+
createdAt: DateTimeISO
|
|
1525
|
+
creator: User
|
|
1526
|
+
domain: Domain
|
|
1527
|
+
id: ID!
|
|
1528
|
+
inspectionParts: [InspectionPart!]
|
|
1529
|
+
name: String
|
|
1530
|
+
updatedAt: DateTimeISO
|
|
1531
|
+
updater: User
|
|
1532
|
+
}
|
|
1533
|
+
|
|
1534
|
+
type InspectionDrawingTypeList {
|
|
1535
|
+
items: [InspectionDrawingType!]!
|
|
1536
|
+
total: Int!
|
|
1537
|
+
}
|
|
1538
|
+
|
|
1539
|
+
input InspectionDrawingTypePatch {
|
|
1540
|
+
cuFlag: String
|
|
1541
|
+
id: ID
|
|
1542
|
+
name: String
|
|
1543
|
+
}
|
|
1544
|
+
|
|
1545
|
+
"""Entity for InspectionPart"""
|
|
1546
|
+
type InspectionPart {
|
|
1547
|
+
createdAt: DateTimeISO
|
|
1548
|
+
creator: User
|
|
1549
|
+
id: ID!
|
|
1550
|
+
inspectionDrawingType: InspectionDrawingType
|
|
1551
|
+
name: String
|
|
1552
|
+
sequence: Int
|
|
1553
|
+
updatedAt: DateTimeISO
|
|
1554
|
+
updater: User
|
|
1555
|
+
}
|
|
1556
|
+
|
|
1557
|
+
type InspectionPartList {
|
|
1558
|
+
items: [InspectionPart!]!
|
|
1559
|
+
total: Int!
|
|
1560
|
+
}
|
|
1561
|
+
|
|
1562
|
+
input InspectionPartPatch {
|
|
1563
|
+
cuFlag: String
|
|
1564
|
+
id: ID
|
|
1565
|
+
name: String
|
|
1566
|
+
sequence: Int
|
|
1341
1567
|
}
|
|
1342
1568
|
|
|
1343
1569
|
type Invitation {
|
|
@@ -1357,6 +1583,45 @@ type InvitationList {
|
|
|
1357
1583
|
total: Int
|
|
1358
1584
|
}
|
|
1359
1585
|
|
|
1586
|
+
"""Entity for Issue"""
|
|
1587
|
+
type Issue {
|
|
1588
|
+
actionPlans: [ActionPlan!]!
|
|
1589
|
+
active: Boolean
|
|
1590
|
+
createdAt: DateTimeISO
|
|
1591
|
+
creator: User
|
|
1592
|
+
deletedAt: DateTimeISO
|
|
1593
|
+
description: String
|
|
1594
|
+
domain: Domain
|
|
1595
|
+
id: ID!
|
|
1596
|
+
name: String
|
|
1597
|
+
params: String
|
|
1598
|
+
state: String
|
|
1599
|
+
thumbnail: String
|
|
1600
|
+
updatedAt: DateTimeISO
|
|
1601
|
+
updater: User
|
|
1602
|
+
}
|
|
1603
|
+
|
|
1604
|
+
type IssueList {
|
|
1605
|
+
items: [Issue!]!
|
|
1606
|
+
total: Int!
|
|
1607
|
+
}
|
|
1608
|
+
|
|
1609
|
+
input IssuePatch {
|
|
1610
|
+
active: Boolean
|
|
1611
|
+
cuFlag: String
|
|
1612
|
+
description: String
|
|
1613
|
+
id: ID
|
|
1614
|
+
name: String
|
|
1615
|
+
state: IssueStatus
|
|
1616
|
+
thumbnail: Upload
|
|
1617
|
+
}
|
|
1618
|
+
|
|
1619
|
+
"""state enumeration of a issue"""
|
|
1620
|
+
enum IssueStatus {
|
|
1621
|
+
STATUS_A
|
|
1622
|
+
STATUS_B
|
|
1623
|
+
}
|
|
1624
|
+
|
|
1360
1625
|
"""
|
|
1361
1626
|
A field whose value is a JSON Web Token (JWT): https://jwt.io/introduction.
|
|
1362
1627
|
"""
|
|
@@ -1377,8 +1642,8 @@ type LiteMenu {
|
|
|
1377
1642
|
labels: Object
|
|
1378
1643
|
name: String!
|
|
1379
1644
|
parent: String
|
|
1380
|
-
privilege: PrivilegeObject
|
|
1381
1645
|
rank: Int
|
|
1646
|
+
role: Role
|
|
1382
1647
|
type: String
|
|
1383
1648
|
updatedAt: DateTimeISO
|
|
1384
1649
|
updater: User
|
|
@@ -1398,8 +1663,8 @@ input LiteMenuPatch {
|
|
|
1398
1663
|
labels: Object
|
|
1399
1664
|
name: String
|
|
1400
1665
|
parent: String
|
|
1401
|
-
privilege: PrivilegeInput
|
|
1402
1666
|
rank: Int
|
|
1667
|
+
role: ObjectRef
|
|
1403
1668
|
type: String
|
|
1404
1669
|
value: String
|
|
1405
1670
|
}
|
|
@@ -1479,7 +1744,6 @@ type Menu {
|
|
|
1479
1744
|
name: String
|
|
1480
1745
|
pagination: Boolean
|
|
1481
1746
|
parent: Menu
|
|
1482
|
-
privilege: PrivilegeObject
|
|
1483
1747
|
rank: Float
|
|
1484
1748
|
resourceId: String
|
|
1485
1749
|
resourceName: String
|
|
@@ -1801,7 +2065,6 @@ input MenuPatch {
|
|
|
1801
2065
|
name: String
|
|
1802
2066
|
pagination: Boolean
|
|
1803
2067
|
parent: ObjectRef
|
|
1804
|
-
privilege: PrivilegeInput
|
|
1805
2068
|
rank: Int
|
|
1806
2069
|
resourceId: String
|
|
1807
2070
|
resourceName: String
|
|
@@ -1819,7 +2082,9 @@ type Mutation {
|
|
|
1819
2082
|
"""To activate user"""
|
|
1820
2083
|
activateUser(userId: String!): Boolean!
|
|
1821
2084
|
|
|
1822
|
-
"""
|
|
2085
|
+
"""
|
|
2086
|
+
Attaches an existing contact to an employee. The contact is identified by its ID and the employee is identified by their ID.
|
|
2087
|
+
"""
|
|
1823
2088
|
attachContact(contactId: String!, id: String!): Employee!
|
|
1824
2089
|
cancelInvitation(email: EmailAddress!, reference: String!, type: String!): Boolean!
|
|
1825
2090
|
|
|
@@ -1835,6 +2100,9 @@ type Mutation {
|
|
|
1835
2100
|
"""To import multiple scenarios"""
|
|
1836
2101
|
copyScenarios(ids: [String!]!): [Scenario!]!
|
|
1837
2102
|
|
|
2103
|
+
"""To create new ActionPlan"""
|
|
2104
|
+
createActionPlan(actionPlan: NewActionPlan!): ActionPlan!
|
|
2105
|
+
|
|
1838
2106
|
"""To create new appliance"""
|
|
1839
2107
|
createAppliance(appliance: NewAppliance!): Appliance!
|
|
1840
2108
|
|
|
@@ -1858,8 +2126,8 @@ type Mutation {
|
|
|
1858
2126
|
"""To create new BoardTemplate"""
|
|
1859
2127
|
createBoardTemplate(boardTemplate: NewBoardTemplate!): BoardTemplate!
|
|
1860
2128
|
|
|
1861
|
-
"""To create
|
|
1862
|
-
|
|
2129
|
+
"""To create Building Inspection information"""
|
|
2130
|
+
createBuildingInspection(patch: NewBuildingInspection!): BuildingInspection!
|
|
1863
2131
|
|
|
1864
2132
|
"""To create new Checklist"""
|
|
1865
2133
|
createChecklist(checklist: NewChecklist!): Checklist!
|
|
@@ -1882,7 +2150,9 @@ type Mutation {
|
|
|
1882
2150
|
"""To create domain (Only superuser is granted this privilege.)"""
|
|
1883
2151
|
createDomain(domainInput: DomainPatch!): Domain!
|
|
1884
2152
|
|
|
1885
|
-
"""
|
|
2153
|
+
"""
|
|
2154
|
+
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.
|
|
2155
|
+
"""
|
|
1886
2156
|
createEmployee(employee: NewEmployee!): Employee!
|
|
1887
2157
|
|
|
1888
2158
|
"""To create new Entity"""
|
|
@@ -1900,6 +2170,9 @@ type Mutation {
|
|
|
1900
2170
|
"""To create new Group"""
|
|
1901
2171
|
createGroup(group: NewGroup!): Group
|
|
1902
2172
|
|
|
2173
|
+
"""To create new Issue"""
|
|
2174
|
+
createIssue(issue: NewIssue!): Issue!
|
|
2175
|
+
|
|
1903
2176
|
"""To create new LiteMenu"""
|
|
1904
2177
|
createLiteMenu(liteMenu: NewLiteMenu!): LiteMenu!
|
|
1905
2178
|
|
|
@@ -1951,6 +2224,12 @@ type Mutation {
|
|
|
1951
2224
|
"""프로젝트 생성"""
|
|
1952
2225
|
createProject(project: NewProject!): Project!
|
|
1953
2226
|
|
|
2227
|
+
"""To create new ProjectReport"""
|
|
2228
|
+
createProjectReport(projectReport: NewProjectReport!): ProjectReport!
|
|
2229
|
+
|
|
2230
|
+
"""To create new Resource"""
|
|
2231
|
+
createResource(resource: NewResource!): Resource!
|
|
2232
|
+
|
|
1954
2233
|
"""To create new user"""
|
|
1955
2234
|
createRole(role: NewRole!): User!
|
|
1956
2235
|
|
|
@@ -1963,9 +2242,15 @@ type Mutation {
|
|
|
1963
2242
|
"""To create new StateRegister"""
|
|
1964
2243
|
createStateRegister(stateRegister: NewStateRegister!): StateRegister!
|
|
1965
2244
|
|
|
2245
|
+
"""To create new Supervisor"""
|
|
2246
|
+
createSupervisor(supervisor: NewSupervisor!): Supervisor!
|
|
2247
|
+
|
|
1966
2248
|
"""To create new Task"""
|
|
1967
2249
|
createTask(task: NewTask!): Task!
|
|
1968
2250
|
|
|
2251
|
+
"""To create new TaskResource"""
|
|
2252
|
+
createTaskResource(taskResource: NewTaskResource!): TaskResource!
|
|
2253
|
+
|
|
1969
2254
|
"""To create new Terminology"""
|
|
1970
2255
|
createTerminology(terminology: NewTerminology!): Terminology!
|
|
1971
2256
|
|
|
@@ -1977,6 +2262,12 @@ type Mutation {
|
|
|
1977
2262
|
|
|
1978
2263
|
"""To create new UserPreference"""
|
|
1979
2264
|
createUserPreference(preference: NewUserPreference!): UserPreference!
|
|
2265
|
+
|
|
2266
|
+
"""To delete ActionPlan"""
|
|
2267
|
+
deleteActionPlan(id: String!): Boolean!
|
|
2268
|
+
|
|
2269
|
+
"""To delete multiple ActionPlans"""
|
|
2270
|
+
deleteActionPlans(ids: [String!]!): Boolean!
|
|
1980
2271
|
deleteAppBinding(id: String!): Boolean!
|
|
1981
2272
|
|
|
1982
2273
|
"""To delete appliance"""
|
|
@@ -2018,17 +2309,23 @@ type Mutation {
|
|
|
2018
2309
|
"""To delete multiple BuildingComplexes"""
|
|
2019
2310
|
deleteBuildingComplexes(ids: [String!]!): Boolean!
|
|
2020
2311
|
|
|
2312
|
+
"""To delete multiple Checklists"""
|
|
2313
|
+
deleteBuildingInspections(ids: [String!]!): Boolean!
|
|
2314
|
+
|
|
2021
2315
|
"""To delete multiple Buildings"""
|
|
2022
2316
|
deleteBuildings(ids: [String!]!): Boolean!
|
|
2023
2317
|
|
|
2024
|
-
"""To delete
|
|
2025
|
-
|
|
2318
|
+
"""To delete ChecklistTemplateItem"""
|
|
2319
|
+
deleteChecklistTemplateItem(id: String!): Boolean!
|
|
2026
2320
|
|
|
2027
|
-
"""To delete multiple
|
|
2028
|
-
|
|
2321
|
+
"""To delete multiple ChecklistTemplateItems"""
|
|
2322
|
+
deleteChecklistTemplateItems(ids: [String!]!): Boolean!
|
|
2029
2323
|
|
|
2030
|
-
"""To delete
|
|
2031
|
-
|
|
2324
|
+
"""To delete multiple ChecklistTemplates"""
|
|
2325
|
+
deleteChecklistTemplates(ids: [String!]!): Boolean!
|
|
2326
|
+
|
|
2327
|
+
"""To delete multiple ChecklistTypes"""
|
|
2328
|
+
deleteChecklistTypes(ids: [String!]!): Boolean!
|
|
2032
2329
|
|
|
2033
2330
|
"""To delete multiple Checklists"""
|
|
2034
2331
|
deleteChecklists(ids: [String!]!): Boolean!
|
|
@@ -2051,6 +2348,9 @@ type Mutation {
|
|
|
2051
2348
|
"""To delete multiple connections"""
|
|
2052
2349
|
deleteConnections(names: [String!]!): Boolean!
|
|
2053
2350
|
|
|
2351
|
+
"""To delete multiple ConstructionDetailTypes"""
|
|
2352
|
+
deleteConstructionDetailTypes(ids: [String!]!): Boolean!
|
|
2353
|
+
|
|
2054
2354
|
"""To delete multiple ConstructionTypes"""
|
|
2055
2355
|
deleteConstructionTypes(ids: [String!]!): Boolean!
|
|
2056
2356
|
|
|
@@ -2075,10 +2375,14 @@ type Mutation {
|
|
|
2075
2375
|
"""To delete multiple domains (Only superuser is granted this privilege.)"""
|
|
2076
2376
|
deleteDomains(names: [String!]!): Boolean!
|
|
2077
2377
|
|
|
2078
|
-
"""
|
|
2378
|
+
"""
|
|
2379
|
+
Deletes an employee record identified by the given ID. Also deletes any attachments associated with the employee.
|
|
2380
|
+
"""
|
|
2079
2381
|
deleteEmployee(id: String!): Boolean!
|
|
2080
2382
|
|
|
2081
|
-
"""
|
|
2383
|
+
"""
|
|
2384
|
+
Deletes multiple employee records identified by the given IDs. Also deletes any attachments associated with each employee.
|
|
2385
|
+
"""
|
|
2082
2386
|
deleteEmployees(ids: [String!]!): Boolean!
|
|
2083
2387
|
|
|
2084
2388
|
"""To delete multiple Entities"""
|
|
@@ -2102,6 +2406,18 @@ type Mutation {
|
|
|
2102
2406
|
"""To delete Group"""
|
|
2103
2407
|
deleteGroup(id: String!): Boolean!
|
|
2104
2408
|
|
|
2409
|
+
"""To delete multiple InspectionDrawingTypes"""
|
|
2410
|
+
deleteInspectionDrawingTypes(ids: [String!]!): Boolean!
|
|
2411
|
+
|
|
2412
|
+
"""To delete multiple InspectionParts"""
|
|
2413
|
+
deleteInspectionParts(ids: [String!]!): Boolean!
|
|
2414
|
+
|
|
2415
|
+
"""To delete Issue"""
|
|
2416
|
+
deleteIssue(id: String!): Boolean!
|
|
2417
|
+
|
|
2418
|
+
"""To delete multiple Issues"""
|
|
2419
|
+
deleteIssues(ids: [String!]!): Boolean!
|
|
2420
|
+
|
|
2105
2421
|
"""To delete LiteMenu"""
|
|
2106
2422
|
deleteLiteMenu(id: String!): Boolean!
|
|
2107
2423
|
|
|
@@ -2201,8 +2517,20 @@ type Mutation {
|
|
|
2201
2517
|
"""To delete Project"""
|
|
2202
2518
|
deleteProject(id: String!): Boolean!
|
|
2203
2519
|
|
|
2204
|
-
"""To delete
|
|
2205
|
-
|
|
2520
|
+
"""To delete ProjectReport"""
|
|
2521
|
+
deleteProjectReport(id: String!): Boolean!
|
|
2522
|
+
|
|
2523
|
+
"""To delete multiple ProjectReports"""
|
|
2524
|
+
deleteProjectReports(ids: [String!]!): Boolean!
|
|
2525
|
+
|
|
2526
|
+
"""To delete Resource"""
|
|
2527
|
+
deleteResource(id: String!): Boolean!
|
|
2528
|
+
|
|
2529
|
+
"""To delete multiple Resources"""
|
|
2530
|
+
deleteResources(ids: [String!]!): Boolean!
|
|
2531
|
+
|
|
2532
|
+
"""To delete role"""
|
|
2533
|
+
deleteRole(id: String!): Boolean!
|
|
2206
2534
|
|
|
2207
2535
|
"""To delete multiple roles"""
|
|
2208
2536
|
deleteRoles(ids: [String!]!): Boolean!
|
|
@@ -2228,9 +2556,21 @@ type Mutation {
|
|
|
2228
2556
|
"""To delete multiple steps"""
|
|
2229
2557
|
deleteSteps(ids: [String!]!): Boolean!
|
|
2230
2558
|
|
|
2559
|
+
"""To delete Supervisor"""
|
|
2560
|
+
deleteSupervisor(id: String!): Boolean!
|
|
2561
|
+
|
|
2562
|
+
"""To delete multiple Supervisors"""
|
|
2563
|
+
deleteSupervisors(ids: [String!]!): Boolean!
|
|
2564
|
+
|
|
2231
2565
|
"""To delete Task"""
|
|
2232
2566
|
deleteTask(id: String!): Boolean!
|
|
2233
2567
|
|
|
2568
|
+
"""To delete TaskResource"""
|
|
2569
|
+
deleteTaskResource(id: String!): Boolean!
|
|
2570
|
+
|
|
2571
|
+
"""To delete multiple TaskResources"""
|
|
2572
|
+
deleteTaskResources(ids: [String!]!): Boolean!
|
|
2573
|
+
|
|
2234
2574
|
"""To delete multiple Tasks"""
|
|
2235
2575
|
deleteTasks(ids: [String!]!): Boolean!
|
|
2236
2576
|
|
|
@@ -2261,7 +2601,9 @@ type Mutation {
|
|
|
2261
2601
|
"""To delete multiple WorkerTypes"""
|
|
2262
2602
|
deleteWorkerTypes(ids: [String!]!): Boolean!
|
|
2263
2603
|
|
|
2264
|
-
"""
|
|
2604
|
+
"""
|
|
2605
|
+
Detaches an existing contact from an employee. The employee is identified by their ID.
|
|
2606
|
+
"""
|
|
2265
2607
|
detachContact(id: String!): Employee!
|
|
2266
2608
|
|
|
2267
2609
|
"""To disconnect a connection"""
|
|
@@ -2276,6 +2618,9 @@ type Mutation {
|
|
|
2276
2618
|
getOauth2AuthUrl(id: String!): String!
|
|
2277
2619
|
grantRoles(customerId: String!, roles: [RolePatch!]!): Boolean!
|
|
2278
2620
|
|
|
2621
|
+
"""To import multiple ActionPlans"""
|
|
2622
|
+
importActionPlans(actionPlans: [ActionPlanPatch!]!): Boolean!
|
|
2623
|
+
|
|
2279
2624
|
"""To import multiple ApprovalLines"""
|
|
2280
2625
|
importApprovalLines(approvalLines: [ApprovalLinePatch!]!): Boolean!
|
|
2281
2626
|
|
|
@@ -2294,12 +2639,6 @@ type Mutation {
|
|
|
2294
2639
|
"""To import multiple Buildings"""
|
|
2295
2640
|
importBuildings(buildings: [BuildingPatch!]!): Boolean!
|
|
2296
2641
|
|
|
2297
|
-
"""To import multiple CheckItems"""
|
|
2298
|
-
importCheckItems(checkItems: [CheckItemPatch!]!): Boolean!
|
|
2299
|
-
|
|
2300
|
-
"""To import multiple Checklists"""
|
|
2301
|
-
importChecklists(checklists: [ChecklistPatch!]!): Boolean!
|
|
2302
|
-
|
|
2303
2642
|
"""To import multiple CommonCodeDetails"""
|
|
2304
2643
|
importCommonCodeDetails(commonCodeDetails: [CommonCodeDetailPatch!]!): Boolean!
|
|
2305
2644
|
|
|
@@ -2315,9 +2654,14 @@ type Mutation {
|
|
|
2315
2654
|
"""To import multiple Departments"""
|
|
2316
2655
|
importDepartments(departments: [DepartmentPatch!]!): Boolean!
|
|
2317
2656
|
|
|
2318
|
-
"""
|
|
2657
|
+
"""
|
|
2658
|
+
Imports multiple employee records into the system. Each employee record must be provided in the EmployeePatch format.
|
|
2659
|
+
"""
|
|
2319
2660
|
importEmployees(employees: [EmployeePatch!]!): Boolean!
|
|
2320
2661
|
|
|
2662
|
+
"""To import multiple Issues"""
|
|
2663
|
+
importIssues(issues: [IssuePatch!]!): Boolean!
|
|
2664
|
+
|
|
2321
2665
|
"""To import multiple MenuButtons"""
|
|
2322
2666
|
importMenuButtons(menuButtons: [MenuButtonPatch!]!): Boolean!
|
|
2323
2667
|
|
|
@@ -2342,12 +2686,24 @@ type Mutation {
|
|
|
2342
2686
|
"""To import multiple Oauth2Clients"""
|
|
2343
2687
|
importOauth2Clients(oauth2Clients: [Oauth2ClientPatch!]!): Boolean!
|
|
2344
2688
|
|
|
2689
|
+
"""To import multiple ProjectReports"""
|
|
2690
|
+
importProjectReports(projectReports: [ProjectReportPatch!]!): Boolean!
|
|
2691
|
+
|
|
2692
|
+
"""To import multiple Resources"""
|
|
2693
|
+
importResources(resources: [ResourcePatch!]!): Boolean!
|
|
2694
|
+
|
|
2345
2695
|
"""To import multiple scenarios"""
|
|
2346
2696
|
importScenarios(scenarios: [ScenarioPatch!]!): Boolean!
|
|
2347
2697
|
|
|
2348
2698
|
"""To import multiple StateRegisters"""
|
|
2349
2699
|
importStateRegisters(stateRegisters: [StateRegisterPatch!]!): Boolean!
|
|
2350
2700
|
|
|
2701
|
+
"""To import multiple Supervisors"""
|
|
2702
|
+
importSupervisors(supervisors: [SupervisorPatch!]!): Boolean!
|
|
2703
|
+
|
|
2704
|
+
"""To import multiple TaskResources"""
|
|
2705
|
+
importTaskResources(taskResources: [TaskResourcePatch!]!): Boolean!
|
|
2706
|
+
|
|
2351
2707
|
"""To import multiple Tasks"""
|
|
2352
2708
|
importTasks(tasks: [TaskPatch!]!): Boolean!
|
|
2353
2709
|
|
|
@@ -2392,6 +2748,14 @@ type Mutation {
|
|
|
2392
2748
|
visibility: String!
|
|
2393
2749
|
): BoardTemplate!
|
|
2394
2750
|
|
|
2751
|
+
"""
|
|
2752
|
+
Registers an existing employee as a system user, granting them access to the system. The employee is identified by their ID.
|
|
2753
|
+
"""
|
|
2754
|
+
registerEmployeeAsSystemUser(
|
|
2755
|
+
"""Employee Id"""
|
|
2756
|
+
employeeId: String!
|
|
2757
|
+
): Boolean!
|
|
2758
|
+
|
|
2395
2759
|
"""To release a Board"""
|
|
2396
2760
|
releaseBoard(id: String!): Board!
|
|
2397
2761
|
renewApplicationAccessToken(id: String!, scope: String!): AccessToken!
|
|
@@ -2435,6 +2799,9 @@ type Mutation {
|
|
|
2435
2799
|
|
|
2436
2800
|
"""To transfer owner of domain"""
|
|
2437
2801
|
transferOwner(email: EmailAddress!): Boolean!
|
|
2802
|
+
|
|
2803
|
+
"""To modify ActionPlan information"""
|
|
2804
|
+
updateActionPlan(id: String!, patch: ActionPlanPatch!): ActionPlan!
|
|
2438
2805
|
updateAppliance(id: String!, patch: AppliancePatch!): Appliance!
|
|
2439
2806
|
updateApplication(id: String!, patch: ApplicationPatch!): Application!
|
|
2440
2807
|
|
|
@@ -2460,8 +2827,11 @@ type Mutation {
|
|
|
2460
2827
|
"""To modify BuildingComplex information"""
|
|
2461
2828
|
updateBuildingComplex(id: String!, patch: BuildingComplexPatch!): BuildingComplex!
|
|
2462
2829
|
|
|
2463
|
-
"""To
|
|
2464
|
-
|
|
2830
|
+
"""To update Building Inspection information"""
|
|
2831
|
+
updateBuildingInspection(patch: UpdateBuildingInspectionDrawingMarker!): BuildingInspection!
|
|
2832
|
+
|
|
2833
|
+
"""To create Building Inspection And Checklist information"""
|
|
2834
|
+
updateBuildingInspectionChecklist(buildingInspection: UpdateBuildingInspectionSubmitType!): Boolean!
|
|
2465
2835
|
|
|
2466
2836
|
"""To modify Checklist information"""
|
|
2467
2837
|
updateChecklist(id: String!, patch: ChecklistPatch!): Checklist!
|
|
@@ -2487,7 +2857,9 @@ type Mutation {
|
|
|
2487
2857
|
"""To update multiple domains (Only superuser is granted this privilege.)"""
|
|
2488
2858
|
updateDomains(patches: [DomainPatch!]!): Boolean!
|
|
2489
2859
|
|
|
2490
|
-
"""
|
|
2860
|
+
"""
|
|
2861
|
+
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.
|
|
2862
|
+
"""
|
|
2491
2863
|
updateEmployee(id: String!, patch: EmployeePatch!): Employee!
|
|
2492
2864
|
|
|
2493
2865
|
"""To modify Entity' information"""
|
|
@@ -2502,6 +2874,9 @@ type Mutation {
|
|
|
2502
2874
|
"""To modify Group information"""
|
|
2503
2875
|
updateGroup(id: String!, patch: GroupPatch!): Group!
|
|
2504
2876
|
|
|
2877
|
+
"""To modify Issue information"""
|
|
2878
|
+
updateIssue(id: String!, patch: IssuePatch!): Issue!
|
|
2879
|
+
|
|
2505
2880
|
"""To modify LiteMenu information"""
|
|
2506
2881
|
updateLiteMenu(id: String!, patch: LiteMenuPatch!): LiteMenu!
|
|
2507
2882
|
|
|
@@ -2523,6 +2898,9 @@ type Mutation {
|
|
|
2523
2898
|
"""To modify MenuDetailColumn information"""
|
|
2524
2899
|
updateMenuDetailColumn(id: String!, patch: MenuDetailColumnPatch!): MenuDetailColumn!
|
|
2525
2900
|
|
|
2901
|
+
"""To modify multiple ActionPlans' information"""
|
|
2902
|
+
updateMultipleActionPlan(patches: [ActionPlanPatch!]!): [ActionPlan!]!
|
|
2903
|
+
|
|
2526
2904
|
"""To modify multiple ApprovalLines' information"""
|
|
2527
2905
|
updateMultipleApprovalLine(patches: [ApprovalLinePatch!]!): [ApprovalLine!]!
|
|
2528
2906
|
|
|
@@ -2536,12 +2914,18 @@ type Mutation {
|
|
|
2536
2914
|
"""To modify multiple BuildingComplexes' information"""
|
|
2537
2915
|
updateMultipleBuildingComplex(patches: [BuildingComplexPatch!]!): [BuildingComplex!]!
|
|
2538
2916
|
|
|
2539
|
-
"""To modify multiple CheckItems' information"""
|
|
2540
|
-
updateMultipleCheckItem(patches: [CheckItemPatch!]!): [CheckItem!]!
|
|
2541
|
-
|
|
2542
2917
|
"""To modify multiple Checklists' information"""
|
|
2543
2918
|
updateMultipleChecklist(patches: [ChecklistPatch!]!): [Checklist!]!
|
|
2544
2919
|
|
|
2920
|
+
"""To modify multiple ChecklistTemplates' information"""
|
|
2921
|
+
updateMultipleChecklistTemplate(patches: [ChecklistTemplatePatch!]!): [ChecklistTemplate!]!
|
|
2922
|
+
|
|
2923
|
+
"""To modify multiple ChecklistTemplateItems' information"""
|
|
2924
|
+
updateMultipleChecklistTemplateItems(checklistTemplateId: String!, patches: [ChecklistTemplateItemPatch!]!): [ChecklistTemplateItem!]!
|
|
2925
|
+
|
|
2926
|
+
"""To modify multiple ChecklistTypes' information"""
|
|
2927
|
+
updateMultipleChecklistType(patches: [ChecklistTypePatch!]!): [ChecklistType!]!
|
|
2928
|
+
|
|
2545
2929
|
"""To modify multiple CommonCodes' information"""
|
|
2546
2930
|
updateMultipleCommonCode(patches: [CommonCodePatch!]!): [CommonCode!]!
|
|
2547
2931
|
|
|
@@ -2551,6 +2935,9 @@ type Mutation {
|
|
|
2551
2935
|
"""To modify multiple connections' information"""
|
|
2552
2936
|
updateMultipleConnection(patches: [ConnectionPatch!]!): [Connection!]!
|
|
2553
2937
|
|
|
2938
|
+
"""To modify multiple ConstructionDetailTypes' information"""
|
|
2939
|
+
updateMultipleConstructionDetailType(constructionTypeId: String!, patches: [ConstructionDetailTypePatch!]!): [ConstructionDetailType!]!
|
|
2940
|
+
|
|
2554
2941
|
"""To modify multiple ConstructionTypes' information"""
|
|
2555
2942
|
updateMultipleConstructionType(patches: [ConstructionTypePatch!]!): [ConstructionType!]!
|
|
2556
2943
|
|
|
@@ -2560,7 +2947,9 @@ type Mutation {
|
|
|
2560
2947
|
"""To modify multiple Departments' information"""
|
|
2561
2948
|
updateMultipleDepartment(patches: [DepartmentPatch!]!): [Department!]!
|
|
2562
2949
|
|
|
2563
|
-
"""
|
|
2950
|
+
"""
|
|
2951
|
+
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".
|
|
2952
|
+
"""
|
|
2564
2953
|
updateMultipleEmployee(patches: [EmployeePatch!]!): [Employee!]!
|
|
2565
2954
|
|
|
2566
2955
|
"""To modify multiple Entitys' information"""
|
|
@@ -2569,6 +2958,15 @@ type Mutation {
|
|
|
2569
2958
|
"""To modify multiple Entitys' information"""
|
|
2570
2959
|
updateMultipleEntityColumn(patches: [EntityColumnPatch!]!): [EntityColumn!]!
|
|
2571
2960
|
|
|
2961
|
+
"""To modify multiple InspectionDrawingTypes' information"""
|
|
2962
|
+
updateMultipleInspectionDrawingType(patches: [InspectionDrawingTypePatch!]!): [InspectionDrawingType!]!
|
|
2963
|
+
|
|
2964
|
+
"""To modify multiple InspectionParts' information"""
|
|
2965
|
+
updateMultipleInspectionPart(inspectionDrawingTypeId: String!, patches: [InspectionPartPatch!]!): [InspectionPart!]!
|
|
2966
|
+
|
|
2967
|
+
"""To modify multiple Issues' information"""
|
|
2968
|
+
updateMultipleIssue(patches: [IssuePatch!]!): [Issue!]!
|
|
2969
|
+
|
|
2572
2970
|
"""To modify multiple Managers' information"""
|
|
2573
2971
|
updateMultipleManager(patches: [ManagerPatch!]!): [Manager!]!
|
|
2574
2972
|
|
|
@@ -2593,6 +2991,12 @@ type Mutation {
|
|
|
2593
2991
|
"""To modify multiple PrinterDevices' information"""
|
|
2594
2992
|
updateMultiplePrinterDevice(patches: [PrinterDevicePatch!]!): [PrinterDevice!]!
|
|
2595
2993
|
|
|
2994
|
+
"""To modify multiple ProjectReports' information"""
|
|
2995
|
+
updateMultipleProjectReport(patches: [ProjectReportPatch!]!): [ProjectReport!]!
|
|
2996
|
+
|
|
2997
|
+
"""To modify multiple Resources' information"""
|
|
2998
|
+
updateMultipleResource(patches: [ResourcePatch!]!): [Resource!]!
|
|
2999
|
+
|
|
2596
3000
|
"""To modify multiple scenarios' information"""
|
|
2597
3001
|
updateMultipleScenario(patches: [ScenarioPatch!]!): [Scenario!]!
|
|
2598
3002
|
|
|
@@ -2605,9 +3009,15 @@ type Mutation {
|
|
|
2605
3009
|
"""To modify multiple steps' in a scenario"""
|
|
2606
3010
|
updateMultipleStep(patches: [StepPatch!]!, scenarioId: String!): [Step!]!
|
|
2607
3011
|
|
|
3012
|
+
"""To modify multiple Supervisors' information"""
|
|
3013
|
+
updateMultipleSupervisor(patches: [SupervisorPatch!]!): [Supervisor!]!
|
|
3014
|
+
|
|
2608
3015
|
"""To modify multiple Tasks' information"""
|
|
2609
3016
|
updateMultipleTask(patches: [TaskPatch!]!): [Task!]!
|
|
2610
3017
|
|
|
3018
|
+
"""To modify multiple TaskResources' information"""
|
|
3019
|
+
updateMultipleTaskResource(patches: [TaskResourcePatch!]!): [TaskResource!]!
|
|
3020
|
+
|
|
2611
3021
|
"""To modify multiple Terminologies' information"""
|
|
2612
3022
|
updateMultipleTerminologies(patches: [TerminologyPatch!]!): [Terminology!]!
|
|
2613
3023
|
|
|
@@ -2656,6 +3066,12 @@ type Mutation {
|
|
|
2656
3066
|
"""프로젝트 도면 업데이트"""
|
|
2657
3067
|
updateProjectPlan(project: ProjectPatch!): Project!
|
|
2658
3068
|
|
|
3069
|
+
"""To modify ProjectReport information"""
|
|
3070
|
+
updateProjectReport(id: String!, patch: ProjectReportPatch!): ProjectReport!
|
|
3071
|
+
|
|
3072
|
+
"""To modify Resource information"""
|
|
3073
|
+
updateResource(id: String!, patch: ResourcePatch!): Resource!
|
|
3074
|
+
|
|
2659
3075
|
"""To modify role information"""
|
|
2660
3076
|
updateRole(id: String!, patch: RolePatch!): Role!
|
|
2661
3077
|
|
|
@@ -2680,9 +3096,15 @@ type Mutation {
|
|
|
2680
3096
|
"""To update state of StateRegister by name"""
|
|
2681
3097
|
updateStateRegisterByName(name: String!, state: Object!): StateRegister!
|
|
2682
3098
|
|
|
3099
|
+
"""To modify Supervisor information"""
|
|
3100
|
+
updateSupervisor(id: String!, patch: SupervisorPatch!): Supervisor!
|
|
3101
|
+
|
|
2683
3102
|
"""To modify Task information"""
|
|
2684
3103
|
updateTask(id: String!, patch: TaskPatch!): Task!
|
|
2685
3104
|
|
|
3105
|
+
"""To modify TaskResource information"""
|
|
3106
|
+
updateTaskResource(id: String!, patch: TaskResourcePatch!): TaskResource!
|
|
3107
|
+
|
|
2686
3108
|
"""To modify Terminology information"""
|
|
2687
3109
|
updateTerminology(id: String!, patch: TerminologyPatch!): Terminology!
|
|
2688
3110
|
|
|
@@ -2699,6 +3121,15 @@ type Mutation {
|
|
|
2699
3121
|
updateUserRoles(availableRoles: [ObjectRef!]!, selectedRoles: [ObjectRef!]!, userId: String!): User!
|
|
2700
3122
|
}
|
|
2701
3123
|
|
|
3124
|
+
input NewActionPlan {
|
|
3125
|
+
active: Boolean
|
|
3126
|
+
description: String
|
|
3127
|
+
name: String!
|
|
3128
|
+
params: String
|
|
3129
|
+
state: ActionPlanStatus
|
|
3130
|
+
thumbnail: Upload
|
|
3131
|
+
}
|
|
3132
|
+
|
|
2702
3133
|
input NewAppliance {
|
|
2703
3134
|
brand: String!
|
|
2704
3135
|
description: String
|
|
@@ -2733,6 +3164,7 @@ input NewAttachment {
|
|
|
2733
3164
|
file: Upload!
|
|
2734
3165
|
refBy: String
|
|
2735
3166
|
refType: String
|
|
3167
|
+
tags: Object
|
|
2736
3168
|
}
|
|
2737
3169
|
|
|
2738
3170
|
input NewAttributeSet {
|
|
@@ -2768,11 +3200,10 @@ input NewBoardTemplate {
|
|
|
2768
3200
|
visibility: String!
|
|
2769
3201
|
}
|
|
2770
3202
|
|
|
2771
|
-
input
|
|
2772
|
-
|
|
2773
|
-
|
|
2774
|
-
|
|
2775
|
-
params: String
|
|
3203
|
+
input NewBuildingInspection {
|
|
3204
|
+
buildingLevelId: String!
|
|
3205
|
+
checklist: ChecklistInputType!
|
|
3206
|
+
checklistItem: [ChecklistItemInputType!]!
|
|
2776
3207
|
}
|
|
2777
3208
|
|
|
2778
3209
|
input NewChecklist {
|
|
@@ -2831,16 +3262,21 @@ input NewDepartment {
|
|
|
2831
3262
|
input NewEmployee {
|
|
2832
3263
|
active: Boolean
|
|
2833
3264
|
alias: String
|
|
3265
|
+
bankAccount: String
|
|
3266
|
+
bankName: String
|
|
3267
|
+
contact: ObjectRefForContact
|
|
2834
3268
|
controlNo: String!
|
|
2835
|
-
department:
|
|
3269
|
+
department: ObjectRefForDepartment
|
|
3270
|
+
emergencyContact: String
|
|
3271
|
+
emergencyContactPhone: String
|
|
2836
3272
|
extension: String
|
|
2837
|
-
hiredOn:
|
|
3273
|
+
hiredOn: DateTimeISO
|
|
2838
3274
|
jobPosition: String
|
|
2839
3275
|
jobResponsibility: String
|
|
2840
3276
|
name: String!
|
|
2841
3277
|
note: String
|
|
2842
3278
|
photo: Upload
|
|
2843
|
-
|
|
3279
|
+
retiredOn: DateTimeISO
|
|
2844
3280
|
supervisor: ObjectRefForEmployee
|
|
2845
3281
|
type: EmployeeType
|
|
2846
3282
|
user: ObjectRefForUser
|
|
@@ -2922,6 +3358,15 @@ input NewGroup {
|
|
|
2922
3358
|
name: String!
|
|
2923
3359
|
}
|
|
2924
3360
|
|
|
3361
|
+
input NewIssue {
|
|
3362
|
+
active: Boolean
|
|
3363
|
+
description: String
|
|
3364
|
+
name: String!
|
|
3365
|
+
params: String
|
|
3366
|
+
state: IssueStatus
|
|
3367
|
+
thumbnail: Upload
|
|
3368
|
+
}
|
|
3369
|
+
|
|
2925
3370
|
input NewLiteMenu {
|
|
2926
3371
|
active: Boolean
|
|
2927
3372
|
appName: String
|
|
@@ -2930,8 +3375,8 @@ input NewLiteMenu {
|
|
|
2930
3375
|
labels: Object
|
|
2931
3376
|
name: String!
|
|
2932
3377
|
parent: String
|
|
2933
|
-
privilege: PrivilegeInput
|
|
2934
3378
|
rank: Int
|
|
3379
|
+
role: ObjectRef
|
|
2935
3380
|
type: String
|
|
2936
3381
|
value: String
|
|
2937
3382
|
}
|
|
@@ -2954,7 +3399,6 @@ input NewMenu {
|
|
|
2954
3399
|
name: String!
|
|
2955
3400
|
pagination: Boolean
|
|
2956
3401
|
parent: ObjectRef
|
|
2957
|
-
privilege: PrivilegeInput
|
|
2958
3402
|
rank: Int
|
|
2959
3403
|
resourceId: String
|
|
2960
3404
|
resourceName: String
|
|
@@ -3165,7 +3609,26 @@ input NewPrivilege {
|
|
|
3165
3609
|
}
|
|
3166
3610
|
|
|
3167
3611
|
input NewProject {
|
|
3612
|
+
"""연관된 건물 복합체 정보 (선택 사항)"""
|
|
3613
|
+
buildingComplex: ObjectRef
|
|
3614
|
+
|
|
3615
|
+
"""프로젝트 이름"""
|
|
3616
|
+
name: String!
|
|
3617
|
+
}
|
|
3618
|
+
|
|
3619
|
+
input NewProjectReport {
|
|
3620
|
+
active: Boolean
|
|
3621
|
+
description: String
|
|
3622
|
+
name: String!
|
|
3623
|
+
params: String
|
|
3624
|
+
state: ProjectReportStatus
|
|
3625
|
+
thumbnail: Upload
|
|
3626
|
+
}
|
|
3627
|
+
|
|
3628
|
+
input NewResource {
|
|
3168
3629
|
name: String!
|
|
3630
|
+
type: ResourceType!
|
|
3631
|
+
unit: String!
|
|
3169
3632
|
}
|
|
3170
3633
|
|
|
3171
3634
|
input NewRole {
|
|
@@ -3179,7 +3642,7 @@ input NewScenario {
|
|
|
3179
3642
|
active: Boolean
|
|
3180
3643
|
description: String
|
|
3181
3644
|
name: String!
|
|
3182
|
-
|
|
3645
|
+
role: ObjectRef
|
|
3183
3646
|
schedule: String
|
|
3184
3647
|
timezone: String
|
|
3185
3648
|
ttl: Float
|
|
@@ -3224,11 +3687,42 @@ input NewStateRegister {
|
|
|
3224
3687
|
unit: String
|
|
3225
3688
|
}
|
|
3226
3689
|
|
|
3690
|
+
input NewSupervisor {
|
|
3691
|
+
active: Boolean
|
|
3692
|
+
description: String
|
|
3693
|
+
name: String!
|
|
3694
|
+
params: String
|
|
3695
|
+
state: SupervisorStatus
|
|
3696
|
+
thumbnail: Upload
|
|
3697
|
+
}
|
|
3698
|
+
|
|
3227
3699
|
input NewTask {
|
|
3700
|
+
"""작업이 활성 상태인지 여부 (선택 사항)"""
|
|
3228
3701
|
active: Boolean
|
|
3702
|
+
|
|
3703
|
+
"""프로젝트 내에서 유니크한 작업 코드"""
|
|
3704
|
+
code: String!
|
|
3705
|
+
|
|
3706
|
+
"""작업에 대한 설명 (선택 사항)"""
|
|
3229
3707
|
description: String
|
|
3708
|
+
|
|
3709
|
+
"""작업의 이름"""
|
|
3230
3710
|
name: String!
|
|
3711
|
+
|
|
3712
|
+
"""작업에 대한 추가 파라미터, JSON 형식으로 저장 (선택 사항)"""
|
|
3231
3713
|
params: String
|
|
3714
|
+
|
|
3715
|
+
"""부모 작업, 해당 작업이 하위 작업인 경우 (선택 사항)"""
|
|
3716
|
+
parent: ObjectRefForTask
|
|
3717
|
+
|
|
3718
|
+
"""작업이 속한 프로젝트 (선택 사항)"""
|
|
3719
|
+
project: ObjectRefForProject
|
|
3720
|
+
}
|
|
3721
|
+
|
|
3722
|
+
input NewTaskResource {
|
|
3723
|
+
quantity: Float!
|
|
3724
|
+
resourceId: ID!
|
|
3725
|
+
taskId: ID!
|
|
3232
3726
|
}
|
|
3233
3727
|
|
|
3234
3728
|
input NewTerminology {
|
|
@@ -3438,6 +3932,34 @@ input ObjectRefApprovalLineOwnerType {
|
|
|
3438
3932
|
name: String
|
|
3439
3933
|
}
|
|
3440
3934
|
|
|
3935
|
+
input ObjectRefForContact {
|
|
3936
|
+
address: String
|
|
3937
|
+
|
|
3938
|
+
"""Field description"""
|
|
3939
|
+
description: String
|
|
3940
|
+
email: EmailAddress
|
|
3941
|
+
|
|
3942
|
+
"""Field id"""
|
|
3943
|
+
id: ID!
|
|
3944
|
+
|
|
3945
|
+
"""Field name"""
|
|
3946
|
+
name: String
|
|
3947
|
+
phone: String
|
|
3948
|
+
}
|
|
3949
|
+
|
|
3950
|
+
input ObjectRefForDepartment {
|
|
3951
|
+
controlNo: String
|
|
3952
|
+
|
|
3953
|
+
"""Field description"""
|
|
3954
|
+
description: String
|
|
3955
|
+
|
|
3956
|
+
"""Field id"""
|
|
3957
|
+
id: ID!
|
|
3958
|
+
|
|
3959
|
+
"""Field name"""
|
|
3960
|
+
name: String
|
|
3961
|
+
}
|
|
3962
|
+
|
|
3441
3963
|
input ObjectRefForEmployee {
|
|
3442
3964
|
active: Boolean
|
|
3443
3965
|
alias: String
|
|
@@ -3446,7 +3968,7 @@ input ObjectRefForEmployee {
|
|
|
3446
3968
|
"""Field description"""
|
|
3447
3969
|
description: String
|
|
3448
3970
|
email: EmailAddress
|
|
3449
|
-
hiredOn:
|
|
3971
|
+
hiredOn: DateTimeISO
|
|
3450
3972
|
|
|
3451
3973
|
"""Field id"""
|
|
3452
3974
|
id: ID!
|
|
@@ -3459,6 +3981,31 @@ input ObjectRefForEmployee {
|
|
|
3459
3981
|
type: EmployeeType
|
|
3460
3982
|
}
|
|
3461
3983
|
|
|
3984
|
+
input ObjectRefForProject {
|
|
3985
|
+
"""Field description"""
|
|
3986
|
+
description: String
|
|
3987
|
+
|
|
3988
|
+
"""Field id"""
|
|
3989
|
+
id: ID!
|
|
3990
|
+
|
|
3991
|
+
"""프로젝트 이름 (선택 사항)"""
|
|
3992
|
+
name: String
|
|
3993
|
+
}
|
|
3994
|
+
|
|
3995
|
+
input ObjectRefForTask {
|
|
3996
|
+
"""작업 코드 (선택 사항)"""
|
|
3997
|
+
code: String
|
|
3998
|
+
|
|
3999
|
+
"""Field description"""
|
|
4000
|
+
description: String
|
|
4001
|
+
|
|
4002
|
+
"""Field id"""
|
|
4003
|
+
id: ID!
|
|
4004
|
+
|
|
4005
|
+
"""Field name"""
|
|
4006
|
+
name: String
|
|
4007
|
+
}
|
|
4008
|
+
|
|
3462
4009
|
input ObjectRefForUser {
|
|
3463
4010
|
"""Field description"""
|
|
3464
4011
|
description: String
|
|
@@ -3564,6 +4111,18 @@ input PartnerSettingPatch {
|
|
|
3564
4111
|
value: String
|
|
3565
4112
|
}
|
|
3566
4113
|
|
|
4114
|
+
type PasswordRule {
|
|
4115
|
+
allowRepeat: Boolean
|
|
4116
|
+
digit: Boolean
|
|
4117
|
+
looseCharacterLength: Float
|
|
4118
|
+
lowerCase: Boolean
|
|
4119
|
+
specialCharacter: Boolean
|
|
4120
|
+
tightCharacterLength: Float
|
|
4121
|
+
upperCase: Boolean
|
|
4122
|
+
useLoosePattern: Boolean
|
|
4123
|
+
useTightPattern: Boolean
|
|
4124
|
+
}
|
|
4125
|
+
|
|
3567
4126
|
"""Entity for PayloadLog"""
|
|
3568
4127
|
type PayloadLog {
|
|
3569
4128
|
createdAt: DateTimeISO
|
|
@@ -3685,13 +4244,6 @@ type Privilege {
|
|
|
3685
4244
|
updater: User
|
|
3686
4245
|
}
|
|
3687
4246
|
|
|
3688
|
-
input PrivilegeInput {
|
|
3689
|
-
category: String
|
|
3690
|
-
owner: Boolean
|
|
3691
|
-
privilege: String
|
|
3692
|
-
super: Boolean
|
|
3693
|
-
}
|
|
3694
|
-
|
|
3695
4247
|
type PrivilegeList {
|
|
3696
4248
|
items: [Privilege!]
|
|
3697
4249
|
total: Int
|
|
@@ -3743,6 +4295,7 @@ type Project {
|
|
|
3743
4295
|
mainPhoto: Attachment
|
|
3744
4296
|
name: String!
|
|
3745
4297
|
robotProgressRate: Float
|
|
4298
|
+
rootTasks: [Task!]
|
|
3746
4299
|
startDate: String
|
|
3747
4300
|
state: String!
|
|
3748
4301
|
structuralSafetyRate: Float
|
|
@@ -3754,25 +4307,92 @@ type Project {
|
|
|
3754
4307
|
}
|
|
3755
4308
|
|
|
3756
4309
|
type ProjectList {
|
|
4310
|
+
"""프로젝트 리스트 항목들"""
|
|
3757
4311
|
items: [Project!]!
|
|
4312
|
+
|
|
4313
|
+
"""전체 프로젝트 수"""
|
|
3758
4314
|
total: Int!
|
|
3759
4315
|
}
|
|
3760
4316
|
|
|
3761
4317
|
input ProjectPatch {
|
|
3762
4318
|
buildingComplex: BuildingComplexPatch
|
|
4319
|
+
|
|
4320
|
+
"""프로젝트 준공일정"""
|
|
3763
4321
|
endDate: String
|
|
4322
|
+
|
|
4323
|
+
"""수정할 프로젝트의 ID"""
|
|
3764
4324
|
id: String!
|
|
4325
|
+
|
|
4326
|
+
"""검측/통과 비율 (%)"""
|
|
3765
4327
|
inspPassRate: Float
|
|
4328
|
+
|
|
4329
|
+
"""프로젝트 KPI"""
|
|
3766
4330
|
kpi: Float
|
|
4331
|
+
|
|
4332
|
+
"""프로젝트 대표 사진 업로드"""
|
|
3767
4333
|
mainPhotoUpload: Upload
|
|
4334
|
+
|
|
4335
|
+
"""프로젝트 이름"""
|
|
3768
4336
|
name: String!
|
|
4337
|
+
|
|
4338
|
+
"""로봇 작업 진행율 (%)"""
|
|
3769
4339
|
robotProgressRate: Float
|
|
4340
|
+
|
|
4341
|
+
"""프로젝트 착공일정"""
|
|
3770
4342
|
startDate: String
|
|
4343
|
+
|
|
4344
|
+
"""구조 안전도 (%)"""
|
|
3771
4345
|
structuralSafetyRate: Float
|
|
4346
|
+
|
|
4347
|
+
"""프로젝트 전체 진행현황 (%)"""
|
|
3772
4348
|
totalProgress: Float
|
|
4349
|
+
|
|
4350
|
+
"""프로젝트 주간 진행현황 (%)"""
|
|
3773
4351
|
weeklyProgress: Float
|
|
3774
4352
|
}
|
|
3775
4353
|
|
|
4354
|
+
"""Entity for ProjectReport"""
|
|
4355
|
+
type ProjectReport {
|
|
4356
|
+
active: Boolean
|
|
4357
|
+
content: String
|
|
4358
|
+
createdAt: DateTimeISO
|
|
4359
|
+
creator: User
|
|
4360
|
+
date: DateTimeISO
|
|
4361
|
+
deletedAt: DateTimeISO
|
|
4362
|
+
description: String
|
|
4363
|
+
domain: Domain
|
|
4364
|
+
id: ID!
|
|
4365
|
+
name: String
|
|
4366
|
+
params: String
|
|
4367
|
+
project: Project!
|
|
4368
|
+
state: String
|
|
4369
|
+
supervisor: Supervisor!
|
|
4370
|
+
thumbnail: String
|
|
4371
|
+
updatedAt: DateTimeISO
|
|
4372
|
+
updater: User
|
|
4373
|
+
}
|
|
4374
|
+
|
|
4375
|
+
type ProjectReportList {
|
|
4376
|
+
items: [ProjectReport!]!
|
|
4377
|
+
total: Int!
|
|
4378
|
+
}
|
|
4379
|
+
|
|
4380
|
+
input ProjectReportPatch {
|
|
4381
|
+
active: Boolean
|
|
4382
|
+
cuFlag: String
|
|
4383
|
+
description: String
|
|
4384
|
+
id: ID
|
|
4385
|
+
name: String
|
|
4386
|
+
state: ProjectReportStatus
|
|
4387
|
+
thumbnail: Upload
|
|
4388
|
+
}
|
|
4389
|
+
|
|
4390
|
+
"""state enumeration of a projectReport"""
|
|
4391
|
+
enum ProjectReportStatus {
|
|
4392
|
+
STATUS_A
|
|
4393
|
+
STATUS_B
|
|
4394
|
+
}
|
|
4395
|
+
|
|
3776
4396
|
type PropertySpec {
|
|
3777
4397
|
label: String!
|
|
3778
4398
|
name: String!
|
|
@@ -3784,6 +4404,12 @@ type PropertySpec {
|
|
|
3784
4404
|
|
|
3785
4405
|
type Query {
|
|
3786
4406
|
APIDocCompletion(input: APIDocCompletionInput!): APIDocCompletionOutput!
|
|
4407
|
+
|
|
4408
|
+
"""To fetch a ActionPlan"""
|
|
4409
|
+
actionPlan(id: String!): ActionPlan
|
|
4410
|
+
|
|
4411
|
+
"""To fetch multiple ActionPlans"""
|
|
4412
|
+
actionPlans(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActionPlanList!
|
|
3787
4413
|
appBinding(id: String!): AppBinding!
|
|
3788
4414
|
appBindings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AppBindingList!
|
|
3789
4415
|
|
|
@@ -3865,33 +4491,66 @@ type Query {
|
|
|
3865
4491
|
buildingBuildingComplex(id: String!): BuildingComplex
|
|
3866
4492
|
|
|
3867
4493
|
"""To fetch a BuildingInspection"""
|
|
3868
|
-
|
|
3869
|
-
chatCompletion(input: ChatCompletionInput!): ChatCompletionOutput!
|
|
4494
|
+
buildingInspection(id: String!): BuildingInspection
|
|
3870
4495
|
|
|
3871
|
-
"""To
|
|
3872
|
-
|
|
4496
|
+
"""To fetch a BuildingInspection Summary"""
|
|
4497
|
+
buildingInspectionSummaryOfBuildingLevel(buildingLevelId: String!): BuildingInspectionSummary
|
|
4498
|
+
|
|
4499
|
+
"""프로젝트의 검측상태 별 카운트"""
|
|
4500
|
+
buildingInspectionSummaryOfProject(projectId: String!): BuildingInspectionSummary!
|
|
4501
|
+
|
|
4502
|
+
"""To fetch multiple BuildingInspections"""
|
|
4503
|
+
buildingInspections(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BuildingInspectionList!
|
|
3873
4504
|
|
|
3874
|
-
"""To fetch
|
|
3875
|
-
|
|
4505
|
+
"""To fetch multiple BuildingInspections"""
|
|
4506
|
+
buildingInspectionsOfBuildingLevel(params: BuildingInspectionsOfBuildingLevel!): BuildingInspectionList!
|
|
3876
4507
|
|
|
3877
|
-
"""To fetch multiple
|
|
3878
|
-
|
|
4508
|
+
"""To fetch multiple BuildingInspections"""
|
|
4509
|
+
buildingInspectionsOfProject(params: BuildingInspectionsOfProject!): BuildingInspectionList!
|
|
4510
|
+
chatCompletion(input: ChatCompletionInput!): ChatCompletionOutput!
|
|
4511
|
+
|
|
4512
|
+
"""
|
|
4513
|
+
Checks if the system is configured to provide a default password for new users.
|
|
4514
|
+
"""
|
|
4515
|
+
checkDefaultPassword: Boolean!
|
|
3879
4516
|
|
|
3880
|
-
"""
|
|
4517
|
+
"""
|
|
4518
|
+
Determines whether the system provides a default password when creating a new user.
|
|
4519
|
+
"""
|
|
3881
4520
|
checkResettablePasswordToDefault: Boolean!
|
|
3882
4521
|
|
|
3883
4522
|
"""To fetch the preset of role for new user"""
|
|
3884
4523
|
checkRolePreset: [Role!]!
|
|
3885
4524
|
|
|
3886
|
-
"""
|
|
4525
|
+
"""
|
|
4526
|
+
Checks if the current authenticated user belongs to the current domain.
|
|
4527
|
+
"""
|
|
3887
4528
|
checkUserBelongsDomain: Boolean!
|
|
3888
4529
|
|
|
3889
|
-
"""
|
|
4530
|
+
"""Checks if a user with the given email address exists in the system."""
|
|
3890
4531
|
checkUserExistence(email: EmailAddress!): Boolean!
|
|
3891
4532
|
|
|
3892
4533
|
"""To fetch a Checklist"""
|
|
3893
4534
|
checklist(id: String!): Checklist
|
|
3894
4535
|
|
|
4536
|
+
"""To fetch a ChecklistItem"""
|
|
4537
|
+
checklistItem(id: String!): ChecklistItem
|
|
4538
|
+
|
|
4539
|
+
"""To fetch multiple ChecklistItems"""
|
|
4540
|
+
checklistItems(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ChecklistItemList!
|
|
4541
|
+
|
|
4542
|
+
"""To fetch a ChecklistTemplateItem"""
|
|
4543
|
+
checklistTemplateItem(id: String!): ChecklistTemplateItem
|
|
4544
|
+
|
|
4545
|
+
"""To fetch multiple ChecklistTemplateItems"""
|
|
4546
|
+
checklistTemplateItems(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ChecklistTemplateItemList!
|
|
4547
|
+
|
|
4548
|
+
"""To fetch multiple ChecklistTemplates"""
|
|
4549
|
+
checklistTemplates(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ChecklistTemplateList!
|
|
4550
|
+
|
|
4551
|
+
"""To fetch multiple ChecklistTypes"""
|
|
4552
|
+
checklistTypes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ChecklistTypeList!
|
|
4553
|
+
|
|
3895
4554
|
"""To fetch multiple Checklists"""
|
|
3896
4555
|
checklists(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ChecklistList!
|
|
3897
4556
|
|
|
@@ -3922,6 +4581,9 @@ type Query {
|
|
|
3922
4581
|
"""To fetch multiple connector"""
|
|
3923
4582
|
connectors: ConnectorList!
|
|
3924
4583
|
|
|
4584
|
+
"""To fetch multiple ConstructionDetailTypes"""
|
|
4585
|
+
constructionDetailTypes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ConstructionDetailTypeList!
|
|
4586
|
+
|
|
3925
4587
|
"""To fetch a ConstructionType"""
|
|
3926
4588
|
constructionType(id: String!): ConstructionType
|
|
3927
4589
|
|
|
@@ -3958,10 +4620,14 @@ type Query {
|
|
|
3958
4620
|
"""To fetch multiple appliance"""
|
|
3959
4621
|
edges(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApplianceList!
|
|
3960
4622
|
|
|
3961
|
-
"""
|
|
4623
|
+
"""
|
|
4624
|
+
Fetches a specific employee by their unique ID. Returns the employee object if found, or null if not found.
|
|
4625
|
+
"""
|
|
3962
4626
|
employee(id: String!): Employee
|
|
3963
4627
|
|
|
3964
|
-
"""
|
|
4628
|
+
"""
|
|
4629
|
+
Fetches a list of employees based on provided query parameters. Supports searching by name, control number, and alias.
|
|
4630
|
+
"""
|
|
3965
4631
|
employees(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EmployeeList!
|
|
3966
4632
|
|
|
3967
4633
|
"""To fetch multiple Entities"""
|
|
@@ -4010,14 +4676,29 @@ type Query {
|
|
|
4010
4676
|
i18nCompletion(input: i18nCompletionInput!): i18nCompletionOutput!
|
|
4011
4677
|
imageCompletion(input: ImageCompletionInput!): ImageCompletionOutput!
|
|
4012
4678
|
|
|
4013
|
-
"""
|
|
4014
|
-
|
|
4679
|
+
"""To fetch a InspectionDrawingType"""
|
|
4680
|
+
inspectionDrawingType(id: String!): InspectionDrawingType
|
|
4681
|
+
|
|
4682
|
+
"""To fetch multiple InspectionDrawingTypes"""
|
|
4683
|
+
inspectionDrawingTypes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): InspectionDrawingTypeList!
|
|
4684
|
+
|
|
4685
|
+
"""To fetch a InspectionPart"""
|
|
4686
|
+
inspectionPart(id: String!): InspectionPart
|
|
4687
|
+
|
|
4688
|
+
"""To fetch multiple InspectionParts"""
|
|
4689
|
+
inspectionParts(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): InspectionPartList!
|
|
4015
4690
|
|
|
4016
4691
|
"""To fetch integration Analyses"""
|
|
4017
4692
|
integrationAnalysis: Object!
|
|
4018
4693
|
invitation(email: EmailAddress!, reference: String!, type: String!): Invitation!
|
|
4019
4694
|
invitations(reference: String!, type: String!): InvitationList!
|
|
4020
4695
|
|
|
4696
|
+
"""To fetch a Issue"""
|
|
4697
|
+
issue(id: String!): Issue
|
|
4698
|
+
|
|
4699
|
+
"""To fetch multiple Issues"""
|
|
4700
|
+
issues(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): IssueList!
|
|
4701
|
+
|
|
4021
4702
|
"""To fetch a LiteMenu"""
|
|
4022
4703
|
liteMenu(id: String!): LiteMenu!
|
|
4023
4704
|
|
|
@@ -4134,6 +4815,11 @@ type Query {
|
|
|
4134
4815
|
partnerSettings(filters: [Filter!]!, pagination: Pagination!, partnerDomain: ObjectRef!, sortings: [Sorting!]!): PartnerSettingList!
|
|
4135
4816
|
partners(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PartnerList!
|
|
4136
4817
|
|
|
4818
|
+
"""
|
|
4819
|
+
Retrieves the current password rule configuration for the system, such as required character types and minimum length.
|
|
4820
|
+
"""
|
|
4821
|
+
passwordRule: PasswordRule!
|
|
4822
|
+
|
|
4137
4823
|
"""To fetch a PayloadLog"""
|
|
4138
4824
|
payloadLog(id: String!): PayloadLog!
|
|
4139
4825
|
|
|
@@ -4164,8 +4850,26 @@ type Query {
|
|
|
4164
4850
|
"""To fetch a Project"""
|
|
4165
4851
|
project(id: String!): Project
|
|
4166
4852
|
|
|
4853
|
+
"""To fetch a Project"""
|
|
4854
|
+
projectByBuildingComplexId(buildingComplexId: String!): Project
|
|
4855
|
+
|
|
4856
|
+
"""To fetch Project"""
|
|
4857
|
+
projectByBuildingLevelId(buildingLevelId: String!): Project!
|
|
4858
|
+
|
|
4859
|
+
"""To fetch a ProjectReport"""
|
|
4860
|
+
projectReport(id: String!): ProjectReport
|
|
4861
|
+
|
|
4862
|
+
"""To fetch multiple ProjectReports"""
|
|
4863
|
+
projectReports(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ProjectReportList!
|
|
4864
|
+
|
|
4167
4865
|
"""프로젝트 리스트"""
|
|
4168
|
-
projects(
|
|
4866
|
+
projects(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ProjectList!
|
|
4867
|
+
|
|
4868
|
+
"""To fetch a Resource"""
|
|
4869
|
+
resource(id: String!): Resource
|
|
4870
|
+
|
|
4871
|
+
"""To fetch multiple Resources"""
|
|
4872
|
+
resources(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ResourceList!
|
|
4169
4873
|
|
|
4170
4874
|
"""To fetch role"""
|
|
4171
4875
|
role(name: String!): Role!
|
|
@@ -4216,9 +4920,21 @@ type Query {
|
|
|
4216
4920
|
"""To fetch multiple steps"""
|
|
4217
4921
|
steps(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): StepList!
|
|
4218
4922
|
|
|
4219
|
-
"""To fetch a
|
|
4923
|
+
"""To fetch a Supervisor"""
|
|
4924
|
+
supervisor(id: String!): Supervisor
|
|
4925
|
+
|
|
4926
|
+
"""To fetch multiple Supervisors"""
|
|
4927
|
+
supervisors(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): SupervisorList!
|
|
4928
|
+
|
|
4929
|
+
"""Fetch a single Task by its ID"""
|
|
4220
4930
|
task(id: String!): Task
|
|
4221
4931
|
|
|
4932
|
+
"""To fetch a TaskResource"""
|
|
4933
|
+
taskResource(id: String!): TaskResource
|
|
4934
|
+
|
|
4935
|
+
"""To fetch multiple TaskResources"""
|
|
4936
|
+
taskResources(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): TaskResourceList!
|
|
4937
|
+
|
|
4222
4938
|
"""To fetch a task-type"""
|
|
4223
4939
|
taskType(name: String!): TaskType!
|
|
4224
4940
|
|
|
@@ -4228,7 +4944,7 @@ type Query {
|
|
|
4228
4944
|
"""To fetch the connector from a task-type"""
|
|
4229
4945
|
taskTypesByConnection(connectionName: String!): TaskTypeList!
|
|
4230
4946
|
|
|
4231
|
-
"""
|
|
4947
|
+
"""Fetch multiple Tasks based on list parameters"""
|
|
4232
4948
|
tasks(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): TaskList!
|
|
4233
4949
|
|
|
4234
4950
|
"""To fetch multiple Terminologies"""
|
|
@@ -4243,7 +4959,7 @@ type Query {
|
|
|
4243
4959
|
"""To fetch multiple Themes"""
|
|
4244
4960
|
themes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ThemeList!
|
|
4245
4961
|
|
|
4246
|
-
"""
|
|
4962
|
+
"""Fetches a user by their email address within the current domain."""
|
|
4247
4963
|
user(email: EmailAddress!): User!
|
|
4248
4964
|
|
|
4249
4965
|
"""To fetch Menus by role"""
|
|
@@ -4252,7 +4968,9 @@ type Query {
|
|
|
4252
4968
|
"""To fetch roles of a user"""
|
|
4253
4969
|
userRoles(userId: String!): [UserRole!]!
|
|
4254
4970
|
|
|
4255
|
-
"""
|
|
4971
|
+
"""
|
|
4972
|
+
Fetches a list of users based on provided search parameters within the current domain.
|
|
4973
|
+
"""
|
|
4256
4974
|
users(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): UserList!
|
|
4257
4975
|
vendors: [Domain!]!
|
|
4258
4976
|
|
|
@@ -4269,6 +4987,40 @@ type RecipientItem {
|
|
|
4269
4987
|
value: String
|
|
4270
4988
|
}
|
|
4271
4989
|
|
|
4990
|
+
"""자원"""
|
|
4991
|
+
type Resource {
|
|
4992
|
+
createdAt: DateTimeISO
|
|
4993
|
+
creator: User
|
|
4994
|
+
deletedAt: DateTimeISO
|
|
4995
|
+
domain: Domain
|
|
4996
|
+
id: ID!
|
|
4997
|
+
name: String!
|
|
4998
|
+
type: String!
|
|
4999
|
+
unit: String!
|
|
5000
|
+
updatedAt: DateTimeISO
|
|
5001
|
+
updater: User
|
|
5002
|
+
}
|
|
5003
|
+
|
|
5004
|
+
type ResourceList {
|
|
5005
|
+
items: [Resource!]!
|
|
5006
|
+
total: Int!
|
|
5007
|
+
}
|
|
5008
|
+
|
|
5009
|
+
input ResourcePatch {
|
|
5010
|
+
cuFlag: String
|
|
5011
|
+
id: ID
|
|
5012
|
+
name: String
|
|
5013
|
+
type: ResourceType
|
|
5014
|
+
unit: String
|
|
5015
|
+
}
|
|
5016
|
+
|
|
5017
|
+
"""자원 유형"""
|
|
5018
|
+
enum ResourceType {
|
|
5019
|
+
EQUIPMENT
|
|
5020
|
+
HUMAN
|
|
5021
|
+
MATERIAL
|
|
5022
|
+
}
|
|
5023
|
+
|
|
4272
5024
|
type Role {
|
|
4273
5025
|
createdAt: DateTimeISO
|
|
4274
5026
|
creator: User
|
|
@@ -4320,6 +5072,7 @@ type Scenario {
|
|
|
4320
5072
|
"""accessible and executable system-wide"""
|
|
4321
5073
|
public: Boolean
|
|
4322
5074
|
publishTags: [Connection!]!
|
|
5075
|
+
role: Role
|
|
4323
5076
|
schedule: String
|
|
4324
5077
|
scheduleId: String
|
|
4325
5078
|
state: String
|
|
@@ -4401,7 +5154,7 @@ input ScenarioPatch {
|
|
|
4401
5154
|
description: String
|
|
4402
5155
|
id: ID
|
|
4403
5156
|
name: String
|
|
4404
|
-
|
|
5157
|
+
role: ObjectRef
|
|
4405
5158
|
schedule: String
|
|
4406
5159
|
steps: [StepPatch!]
|
|
4407
5160
|
timezone: String
|
|
@@ -4617,35 +5370,132 @@ type Subscription {
|
|
|
4617
5370
|
scenarioQueueState: ScenarioQueueState!
|
|
4618
5371
|
}
|
|
4619
5372
|
|
|
5373
|
+
"""Entity for Supervisor"""
|
|
5374
|
+
type Supervisor {
|
|
5375
|
+
active: Boolean
|
|
5376
|
+
createdAt: DateTimeISO
|
|
5377
|
+
creator: User
|
|
5378
|
+
deletedAt: DateTimeISO
|
|
5379
|
+
description: String
|
|
5380
|
+
domain: Domain
|
|
5381
|
+
email: String
|
|
5382
|
+
id: ID!
|
|
5383
|
+
name: String
|
|
5384
|
+
params: String
|
|
5385
|
+
phoneNumber: String
|
|
5386
|
+
reports: [ProjectReport!]!
|
|
5387
|
+
state: String
|
|
5388
|
+
thumbnail: String
|
|
5389
|
+
updatedAt: DateTimeISO
|
|
5390
|
+
updater: User
|
|
5391
|
+
}
|
|
5392
|
+
|
|
5393
|
+
type SupervisorList {
|
|
5394
|
+
items: [Supervisor!]!
|
|
5395
|
+
total: Int!
|
|
5396
|
+
}
|
|
5397
|
+
|
|
5398
|
+
input SupervisorPatch {
|
|
5399
|
+
active: Boolean
|
|
5400
|
+
cuFlag: String
|
|
5401
|
+
description: String
|
|
5402
|
+
id: ID
|
|
5403
|
+
name: String
|
|
5404
|
+
state: SupervisorStatus
|
|
5405
|
+
thumbnail: Upload
|
|
5406
|
+
}
|
|
5407
|
+
|
|
5408
|
+
"""state enumeration of a supervisor"""
|
|
5409
|
+
enum SupervisorStatus {
|
|
5410
|
+
STATUS_A
|
|
5411
|
+
STATUS_B
|
|
5412
|
+
}
|
|
5413
|
+
|
|
4620
5414
|
"""공정표 작업 정보"""
|
|
4621
5415
|
type Task {
|
|
4622
|
-
|
|
5416
|
+
children(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): [Task!]
|
|
5417
|
+
code: String!
|
|
4623
5418
|
createdAt: DateTimeISO
|
|
4624
5419
|
creator: User
|
|
4625
5420
|
deletedAt: DateTimeISO
|
|
5421
|
+
dependsOn: String
|
|
5422
|
+
duration: Float
|
|
4626
5423
|
endDate: DateTimeISO
|
|
4627
5424
|
id: ID!
|
|
5425
|
+
|
|
5426
|
+
"""Calculate the duration of the task in days"""
|
|
5427
|
+
length: String
|
|
4628
5428
|
name: String
|
|
4629
|
-
|
|
5429
|
+
parent: Task
|
|
5430
|
+
progress: Float
|
|
4630
5431
|
project: Project!
|
|
5432
|
+
|
|
5433
|
+
"""Return the simple list of resources allocated to the task"""
|
|
5434
|
+
resources: [DigestedResource!]!
|
|
4631
5435
|
startDate: DateTimeISO
|
|
4632
|
-
|
|
5436
|
+
tags: Object
|
|
5437
|
+
taskResources: [TaskResource!]
|
|
4633
5438
|
type: String
|
|
4634
5439
|
updatedAt: DateTimeISO
|
|
4635
5440
|
updater: User
|
|
4636
5441
|
}
|
|
4637
5442
|
|
|
4638
5443
|
type TaskList {
|
|
5444
|
+
"""작업 리스트 항목들"""
|
|
4639
5445
|
items: [Task!]!
|
|
5446
|
+
|
|
5447
|
+
"""전체 작업 수"""
|
|
4640
5448
|
total: Int!
|
|
4641
5449
|
}
|
|
4642
5450
|
|
|
4643
5451
|
input TaskPatch {
|
|
5452
|
+
"""작업이 활성 상태인지 여부 (선택 사항)"""
|
|
4644
5453
|
active: Boolean
|
|
5454
|
+
|
|
5455
|
+
"""프로젝트 내에서 유니크한 작업 코드 (선택 사항)"""
|
|
5456
|
+
code: String
|
|
5457
|
+
|
|
5458
|
+
"""생성('+') 또는 수정('M') 플래그 (선택 사항)"""
|
|
4645
5459
|
cuFlag: String
|
|
5460
|
+
|
|
5461
|
+
"""작업에 대한 설명 (선택 사항)"""
|
|
4646
5462
|
description: String
|
|
5463
|
+
|
|
5464
|
+
"""수정할 작업의 ID (선택 사항)"""
|
|
4647
5465
|
id: ID
|
|
5466
|
+
|
|
5467
|
+
"""작업의 이름 (선택 사항)"""
|
|
4648
5468
|
name: String
|
|
5469
|
+
|
|
5470
|
+
"""부모 작업, 해당 작업이 하위 작업인 경우 (선택 사항)"""
|
|
5471
|
+
parent: ObjectRefForTask
|
|
5472
|
+
|
|
5473
|
+
"""작업이 속한 프로젝트 (선택 사항)"""
|
|
5474
|
+
project: ObjectRefForProject
|
|
5475
|
+
}
|
|
5476
|
+
|
|
5477
|
+
"""작업에 소요되는 자원"""
|
|
5478
|
+
type TaskResource {
|
|
5479
|
+
createdAt: DateTimeISO
|
|
5480
|
+
deletedAt: DateTimeISO
|
|
5481
|
+
id: ID!
|
|
5482
|
+
quantity: Float!
|
|
5483
|
+
resource: Resource!
|
|
5484
|
+
task: Task!
|
|
5485
|
+
updatedAt: DateTimeISO
|
|
5486
|
+
}
|
|
5487
|
+
|
|
5488
|
+
type TaskResourceList {
|
|
5489
|
+
items: [TaskResource!]!
|
|
5490
|
+
total: Int!
|
|
5491
|
+
}
|
|
5492
|
+
|
|
5493
|
+
input TaskResourcePatch {
|
|
5494
|
+
cuFlag: String
|
|
5495
|
+
id: ID
|
|
5496
|
+
quantity: Float
|
|
5497
|
+
resourceId: ID
|
|
5498
|
+
taskId: ID
|
|
4649
5499
|
}
|
|
4650
5500
|
|
|
4651
5501
|
type TaskType {
|
|
@@ -4722,6 +5572,17 @@ input ThemePatch {
|
|
|
4722
5572
|
value: Object
|
|
4723
5573
|
}
|
|
4724
5574
|
|
|
5575
|
+
input UpdateBuildingInspectionDrawingMarker {
|
|
5576
|
+
drawingMarker: String
|
|
5577
|
+
id: String!
|
|
5578
|
+
}
|
|
5579
|
+
|
|
5580
|
+
input UpdateBuildingInspectionSubmitType {
|
|
5581
|
+
checklist: ChecklistSubmitInputType!
|
|
5582
|
+
checklistItem: [ChecklistItemSubmitInputType!]!
|
|
5583
|
+
id: String!
|
|
5584
|
+
}
|
|
5585
|
+
|
|
4725
5586
|
"""The `Upload` scalar type represents a file upload."""
|
|
4726
5587
|
scalar Upload
|
|
4727
5588
|
|