@dssp/dssp 0.0.8 → 0.0.10
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 +980 -142
- 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,76 @@ 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
|
+
constructionInsprctionDate: 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
|
+
supervisorInsprctionDate: 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
|
+
type ChecklistList {
|
|
709
|
+
items: [Checklist!]!
|
|
615
710
|
total: Int!
|
|
616
711
|
}
|
|
617
712
|
|
|
618
|
-
input
|
|
713
|
+
input ChecklistPatch {
|
|
619
714
|
active: Boolean
|
|
620
715
|
cuFlag: String
|
|
621
716
|
description: String
|
|
@@ -623,42 +718,82 @@ input CheckItemPatch {
|
|
|
623
718
|
name: String
|
|
624
719
|
}
|
|
625
720
|
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
checkItems: CheckItem!
|
|
629
|
-
constructionInspectorDate: DateTimeISO
|
|
721
|
+
type ChecklistTemplate {
|
|
722
|
+
checklistTemplateItems: [ChecklistTemplateItem!]!
|
|
630
723
|
createdAt: DateTimeISO
|
|
631
724
|
creator: User
|
|
632
725
|
deletedAt: DateTimeISO
|
|
633
|
-
|
|
726
|
+
domain: Domain
|
|
634
727
|
id: ID!
|
|
635
|
-
location: String
|
|
636
728
|
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
729
|
updatedAt: DateTimeISO
|
|
646
730
|
updater: User
|
|
647
731
|
}
|
|
648
732
|
|
|
649
|
-
type
|
|
650
|
-
|
|
733
|
+
type ChecklistTemplateItem {
|
|
734
|
+
checklistTemplate: ChecklistTemplate
|
|
735
|
+
createdAt: DateTimeISO
|
|
736
|
+
creator: User
|
|
737
|
+
detailType: String!
|
|
738
|
+
id: ID!
|
|
739
|
+
inspctionCriteria: String
|
|
740
|
+
mainType: String!
|
|
741
|
+
name: String!
|
|
742
|
+
sequence: Int
|
|
743
|
+
updatedAt: DateTimeISO
|
|
744
|
+
updater: User
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
type ChecklistTemplateItemList {
|
|
748
|
+
items: [ChecklistTemplateItem!]!
|
|
651
749
|
total: Int!
|
|
652
750
|
}
|
|
653
751
|
|
|
654
|
-
input
|
|
655
|
-
|
|
752
|
+
input ChecklistTemplateItemPatch {
|
|
753
|
+
checklistTemplateId: String
|
|
754
|
+
cuFlag: String
|
|
755
|
+
detailType: String
|
|
756
|
+
id: ID
|
|
757
|
+
inspctionCriteria: String
|
|
758
|
+
mainType: String
|
|
759
|
+
name: String
|
|
760
|
+
sequence: Int
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
type ChecklistTemplateList {
|
|
764
|
+
items: [ChecklistTemplate!]!
|
|
765
|
+
total: Int!
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
input ChecklistTemplatePatch {
|
|
656
769
|
cuFlag: String
|
|
657
|
-
description: String
|
|
658
770
|
id: ID
|
|
659
771
|
name: String
|
|
660
772
|
}
|
|
661
773
|
|
|
774
|
+
type ChecklistType {
|
|
775
|
+
createdAt: DateTimeISO
|
|
776
|
+
creator: User
|
|
777
|
+
detailType: String!
|
|
778
|
+
domain: Domain
|
|
779
|
+
id: ID!
|
|
780
|
+
mainType: String!
|
|
781
|
+
updatedAt: DateTimeISO
|
|
782
|
+
updater: User
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
type ChecklistTypeList {
|
|
786
|
+
items: [ChecklistType!]!
|
|
787
|
+
total: Int!
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
input ChecklistTypePatch {
|
|
791
|
+
cuFlag: String
|
|
792
|
+
detailType: String
|
|
793
|
+
id: ID
|
|
794
|
+
mainType: String
|
|
795
|
+
}
|
|
796
|
+
|
|
662
797
|
input CodeDecipherInput {
|
|
663
798
|
code: String!
|
|
664
799
|
language: String
|
|
@@ -783,8 +918,33 @@ type ConnectorType {
|
|
|
783
918
|
taskPrefixes: [String!]
|
|
784
919
|
}
|
|
785
920
|
|
|
921
|
+
"""세부 공종 타입"""
|
|
922
|
+
type ConstructionDetailType {
|
|
923
|
+
constructionType: ConstructionType
|
|
924
|
+
createdAt: DateTimeISO
|
|
925
|
+
creator: User
|
|
926
|
+
id: ID!
|
|
927
|
+
name: String
|
|
928
|
+
sequence: Int
|
|
929
|
+
updatedAt: DateTimeISO
|
|
930
|
+
updater: User
|
|
931
|
+
}
|
|
932
|
+
|
|
933
|
+
type ConstructionDetailTypeList {
|
|
934
|
+
items: [ConstructionDetailType!]!
|
|
935
|
+
total: Int!
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
input ConstructionDetailTypePatch {
|
|
939
|
+
cuFlag: String
|
|
940
|
+
id: ID
|
|
941
|
+
name: String
|
|
942
|
+
sequence: Int
|
|
943
|
+
}
|
|
944
|
+
|
|
786
945
|
"""공종 타입"""
|
|
787
946
|
type ConstructionType {
|
|
947
|
+
constructionDetailTypes: [ConstructionDetailType!]
|
|
788
948
|
createdAt: DateTimeISO
|
|
789
949
|
creator: User
|
|
790
950
|
deletedAt: DateTimeISO
|
|
@@ -917,6 +1077,14 @@ input DepartmentPatch {
|
|
|
917
1077
|
picture: Upload
|
|
918
1078
|
}
|
|
919
1079
|
|
|
1080
|
+
type DigestedResource {
|
|
1081
|
+
"""할당량"""
|
|
1082
|
+
allocated: Float
|
|
1083
|
+
|
|
1084
|
+
"""자원 유형"""
|
|
1085
|
+
type: String
|
|
1086
|
+
}
|
|
1087
|
+
|
|
920
1088
|
type Domain {
|
|
921
1089
|
attributes: Object
|
|
922
1090
|
brandImage: String
|
|
@@ -985,9 +1153,11 @@ scalar EmailAddress @specifiedBy(url: "https://html.spec.whatwg.org/multipage/in
|
|
|
985
1153
|
"""Entity for Employee"""
|
|
986
1154
|
type Employee {
|
|
987
1155
|
active: Boolean
|
|
988
|
-
address: String
|
|
1156
|
+
address: String
|
|
989
1157
|
alias: String
|
|
990
1158
|
approvalLines: [ApprovalLine!]!
|
|
1159
|
+
bankAccount: String
|
|
1160
|
+
bankName: String
|
|
991
1161
|
contact: Contact
|
|
992
1162
|
controlNo: String!
|
|
993
1163
|
createdAt: DateTimeISO
|
|
@@ -996,8 +1166,10 @@ type Employee {
|
|
|
996
1166
|
department: Department
|
|
997
1167
|
domain: Domain!
|
|
998
1168
|
email: EmailAddress
|
|
1169
|
+
emergencyContact: String
|
|
1170
|
+
emergencyContactPhone: String
|
|
999
1171
|
extension: String
|
|
1000
|
-
hiredOn:
|
|
1172
|
+
hiredOn: DateTimeISO
|
|
1001
1173
|
id: ID!
|
|
1002
1174
|
jobPosition: String
|
|
1003
1175
|
jobResponsibility: String
|
|
@@ -1007,7 +1179,7 @@ type Employee {
|
|
|
1007
1179
|
phone: String
|
|
1008
1180
|
photo: String
|
|
1009
1181
|
profile: Profile
|
|
1010
|
-
|
|
1182
|
+
retiredOn: DateTimeISO
|
|
1011
1183
|
supervises: [Employee!]!
|
|
1012
1184
|
supervisor: Employee
|
|
1013
1185
|
type: String
|
|
@@ -1025,17 +1197,22 @@ type EmployeeList {
|
|
|
1025
1197
|
input EmployeePatch {
|
|
1026
1198
|
active: Boolean
|
|
1027
1199
|
alias: String
|
|
1200
|
+
bankAccount: String
|
|
1201
|
+
bankName: String
|
|
1202
|
+
contact: ObjectRefForContact
|
|
1028
1203
|
controlNo: String
|
|
1029
1204
|
cuFlag: String
|
|
1030
|
-
department:
|
|
1031
|
-
|
|
1205
|
+
department: ObjectRefForDepartment
|
|
1206
|
+
emergencyContact: String
|
|
1207
|
+
emergencyContactPhone: String
|
|
1208
|
+
hiredOn: DateTimeISO
|
|
1032
1209
|
id: ID
|
|
1033
1210
|
jobPosition: String
|
|
1034
1211
|
jobResponsibility: String
|
|
1035
1212
|
name: String
|
|
1036
1213
|
note: String
|
|
1037
1214
|
photo: Upload
|
|
1038
|
-
|
|
1215
|
+
retiredOn: DateTimeISO
|
|
1039
1216
|
supervisor: ObjectRefForEmployee
|
|
1040
1217
|
type: EmployeeType
|
|
1041
1218
|
user: ObjectRefForUser
|
|
@@ -1253,12 +1430,6 @@ input Filter {
|
|
|
1253
1430
|
value: Any
|
|
1254
1431
|
}
|
|
1255
1432
|
|
|
1256
|
-
type FloorInspectionSummary {
|
|
1257
|
-
fail: Int!
|
|
1258
|
-
pass: Int!
|
|
1259
|
-
request: Int!
|
|
1260
|
-
}
|
|
1261
|
-
|
|
1262
1433
|
"""Entity for Font"""
|
|
1263
1434
|
type Font {
|
|
1264
1435
|
active: Boolean!
|
|
@@ -1334,10 +1505,51 @@ enum InheritedValueType {
|
|
|
1334
1505
|
Only
|
|
1335
1506
|
}
|
|
1336
1507
|
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1508
|
+
"""Entity for InspectionDrawingType"""
|
|
1509
|
+
type InspectionDrawingType {
|
|
1510
|
+
createdAt: DateTimeISO
|
|
1511
|
+
creator: User
|
|
1512
|
+
domain: Domain
|
|
1513
|
+
id: ID!
|
|
1514
|
+
inspectionParts: [InspectionPart!]
|
|
1515
|
+
name: String
|
|
1516
|
+
updatedAt: DateTimeISO
|
|
1517
|
+
updater: User
|
|
1518
|
+
}
|
|
1519
|
+
|
|
1520
|
+
type InspectionDrawingTypeList {
|
|
1521
|
+
items: [InspectionDrawingType!]!
|
|
1522
|
+
total: Int!
|
|
1523
|
+
}
|
|
1524
|
+
|
|
1525
|
+
input InspectionDrawingTypePatch {
|
|
1526
|
+
cuFlag: String
|
|
1527
|
+
id: ID
|
|
1528
|
+
name: String
|
|
1529
|
+
}
|
|
1530
|
+
|
|
1531
|
+
"""Entity for InspectionPart"""
|
|
1532
|
+
type InspectionPart {
|
|
1533
|
+
createdAt: DateTimeISO
|
|
1534
|
+
creator: User
|
|
1535
|
+
id: ID!
|
|
1536
|
+
inspectionDrawingType: InspectionDrawingType
|
|
1537
|
+
name: String
|
|
1538
|
+
sequence: Int
|
|
1539
|
+
updatedAt: DateTimeISO
|
|
1540
|
+
updater: User
|
|
1541
|
+
}
|
|
1542
|
+
|
|
1543
|
+
type InspectionPartList {
|
|
1544
|
+
items: [InspectionPart!]!
|
|
1545
|
+
total: Int!
|
|
1546
|
+
}
|
|
1547
|
+
|
|
1548
|
+
input InspectionPartPatch {
|
|
1549
|
+
cuFlag: String
|
|
1550
|
+
id: ID
|
|
1551
|
+
name: String
|
|
1552
|
+
sequence: Int
|
|
1341
1553
|
}
|
|
1342
1554
|
|
|
1343
1555
|
type Invitation {
|
|
@@ -1357,6 +1569,45 @@ type InvitationList {
|
|
|
1357
1569
|
total: Int
|
|
1358
1570
|
}
|
|
1359
1571
|
|
|
1572
|
+
"""Entity for Issue"""
|
|
1573
|
+
type Issue {
|
|
1574
|
+
actionPlans: [ActionPlan!]!
|
|
1575
|
+
active: Boolean
|
|
1576
|
+
createdAt: DateTimeISO
|
|
1577
|
+
creator: User
|
|
1578
|
+
deletedAt: DateTimeISO
|
|
1579
|
+
description: String
|
|
1580
|
+
domain: Domain
|
|
1581
|
+
id: ID!
|
|
1582
|
+
name: String
|
|
1583
|
+
params: String
|
|
1584
|
+
state: String
|
|
1585
|
+
thumbnail: String
|
|
1586
|
+
updatedAt: DateTimeISO
|
|
1587
|
+
updater: User
|
|
1588
|
+
}
|
|
1589
|
+
|
|
1590
|
+
type IssueList {
|
|
1591
|
+
items: [Issue!]!
|
|
1592
|
+
total: Int!
|
|
1593
|
+
}
|
|
1594
|
+
|
|
1595
|
+
input IssuePatch {
|
|
1596
|
+
active: Boolean
|
|
1597
|
+
cuFlag: String
|
|
1598
|
+
description: String
|
|
1599
|
+
id: ID
|
|
1600
|
+
name: String
|
|
1601
|
+
state: IssueStatus
|
|
1602
|
+
thumbnail: Upload
|
|
1603
|
+
}
|
|
1604
|
+
|
|
1605
|
+
"""state enumeration of a issue"""
|
|
1606
|
+
enum IssueStatus {
|
|
1607
|
+
STATUS_A
|
|
1608
|
+
STATUS_B
|
|
1609
|
+
}
|
|
1610
|
+
|
|
1360
1611
|
"""
|
|
1361
1612
|
A field whose value is a JSON Web Token (JWT): https://jwt.io/introduction.
|
|
1362
1613
|
"""
|
|
@@ -1377,8 +1628,8 @@ type LiteMenu {
|
|
|
1377
1628
|
labels: Object
|
|
1378
1629
|
name: String!
|
|
1379
1630
|
parent: String
|
|
1380
|
-
privilege: PrivilegeObject
|
|
1381
1631
|
rank: Int
|
|
1632
|
+
role: Role
|
|
1382
1633
|
type: String
|
|
1383
1634
|
updatedAt: DateTimeISO
|
|
1384
1635
|
updater: User
|
|
@@ -1398,8 +1649,8 @@ input LiteMenuPatch {
|
|
|
1398
1649
|
labels: Object
|
|
1399
1650
|
name: String
|
|
1400
1651
|
parent: String
|
|
1401
|
-
privilege: PrivilegeInput
|
|
1402
1652
|
rank: Int
|
|
1653
|
+
role: ObjectRef
|
|
1403
1654
|
type: String
|
|
1404
1655
|
value: String
|
|
1405
1656
|
}
|
|
@@ -1479,7 +1730,6 @@ type Menu {
|
|
|
1479
1730
|
name: String
|
|
1480
1731
|
pagination: Boolean
|
|
1481
1732
|
parent: Menu
|
|
1482
|
-
privilege: PrivilegeObject
|
|
1483
1733
|
rank: Float
|
|
1484
1734
|
resourceId: String
|
|
1485
1735
|
resourceName: String
|
|
@@ -1801,7 +2051,6 @@ input MenuPatch {
|
|
|
1801
2051
|
name: String
|
|
1802
2052
|
pagination: Boolean
|
|
1803
2053
|
parent: ObjectRef
|
|
1804
|
-
privilege: PrivilegeInput
|
|
1805
2054
|
rank: Int
|
|
1806
2055
|
resourceId: String
|
|
1807
2056
|
resourceName: String
|
|
@@ -1819,7 +2068,9 @@ type Mutation {
|
|
|
1819
2068
|
"""To activate user"""
|
|
1820
2069
|
activateUser(userId: String!): Boolean!
|
|
1821
2070
|
|
|
1822
|
-
"""
|
|
2071
|
+
"""
|
|
2072
|
+
Attaches an existing contact to an employee. The contact is identified by its ID and the employee is identified by their ID.
|
|
2073
|
+
"""
|
|
1823
2074
|
attachContact(contactId: String!, id: String!): Employee!
|
|
1824
2075
|
cancelInvitation(email: EmailAddress!, reference: String!, type: String!): Boolean!
|
|
1825
2076
|
|
|
@@ -1835,6 +2086,9 @@ type Mutation {
|
|
|
1835
2086
|
"""To import multiple scenarios"""
|
|
1836
2087
|
copyScenarios(ids: [String!]!): [Scenario!]!
|
|
1837
2088
|
|
|
2089
|
+
"""To create new ActionPlan"""
|
|
2090
|
+
createActionPlan(actionPlan: NewActionPlan!): ActionPlan!
|
|
2091
|
+
|
|
1838
2092
|
"""To create new appliance"""
|
|
1839
2093
|
createAppliance(appliance: NewAppliance!): Appliance!
|
|
1840
2094
|
|
|
@@ -1858,8 +2112,8 @@ type Mutation {
|
|
|
1858
2112
|
"""To create new BoardTemplate"""
|
|
1859
2113
|
createBoardTemplate(boardTemplate: NewBoardTemplate!): BoardTemplate!
|
|
1860
2114
|
|
|
1861
|
-
"""To create
|
|
1862
|
-
|
|
2115
|
+
"""To create Building Inspection information"""
|
|
2116
|
+
createBuildingInspection(patch: NewBuildingInspection!): BuildingInspection!
|
|
1863
2117
|
|
|
1864
2118
|
"""To create new Checklist"""
|
|
1865
2119
|
createChecklist(checklist: NewChecklist!): Checklist!
|
|
@@ -1882,7 +2136,9 @@ type Mutation {
|
|
|
1882
2136
|
"""To create domain (Only superuser is granted this privilege.)"""
|
|
1883
2137
|
createDomain(domainInput: DomainPatch!): Domain!
|
|
1884
2138
|
|
|
1885
|
-
"""
|
|
2139
|
+
"""
|
|
2140
|
+
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.
|
|
2141
|
+
"""
|
|
1886
2142
|
createEmployee(employee: NewEmployee!): Employee!
|
|
1887
2143
|
|
|
1888
2144
|
"""To create new Entity"""
|
|
@@ -1900,6 +2156,9 @@ type Mutation {
|
|
|
1900
2156
|
"""To create new Group"""
|
|
1901
2157
|
createGroup(group: NewGroup!): Group
|
|
1902
2158
|
|
|
2159
|
+
"""To create new Issue"""
|
|
2160
|
+
createIssue(issue: NewIssue!): Issue!
|
|
2161
|
+
|
|
1903
2162
|
"""To create new LiteMenu"""
|
|
1904
2163
|
createLiteMenu(liteMenu: NewLiteMenu!): LiteMenu!
|
|
1905
2164
|
|
|
@@ -1951,6 +2210,12 @@ type Mutation {
|
|
|
1951
2210
|
"""프로젝트 생성"""
|
|
1952
2211
|
createProject(project: NewProject!): Project!
|
|
1953
2212
|
|
|
2213
|
+
"""To create new ProjectReport"""
|
|
2214
|
+
createProjectReport(projectReport: NewProjectReport!): ProjectReport!
|
|
2215
|
+
|
|
2216
|
+
"""To create new Resource"""
|
|
2217
|
+
createResource(resource: NewResource!): Resource!
|
|
2218
|
+
|
|
1954
2219
|
"""To create new user"""
|
|
1955
2220
|
createRole(role: NewRole!): User!
|
|
1956
2221
|
|
|
@@ -1963,9 +2228,15 @@ type Mutation {
|
|
|
1963
2228
|
"""To create new StateRegister"""
|
|
1964
2229
|
createStateRegister(stateRegister: NewStateRegister!): StateRegister!
|
|
1965
2230
|
|
|
2231
|
+
"""To create new Supervisor"""
|
|
2232
|
+
createSupervisor(supervisor: NewSupervisor!): Supervisor!
|
|
2233
|
+
|
|
1966
2234
|
"""To create new Task"""
|
|
1967
2235
|
createTask(task: NewTask!): Task!
|
|
1968
2236
|
|
|
2237
|
+
"""To create new TaskResource"""
|
|
2238
|
+
createTaskResource(taskResource: NewTaskResource!): TaskResource!
|
|
2239
|
+
|
|
1969
2240
|
"""To create new Terminology"""
|
|
1970
2241
|
createTerminology(terminology: NewTerminology!): Terminology!
|
|
1971
2242
|
|
|
@@ -1977,6 +2248,12 @@ type Mutation {
|
|
|
1977
2248
|
|
|
1978
2249
|
"""To create new UserPreference"""
|
|
1979
2250
|
createUserPreference(preference: NewUserPreference!): UserPreference!
|
|
2251
|
+
|
|
2252
|
+
"""To delete ActionPlan"""
|
|
2253
|
+
deleteActionPlan(id: String!): Boolean!
|
|
2254
|
+
|
|
2255
|
+
"""To delete multiple ActionPlans"""
|
|
2256
|
+
deleteActionPlans(ids: [String!]!): Boolean!
|
|
1980
2257
|
deleteAppBinding(id: String!): Boolean!
|
|
1981
2258
|
|
|
1982
2259
|
"""To delete appliance"""
|
|
@@ -2018,17 +2295,23 @@ type Mutation {
|
|
|
2018
2295
|
"""To delete multiple BuildingComplexes"""
|
|
2019
2296
|
deleteBuildingComplexes(ids: [String!]!): Boolean!
|
|
2020
2297
|
|
|
2298
|
+
"""To delete multiple Checklists"""
|
|
2299
|
+
deleteBuildingInspections(ids: [String!]!): Boolean!
|
|
2300
|
+
|
|
2021
2301
|
"""To delete multiple Buildings"""
|
|
2022
2302
|
deleteBuildings(ids: [String!]!): Boolean!
|
|
2023
2303
|
|
|
2024
|
-
"""To delete
|
|
2025
|
-
|
|
2304
|
+
"""To delete ChecklistTemplateItem"""
|
|
2305
|
+
deleteChecklistTemplateItem(id: String!): Boolean!
|
|
2026
2306
|
|
|
2027
|
-
"""To delete multiple
|
|
2028
|
-
|
|
2307
|
+
"""To delete multiple ChecklistTemplateItems"""
|
|
2308
|
+
deleteChecklistTemplateItems(ids: [String!]!): Boolean!
|
|
2029
2309
|
|
|
2030
|
-
"""To delete
|
|
2031
|
-
|
|
2310
|
+
"""To delete multiple ChecklistTemplates"""
|
|
2311
|
+
deleteChecklistTemplates(ids: [String!]!): Boolean!
|
|
2312
|
+
|
|
2313
|
+
"""To delete multiple ChecklistTypes"""
|
|
2314
|
+
deleteChecklistTypes(ids: [String!]!): Boolean!
|
|
2032
2315
|
|
|
2033
2316
|
"""To delete multiple Checklists"""
|
|
2034
2317
|
deleteChecklists(ids: [String!]!): Boolean!
|
|
@@ -2051,6 +2334,9 @@ type Mutation {
|
|
|
2051
2334
|
"""To delete multiple connections"""
|
|
2052
2335
|
deleteConnections(names: [String!]!): Boolean!
|
|
2053
2336
|
|
|
2337
|
+
"""To delete multiple ConstructionDetailTypes"""
|
|
2338
|
+
deleteConstructionDetailTypes(ids: [String!]!): Boolean!
|
|
2339
|
+
|
|
2054
2340
|
"""To delete multiple ConstructionTypes"""
|
|
2055
2341
|
deleteConstructionTypes(ids: [String!]!): Boolean!
|
|
2056
2342
|
|
|
@@ -2075,10 +2361,14 @@ type Mutation {
|
|
|
2075
2361
|
"""To delete multiple domains (Only superuser is granted this privilege.)"""
|
|
2076
2362
|
deleteDomains(names: [String!]!): Boolean!
|
|
2077
2363
|
|
|
2078
|
-
"""
|
|
2364
|
+
"""
|
|
2365
|
+
Deletes an employee record identified by the given ID. Also deletes any attachments associated with the employee.
|
|
2366
|
+
"""
|
|
2079
2367
|
deleteEmployee(id: String!): Boolean!
|
|
2080
2368
|
|
|
2081
|
-
"""
|
|
2369
|
+
"""
|
|
2370
|
+
Deletes multiple employee records identified by the given IDs. Also deletes any attachments associated with each employee.
|
|
2371
|
+
"""
|
|
2082
2372
|
deleteEmployees(ids: [String!]!): Boolean!
|
|
2083
2373
|
|
|
2084
2374
|
"""To delete multiple Entities"""
|
|
@@ -2102,6 +2392,18 @@ type Mutation {
|
|
|
2102
2392
|
"""To delete Group"""
|
|
2103
2393
|
deleteGroup(id: String!): Boolean!
|
|
2104
2394
|
|
|
2395
|
+
"""To delete multiple InspectionDrawingTypes"""
|
|
2396
|
+
deleteInspectionDrawingTypes(ids: [String!]!): Boolean!
|
|
2397
|
+
|
|
2398
|
+
"""To delete multiple InspectionParts"""
|
|
2399
|
+
deleteInspectionParts(ids: [String!]!): Boolean!
|
|
2400
|
+
|
|
2401
|
+
"""To delete Issue"""
|
|
2402
|
+
deleteIssue(id: String!): Boolean!
|
|
2403
|
+
|
|
2404
|
+
"""To delete multiple Issues"""
|
|
2405
|
+
deleteIssues(ids: [String!]!): Boolean!
|
|
2406
|
+
|
|
2105
2407
|
"""To delete LiteMenu"""
|
|
2106
2408
|
deleteLiteMenu(id: String!): Boolean!
|
|
2107
2409
|
|
|
@@ -2201,6 +2503,18 @@ type Mutation {
|
|
|
2201
2503
|
"""To delete Project"""
|
|
2202
2504
|
deleteProject(id: String!): Boolean!
|
|
2203
2505
|
|
|
2506
|
+
"""To delete ProjectReport"""
|
|
2507
|
+
deleteProjectReport(id: String!): Boolean!
|
|
2508
|
+
|
|
2509
|
+
"""To delete multiple ProjectReports"""
|
|
2510
|
+
deleteProjectReports(ids: [String!]!): Boolean!
|
|
2511
|
+
|
|
2512
|
+
"""To delete Resource"""
|
|
2513
|
+
deleteResource(id: String!): Boolean!
|
|
2514
|
+
|
|
2515
|
+
"""To delete multiple Resources"""
|
|
2516
|
+
deleteResources(ids: [String!]!): Boolean!
|
|
2517
|
+
|
|
2204
2518
|
"""To delete role"""
|
|
2205
2519
|
deleteRole(id: String!): Boolean!
|
|
2206
2520
|
|
|
@@ -2228,9 +2542,21 @@ type Mutation {
|
|
|
2228
2542
|
"""To delete multiple steps"""
|
|
2229
2543
|
deleteSteps(ids: [String!]!): Boolean!
|
|
2230
2544
|
|
|
2545
|
+
"""To delete Supervisor"""
|
|
2546
|
+
deleteSupervisor(id: String!): Boolean!
|
|
2547
|
+
|
|
2548
|
+
"""To delete multiple Supervisors"""
|
|
2549
|
+
deleteSupervisors(ids: [String!]!): Boolean!
|
|
2550
|
+
|
|
2231
2551
|
"""To delete Task"""
|
|
2232
2552
|
deleteTask(id: String!): Boolean!
|
|
2233
2553
|
|
|
2554
|
+
"""To delete TaskResource"""
|
|
2555
|
+
deleteTaskResource(id: String!): Boolean!
|
|
2556
|
+
|
|
2557
|
+
"""To delete multiple TaskResources"""
|
|
2558
|
+
deleteTaskResources(ids: [String!]!): Boolean!
|
|
2559
|
+
|
|
2234
2560
|
"""To delete multiple Tasks"""
|
|
2235
2561
|
deleteTasks(ids: [String!]!): Boolean!
|
|
2236
2562
|
|
|
@@ -2261,7 +2587,9 @@ type Mutation {
|
|
|
2261
2587
|
"""To delete multiple WorkerTypes"""
|
|
2262
2588
|
deleteWorkerTypes(ids: [String!]!): Boolean!
|
|
2263
2589
|
|
|
2264
|
-
"""
|
|
2590
|
+
"""
|
|
2591
|
+
Detaches an existing contact from an employee. The employee is identified by their ID.
|
|
2592
|
+
"""
|
|
2265
2593
|
detachContact(id: String!): Employee!
|
|
2266
2594
|
|
|
2267
2595
|
"""To disconnect a connection"""
|
|
@@ -2276,6 +2604,9 @@ type Mutation {
|
|
|
2276
2604
|
getOauth2AuthUrl(id: String!): String!
|
|
2277
2605
|
grantRoles(customerId: String!, roles: [RolePatch!]!): Boolean!
|
|
2278
2606
|
|
|
2607
|
+
"""To import multiple ActionPlans"""
|
|
2608
|
+
importActionPlans(actionPlans: [ActionPlanPatch!]!): Boolean!
|
|
2609
|
+
|
|
2279
2610
|
"""To import multiple ApprovalLines"""
|
|
2280
2611
|
importApprovalLines(approvalLines: [ApprovalLinePatch!]!): Boolean!
|
|
2281
2612
|
|
|
@@ -2294,12 +2625,6 @@ type Mutation {
|
|
|
2294
2625
|
"""To import multiple Buildings"""
|
|
2295
2626
|
importBuildings(buildings: [BuildingPatch!]!): Boolean!
|
|
2296
2627
|
|
|
2297
|
-
"""To import multiple CheckItems"""
|
|
2298
|
-
importCheckItems(checkItems: [CheckItemPatch!]!): Boolean!
|
|
2299
|
-
|
|
2300
|
-
"""To import multiple Checklists"""
|
|
2301
|
-
importChecklists(checklists: [ChecklistPatch!]!): Boolean!
|
|
2302
|
-
|
|
2303
2628
|
"""To import multiple CommonCodeDetails"""
|
|
2304
2629
|
importCommonCodeDetails(commonCodeDetails: [CommonCodeDetailPatch!]!): Boolean!
|
|
2305
2630
|
|
|
@@ -2315,9 +2640,14 @@ type Mutation {
|
|
|
2315
2640
|
"""To import multiple Departments"""
|
|
2316
2641
|
importDepartments(departments: [DepartmentPatch!]!): Boolean!
|
|
2317
2642
|
|
|
2318
|
-
"""
|
|
2643
|
+
"""
|
|
2644
|
+
Imports multiple employee records into the system. Each employee record must be provided in the EmployeePatch format.
|
|
2645
|
+
"""
|
|
2319
2646
|
importEmployees(employees: [EmployeePatch!]!): Boolean!
|
|
2320
2647
|
|
|
2648
|
+
"""To import multiple Issues"""
|
|
2649
|
+
importIssues(issues: [IssuePatch!]!): Boolean!
|
|
2650
|
+
|
|
2321
2651
|
"""To import multiple MenuButtons"""
|
|
2322
2652
|
importMenuButtons(menuButtons: [MenuButtonPatch!]!): Boolean!
|
|
2323
2653
|
|
|
@@ -2342,12 +2672,24 @@ type Mutation {
|
|
|
2342
2672
|
"""To import multiple Oauth2Clients"""
|
|
2343
2673
|
importOauth2Clients(oauth2Clients: [Oauth2ClientPatch!]!): Boolean!
|
|
2344
2674
|
|
|
2675
|
+
"""To import multiple ProjectReports"""
|
|
2676
|
+
importProjectReports(projectReports: [ProjectReportPatch!]!): Boolean!
|
|
2677
|
+
|
|
2678
|
+
"""To import multiple Resources"""
|
|
2679
|
+
importResources(resources: [ResourcePatch!]!): Boolean!
|
|
2680
|
+
|
|
2345
2681
|
"""To import multiple scenarios"""
|
|
2346
2682
|
importScenarios(scenarios: [ScenarioPatch!]!): Boolean!
|
|
2347
2683
|
|
|
2348
2684
|
"""To import multiple StateRegisters"""
|
|
2349
2685
|
importStateRegisters(stateRegisters: [StateRegisterPatch!]!): Boolean!
|
|
2350
2686
|
|
|
2687
|
+
"""To import multiple Supervisors"""
|
|
2688
|
+
importSupervisors(supervisors: [SupervisorPatch!]!): Boolean!
|
|
2689
|
+
|
|
2690
|
+
"""To import multiple TaskResources"""
|
|
2691
|
+
importTaskResources(taskResources: [TaskResourcePatch!]!): Boolean!
|
|
2692
|
+
|
|
2351
2693
|
"""To import multiple Tasks"""
|
|
2352
2694
|
importTasks(tasks: [TaskPatch!]!): Boolean!
|
|
2353
2695
|
|
|
@@ -2392,6 +2734,14 @@ type Mutation {
|
|
|
2392
2734
|
visibility: String!
|
|
2393
2735
|
): BoardTemplate!
|
|
2394
2736
|
|
|
2737
|
+
"""
|
|
2738
|
+
Registers an existing employee as a system user, granting them access to the system. The employee is identified by their ID.
|
|
2739
|
+
"""
|
|
2740
|
+
registerEmployeeAsSystemUser(
|
|
2741
|
+
"""Employee Id"""
|
|
2742
|
+
employeeId: String!
|
|
2743
|
+
): Boolean!
|
|
2744
|
+
|
|
2395
2745
|
"""To release a Board"""
|
|
2396
2746
|
releaseBoard(id: String!): Board!
|
|
2397
2747
|
renewApplicationAccessToken(id: String!, scope: String!): AccessToken!
|
|
@@ -2435,6 +2785,9 @@ type Mutation {
|
|
|
2435
2785
|
|
|
2436
2786
|
"""To transfer owner of domain"""
|
|
2437
2787
|
transferOwner(email: EmailAddress!): Boolean!
|
|
2788
|
+
|
|
2789
|
+
"""To modify ActionPlan information"""
|
|
2790
|
+
updateActionPlan(id: String!, patch: ActionPlanPatch!): ActionPlan!
|
|
2438
2791
|
updateAppliance(id: String!, patch: AppliancePatch!): Appliance!
|
|
2439
2792
|
updateApplication(id: String!, patch: ApplicationPatch!): Application!
|
|
2440
2793
|
|
|
@@ -2460,8 +2813,8 @@ type Mutation {
|
|
|
2460
2813
|
"""To modify BuildingComplex information"""
|
|
2461
2814
|
updateBuildingComplex(id: String!, patch: BuildingComplexPatch!): BuildingComplex!
|
|
2462
2815
|
|
|
2463
|
-
"""To
|
|
2464
|
-
|
|
2816
|
+
"""To update Building Inspection information"""
|
|
2817
|
+
updateBuildingInspection(patch: UpdateBuildingInspection!): BuildingInspection!
|
|
2465
2818
|
|
|
2466
2819
|
"""To modify Checklist information"""
|
|
2467
2820
|
updateChecklist(id: String!, patch: ChecklistPatch!): Checklist!
|
|
@@ -2487,7 +2840,9 @@ type Mutation {
|
|
|
2487
2840
|
"""To update multiple domains (Only superuser is granted this privilege.)"""
|
|
2488
2841
|
updateDomains(patches: [DomainPatch!]!): Boolean!
|
|
2489
2842
|
|
|
2490
|
-
"""
|
|
2843
|
+
"""
|
|
2844
|
+
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.
|
|
2845
|
+
"""
|
|
2491
2846
|
updateEmployee(id: String!, patch: EmployeePatch!): Employee!
|
|
2492
2847
|
|
|
2493
2848
|
"""To modify Entity' information"""
|
|
@@ -2502,6 +2857,9 @@ type Mutation {
|
|
|
2502
2857
|
"""To modify Group information"""
|
|
2503
2858
|
updateGroup(id: String!, patch: GroupPatch!): Group!
|
|
2504
2859
|
|
|
2860
|
+
"""To modify Issue information"""
|
|
2861
|
+
updateIssue(id: String!, patch: IssuePatch!): Issue!
|
|
2862
|
+
|
|
2505
2863
|
"""To modify LiteMenu information"""
|
|
2506
2864
|
updateLiteMenu(id: String!, patch: LiteMenuPatch!): LiteMenu!
|
|
2507
2865
|
|
|
@@ -2523,6 +2881,9 @@ type Mutation {
|
|
|
2523
2881
|
"""To modify MenuDetailColumn information"""
|
|
2524
2882
|
updateMenuDetailColumn(id: String!, patch: MenuDetailColumnPatch!): MenuDetailColumn!
|
|
2525
2883
|
|
|
2884
|
+
"""To modify multiple ActionPlans' information"""
|
|
2885
|
+
updateMultipleActionPlan(patches: [ActionPlanPatch!]!): [ActionPlan!]!
|
|
2886
|
+
|
|
2526
2887
|
"""To modify multiple ApprovalLines' information"""
|
|
2527
2888
|
updateMultipleApprovalLine(patches: [ApprovalLinePatch!]!): [ApprovalLine!]!
|
|
2528
2889
|
|
|
@@ -2536,12 +2897,18 @@ type Mutation {
|
|
|
2536
2897
|
"""To modify multiple BuildingComplexes' information"""
|
|
2537
2898
|
updateMultipleBuildingComplex(patches: [BuildingComplexPatch!]!): [BuildingComplex!]!
|
|
2538
2899
|
|
|
2539
|
-
"""To modify multiple CheckItems' information"""
|
|
2540
|
-
updateMultipleCheckItem(patches: [CheckItemPatch!]!): [CheckItem!]!
|
|
2541
|
-
|
|
2542
2900
|
"""To modify multiple Checklists' information"""
|
|
2543
2901
|
updateMultipleChecklist(patches: [ChecklistPatch!]!): [Checklist!]!
|
|
2544
2902
|
|
|
2903
|
+
"""To modify multiple ChecklistTemplates' information"""
|
|
2904
|
+
updateMultipleChecklistTemplate(patches: [ChecklistTemplatePatch!]!): [ChecklistTemplate!]!
|
|
2905
|
+
|
|
2906
|
+
"""To modify multiple ChecklistTemplateItems' information"""
|
|
2907
|
+
updateMultipleChecklistTemplateItems(checklistTemplateId: String!, patches: [ChecklistTemplateItemPatch!]!): [ChecklistTemplateItem!]!
|
|
2908
|
+
|
|
2909
|
+
"""To modify multiple ChecklistTypes' information"""
|
|
2910
|
+
updateMultipleChecklistType(patches: [ChecklistTypePatch!]!): [ChecklistType!]!
|
|
2911
|
+
|
|
2545
2912
|
"""To modify multiple CommonCodes' information"""
|
|
2546
2913
|
updateMultipleCommonCode(patches: [CommonCodePatch!]!): [CommonCode!]!
|
|
2547
2914
|
|
|
@@ -2551,6 +2918,9 @@ type Mutation {
|
|
|
2551
2918
|
"""To modify multiple connections' information"""
|
|
2552
2919
|
updateMultipleConnection(patches: [ConnectionPatch!]!): [Connection!]!
|
|
2553
2920
|
|
|
2921
|
+
"""To modify multiple ConstructionDetailTypes' information"""
|
|
2922
|
+
updateMultipleConstructionDetailType(constructionTypeId: String!, patches: [ConstructionDetailTypePatch!]!): [ConstructionDetailType!]!
|
|
2923
|
+
|
|
2554
2924
|
"""To modify multiple ConstructionTypes' information"""
|
|
2555
2925
|
updateMultipleConstructionType(patches: [ConstructionTypePatch!]!): [ConstructionType!]!
|
|
2556
2926
|
|
|
@@ -2560,7 +2930,9 @@ type Mutation {
|
|
|
2560
2930
|
"""To modify multiple Departments' information"""
|
|
2561
2931
|
updateMultipleDepartment(patches: [DepartmentPatch!]!): [Department!]!
|
|
2562
2932
|
|
|
2563
|
-
"""
|
|
2933
|
+
"""
|
|
2934
|
+
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".
|
|
2935
|
+
"""
|
|
2564
2936
|
updateMultipleEmployee(patches: [EmployeePatch!]!): [Employee!]!
|
|
2565
2937
|
|
|
2566
2938
|
"""To modify multiple Entitys' information"""
|
|
@@ -2569,6 +2941,15 @@ type Mutation {
|
|
|
2569
2941
|
"""To modify multiple Entitys' information"""
|
|
2570
2942
|
updateMultipleEntityColumn(patches: [EntityColumnPatch!]!): [EntityColumn!]!
|
|
2571
2943
|
|
|
2944
|
+
"""To modify multiple InspectionDrawingTypes' information"""
|
|
2945
|
+
updateMultipleInspectionDrawingType(patches: [InspectionDrawingTypePatch!]!): [InspectionDrawingType!]!
|
|
2946
|
+
|
|
2947
|
+
"""To modify multiple InspectionParts' information"""
|
|
2948
|
+
updateMultipleInspectionPart(inspectionDrawingTypeId: String!, patches: [InspectionPartPatch!]!): [InspectionPart!]!
|
|
2949
|
+
|
|
2950
|
+
"""To modify multiple Issues' information"""
|
|
2951
|
+
updateMultipleIssue(patches: [IssuePatch!]!): [Issue!]!
|
|
2952
|
+
|
|
2572
2953
|
"""To modify multiple Managers' information"""
|
|
2573
2954
|
updateMultipleManager(patches: [ManagerPatch!]!): [Manager!]!
|
|
2574
2955
|
|
|
@@ -2593,6 +2974,12 @@ type Mutation {
|
|
|
2593
2974
|
"""To modify multiple PrinterDevices' information"""
|
|
2594
2975
|
updateMultiplePrinterDevice(patches: [PrinterDevicePatch!]!): [PrinterDevice!]!
|
|
2595
2976
|
|
|
2977
|
+
"""To modify multiple ProjectReports' information"""
|
|
2978
|
+
updateMultipleProjectReport(patches: [ProjectReportPatch!]!): [ProjectReport!]!
|
|
2979
|
+
|
|
2980
|
+
"""To modify multiple Resources' information"""
|
|
2981
|
+
updateMultipleResource(patches: [ResourcePatch!]!): [Resource!]!
|
|
2982
|
+
|
|
2596
2983
|
"""To modify multiple scenarios' information"""
|
|
2597
2984
|
updateMultipleScenario(patches: [ScenarioPatch!]!): [Scenario!]!
|
|
2598
2985
|
|
|
@@ -2605,9 +2992,15 @@ type Mutation {
|
|
|
2605
2992
|
"""To modify multiple steps' in a scenario"""
|
|
2606
2993
|
updateMultipleStep(patches: [StepPatch!]!, scenarioId: String!): [Step!]!
|
|
2607
2994
|
|
|
2995
|
+
"""To modify multiple Supervisors' information"""
|
|
2996
|
+
updateMultipleSupervisor(patches: [SupervisorPatch!]!): [Supervisor!]!
|
|
2997
|
+
|
|
2608
2998
|
"""To modify multiple Tasks' information"""
|
|
2609
2999
|
updateMultipleTask(patches: [TaskPatch!]!): [Task!]!
|
|
2610
3000
|
|
|
3001
|
+
"""To modify multiple TaskResources' information"""
|
|
3002
|
+
updateMultipleTaskResource(patches: [TaskResourcePatch!]!): [TaskResource!]!
|
|
3003
|
+
|
|
2611
3004
|
"""To modify multiple Terminologies' information"""
|
|
2612
3005
|
updateMultipleTerminologies(patches: [TerminologyPatch!]!): [Terminology!]!
|
|
2613
3006
|
|
|
@@ -2656,6 +3049,12 @@ type Mutation {
|
|
|
2656
3049
|
"""프로젝트 도면 업데이트"""
|
|
2657
3050
|
updateProjectPlan(project: ProjectPatch!): Project!
|
|
2658
3051
|
|
|
3052
|
+
"""To modify ProjectReport information"""
|
|
3053
|
+
updateProjectReport(id: String!, patch: ProjectReportPatch!): ProjectReport!
|
|
3054
|
+
|
|
3055
|
+
"""To modify Resource information"""
|
|
3056
|
+
updateResource(id: String!, patch: ResourcePatch!): Resource!
|
|
3057
|
+
|
|
2659
3058
|
"""To modify role information"""
|
|
2660
3059
|
updateRole(id: String!, patch: RolePatch!): Role!
|
|
2661
3060
|
|
|
@@ -2680,9 +3079,15 @@ type Mutation {
|
|
|
2680
3079
|
"""To update state of StateRegister by name"""
|
|
2681
3080
|
updateStateRegisterByName(name: String!, state: Object!): StateRegister!
|
|
2682
3081
|
|
|
3082
|
+
"""To modify Supervisor information"""
|
|
3083
|
+
updateSupervisor(id: String!, patch: SupervisorPatch!): Supervisor!
|
|
3084
|
+
|
|
2683
3085
|
"""To modify Task information"""
|
|
2684
3086
|
updateTask(id: String!, patch: TaskPatch!): Task!
|
|
2685
3087
|
|
|
3088
|
+
"""To modify TaskResource information"""
|
|
3089
|
+
updateTaskResource(id: String!, patch: TaskResourcePatch!): TaskResource!
|
|
3090
|
+
|
|
2686
3091
|
"""To modify Terminology information"""
|
|
2687
3092
|
updateTerminology(id: String!, patch: TerminologyPatch!): Terminology!
|
|
2688
3093
|
|
|
@@ -2699,6 +3104,15 @@ type Mutation {
|
|
|
2699
3104
|
updateUserRoles(availableRoles: [ObjectRef!]!, selectedRoles: [ObjectRef!]!, userId: String!): User!
|
|
2700
3105
|
}
|
|
2701
3106
|
|
|
3107
|
+
input NewActionPlan {
|
|
3108
|
+
active: Boolean
|
|
3109
|
+
description: String
|
|
3110
|
+
name: String!
|
|
3111
|
+
params: String
|
|
3112
|
+
state: ActionPlanStatus
|
|
3113
|
+
thumbnail: Upload
|
|
3114
|
+
}
|
|
3115
|
+
|
|
2702
3116
|
input NewAppliance {
|
|
2703
3117
|
brand: String!
|
|
2704
3118
|
description: String
|
|
@@ -2733,6 +3147,7 @@ input NewAttachment {
|
|
|
2733
3147
|
file: Upload!
|
|
2734
3148
|
refBy: String
|
|
2735
3149
|
refType: String
|
|
3150
|
+
tags: Object
|
|
2736
3151
|
}
|
|
2737
3152
|
|
|
2738
3153
|
input NewAttributeSet {
|
|
@@ -2768,11 +3183,10 @@ input NewBoardTemplate {
|
|
|
2768
3183
|
visibility: String!
|
|
2769
3184
|
}
|
|
2770
3185
|
|
|
2771
|
-
input
|
|
2772
|
-
|
|
2773
|
-
|
|
2774
|
-
|
|
2775
|
-
params: String
|
|
3186
|
+
input NewBuildingInspection {
|
|
3187
|
+
buildingLevelId: String!
|
|
3188
|
+
checklist: ChecklistInputType!
|
|
3189
|
+
checklistItem: [ChecklistItemInputType!]!
|
|
2776
3190
|
}
|
|
2777
3191
|
|
|
2778
3192
|
input NewChecklist {
|
|
@@ -2831,16 +3245,21 @@ input NewDepartment {
|
|
|
2831
3245
|
input NewEmployee {
|
|
2832
3246
|
active: Boolean
|
|
2833
3247
|
alias: String
|
|
3248
|
+
bankAccount: String
|
|
3249
|
+
bankName: String
|
|
3250
|
+
contact: ObjectRefForContact
|
|
2834
3251
|
controlNo: String!
|
|
2835
|
-
department:
|
|
3252
|
+
department: ObjectRefForDepartment
|
|
3253
|
+
emergencyContact: String
|
|
3254
|
+
emergencyContactPhone: String
|
|
2836
3255
|
extension: String
|
|
2837
|
-
hiredOn:
|
|
3256
|
+
hiredOn: DateTimeISO
|
|
2838
3257
|
jobPosition: String
|
|
2839
3258
|
jobResponsibility: String
|
|
2840
3259
|
name: String!
|
|
2841
3260
|
note: String
|
|
2842
3261
|
photo: Upload
|
|
2843
|
-
|
|
3262
|
+
retiredOn: DateTimeISO
|
|
2844
3263
|
supervisor: ObjectRefForEmployee
|
|
2845
3264
|
type: EmployeeType
|
|
2846
3265
|
user: ObjectRefForUser
|
|
@@ -2922,6 +3341,15 @@ input NewGroup {
|
|
|
2922
3341
|
name: String!
|
|
2923
3342
|
}
|
|
2924
3343
|
|
|
3344
|
+
input NewIssue {
|
|
3345
|
+
active: Boolean
|
|
3346
|
+
description: String
|
|
3347
|
+
name: String!
|
|
3348
|
+
params: String
|
|
3349
|
+
state: IssueStatus
|
|
3350
|
+
thumbnail: Upload
|
|
3351
|
+
}
|
|
3352
|
+
|
|
2925
3353
|
input NewLiteMenu {
|
|
2926
3354
|
active: Boolean
|
|
2927
3355
|
appName: String
|
|
@@ -2930,8 +3358,8 @@ input NewLiteMenu {
|
|
|
2930
3358
|
labels: Object
|
|
2931
3359
|
name: String!
|
|
2932
3360
|
parent: String
|
|
2933
|
-
privilege: PrivilegeInput
|
|
2934
3361
|
rank: Int
|
|
3362
|
+
role: ObjectRef
|
|
2935
3363
|
type: String
|
|
2936
3364
|
value: String
|
|
2937
3365
|
}
|
|
@@ -2954,7 +3382,6 @@ input NewMenu {
|
|
|
2954
3382
|
name: String!
|
|
2955
3383
|
pagination: Boolean
|
|
2956
3384
|
parent: ObjectRef
|
|
2957
|
-
privilege: PrivilegeInput
|
|
2958
3385
|
rank: Int
|
|
2959
3386
|
resourceId: String
|
|
2960
3387
|
resourceName: String
|
|
@@ -3165,9 +3592,28 @@ input NewPrivilege {
|
|
|
3165
3592
|
}
|
|
3166
3593
|
|
|
3167
3594
|
input NewProject {
|
|
3595
|
+
"""연관된 건물 복합체 정보 (선택 사항)"""
|
|
3596
|
+
buildingComplex: ObjectRef
|
|
3597
|
+
|
|
3598
|
+
"""프로젝트 이름"""
|
|
3168
3599
|
name: String!
|
|
3169
3600
|
}
|
|
3170
3601
|
|
|
3602
|
+
input NewProjectReport {
|
|
3603
|
+
active: Boolean
|
|
3604
|
+
description: String
|
|
3605
|
+
name: String!
|
|
3606
|
+
params: String
|
|
3607
|
+
state: ProjectReportStatus
|
|
3608
|
+
thumbnail: Upload
|
|
3609
|
+
}
|
|
3610
|
+
|
|
3611
|
+
input NewResource {
|
|
3612
|
+
name: String!
|
|
3613
|
+
type: ResourceType!
|
|
3614
|
+
unit: String!
|
|
3615
|
+
}
|
|
3616
|
+
|
|
3171
3617
|
input NewRole {
|
|
3172
3618
|
description: String
|
|
3173
3619
|
name: String!
|
|
@@ -3179,7 +3625,7 @@ input NewScenario {
|
|
|
3179
3625
|
active: Boolean
|
|
3180
3626
|
description: String
|
|
3181
3627
|
name: String!
|
|
3182
|
-
|
|
3628
|
+
role: ObjectRef
|
|
3183
3629
|
schedule: String
|
|
3184
3630
|
timezone: String
|
|
3185
3631
|
ttl: Float
|
|
@@ -3224,11 +3670,42 @@ input NewStateRegister {
|
|
|
3224
3670
|
unit: String
|
|
3225
3671
|
}
|
|
3226
3672
|
|
|
3673
|
+
input NewSupervisor {
|
|
3674
|
+
active: Boolean
|
|
3675
|
+
description: String
|
|
3676
|
+
name: String!
|
|
3677
|
+
params: String
|
|
3678
|
+
state: SupervisorStatus
|
|
3679
|
+
thumbnail: Upload
|
|
3680
|
+
}
|
|
3681
|
+
|
|
3227
3682
|
input NewTask {
|
|
3683
|
+
"""작업이 활성 상태인지 여부 (선택 사항)"""
|
|
3228
3684
|
active: Boolean
|
|
3685
|
+
|
|
3686
|
+
"""프로젝트 내에서 유니크한 작업 코드"""
|
|
3687
|
+
code: String!
|
|
3688
|
+
|
|
3689
|
+
"""작업에 대한 설명 (선택 사항)"""
|
|
3229
3690
|
description: String
|
|
3691
|
+
|
|
3692
|
+
"""작업의 이름"""
|
|
3230
3693
|
name: String!
|
|
3694
|
+
|
|
3695
|
+
"""작업에 대한 추가 파라미터, JSON 형식으로 저장 (선택 사항)"""
|
|
3231
3696
|
params: String
|
|
3697
|
+
|
|
3698
|
+
"""부모 작업, 해당 작업이 하위 작업인 경우 (선택 사항)"""
|
|
3699
|
+
parent: ObjectRefForTask
|
|
3700
|
+
|
|
3701
|
+
"""작업이 속한 프로젝트 (선택 사항)"""
|
|
3702
|
+
project: ObjectRefForProject
|
|
3703
|
+
}
|
|
3704
|
+
|
|
3705
|
+
input NewTaskResource {
|
|
3706
|
+
quantity: Float!
|
|
3707
|
+
resourceId: ID!
|
|
3708
|
+
taskId: ID!
|
|
3232
3709
|
}
|
|
3233
3710
|
|
|
3234
3711
|
input NewTerminology {
|
|
@@ -3438,6 +3915,34 @@ input ObjectRefApprovalLineOwnerType {
|
|
|
3438
3915
|
name: String
|
|
3439
3916
|
}
|
|
3440
3917
|
|
|
3918
|
+
input ObjectRefForContact {
|
|
3919
|
+
address: String
|
|
3920
|
+
|
|
3921
|
+
"""Field description"""
|
|
3922
|
+
description: String
|
|
3923
|
+
email: EmailAddress
|
|
3924
|
+
|
|
3925
|
+
"""Field id"""
|
|
3926
|
+
id: ID!
|
|
3927
|
+
|
|
3928
|
+
"""Field name"""
|
|
3929
|
+
name: String
|
|
3930
|
+
phone: String
|
|
3931
|
+
}
|
|
3932
|
+
|
|
3933
|
+
input ObjectRefForDepartment {
|
|
3934
|
+
controlNo: String
|
|
3935
|
+
|
|
3936
|
+
"""Field description"""
|
|
3937
|
+
description: String
|
|
3938
|
+
|
|
3939
|
+
"""Field id"""
|
|
3940
|
+
id: ID!
|
|
3941
|
+
|
|
3942
|
+
"""Field name"""
|
|
3943
|
+
name: String
|
|
3944
|
+
}
|
|
3945
|
+
|
|
3441
3946
|
input ObjectRefForEmployee {
|
|
3442
3947
|
active: Boolean
|
|
3443
3948
|
alias: String
|
|
@@ -3446,7 +3951,7 @@ input ObjectRefForEmployee {
|
|
|
3446
3951
|
"""Field description"""
|
|
3447
3952
|
description: String
|
|
3448
3953
|
email: EmailAddress
|
|
3449
|
-
hiredOn:
|
|
3954
|
+
hiredOn: DateTimeISO
|
|
3450
3955
|
|
|
3451
3956
|
"""Field id"""
|
|
3452
3957
|
id: ID!
|
|
@@ -3459,6 +3964,31 @@ input ObjectRefForEmployee {
|
|
|
3459
3964
|
type: EmployeeType
|
|
3460
3965
|
}
|
|
3461
3966
|
|
|
3967
|
+
input ObjectRefForProject {
|
|
3968
|
+
"""Field description"""
|
|
3969
|
+
description: String
|
|
3970
|
+
|
|
3971
|
+
"""Field id"""
|
|
3972
|
+
id: ID!
|
|
3973
|
+
|
|
3974
|
+
"""프로젝트 이름 (선택 사항)"""
|
|
3975
|
+
name: String
|
|
3976
|
+
}
|
|
3977
|
+
|
|
3978
|
+
input ObjectRefForTask {
|
|
3979
|
+
"""작업 코드 (선택 사항)"""
|
|
3980
|
+
code: String
|
|
3981
|
+
|
|
3982
|
+
"""Field description"""
|
|
3983
|
+
description: String
|
|
3984
|
+
|
|
3985
|
+
"""Field id"""
|
|
3986
|
+
id: ID!
|
|
3987
|
+
|
|
3988
|
+
"""Field name"""
|
|
3989
|
+
name: String
|
|
3990
|
+
}
|
|
3991
|
+
|
|
3462
3992
|
input ObjectRefForUser {
|
|
3463
3993
|
"""Field description"""
|
|
3464
3994
|
description: String
|
|
@@ -3564,6 +4094,18 @@ input PartnerSettingPatch {
|
|
|
3564
4094
|
value: String
|
|
3565
4095
|
}
|
|
3566
4096
|
|
|
4097
|
+
type PasswordRule {
|
|
4098
|
+
allowRepeat: Boolean
|
|
4099
|
+
digit: Boolean
|
|
4100
|
+
looseCharacterLength: Float
|
|
4101
|
+
lowerCase: Boolean
|
|
4102
|
+
specialCharacter: Boolean
|
|
4103
|
+
tightCharacterLength: Float
|
|
4104
|
+
upperCase: Boolean
|
|
4105
|
+
useLoosePattern: Boolean
|
|
4106
|
+
useTightPattern: Boolean
|
|
4107
|
+
}
|
|
4108
|
+
|
|
3567
4109
|
"""Entity for PayloadLog"""
|
|
3568
4110
|
type PayloadLog {
|
|
3569
4111
|
createdAt: DateTimeISO
|
|
@@ -3685,13 +4227,6 @@ type Privilege {
|
|
|
3685
4227
|
updater: User
|
|
3686
4228
|
}
|
|
3687
4229
|
|
|
3688
|
-
input PrivilegeInput {
|
|
3689
|
-
category: String
|
|
3690
|
-
owner: Boolean
|
|
3691
|
-
privilege: String
|
|
3692
|
-
super: Boolean
|
|
3693
|
-
}
|
|
3694
|
-
|
|
3695
4230
|
type PrivilegeList {
|
|
3696
4231
|
items: [Privilege!]
|
|
3697
4232
|
total: Int
|
|
@@ -3743,6 +4278,7 @@ type Project {
|
|
|
3743
4278
|
mainPhoto: Attachment
|
|
3744
4279
|
name: String!
|
|
3745
4280
|
robotProgressRate: Float
|
|
4281
|
+
rootTasks: [Task!]
|
|
3746
4282
|
startDate: String
|
|
3747
4283
|
state: String!
|
|
3748
4284
|
structuralSafetyRate: Float
|
|
@@ -3754,25 +4290,92 @@ type Project {
|
|
|
3754
4290
|
}
|
|
3755
4291
|
|
|
3756
4292
|
type ProjectList {
|
|
4293
|
+
"""프로젝트 리스트 항목들"""
|
|
3757
4294
|
items: [Project!]!
|
|
4295
|
+
|
|
4296
|
+
"""전체 프로젝트 수"""
|
|
3758
4297
|
total: Int!
|
|
3759
4298
|
}
|
|
3760
4299
|
|
|
3761
4300
|
input ProjectPatch {
|
|
3762
4301
|
buildingComplex: BuildingComplexPatch
|
|
4302
|
+
|
|
4303
|
+
"""프로젝트 준공일정"""
|
|
3763
4304
|
endDate: String
|
|
4305
|
+
|
|
4306
|
+
"""수정할 프로젝트의 ID"""
|
|
3764
4307
|
id: String!
|
|
4308
|
+
|
|
4309
|
+
"""검측/통과 비율 (%)"""
|
|
3765
4310
|
inspPassRate: Float
|
|
4311
|
+
|
|
4312
|
+
"""프로젝트 KPI"""
|
|
3766
4313
|
kpi: Float
|
|
4314
|
+
|
|
4315
|
+
"""프로젝트 대표 사진 업로드"""
|
|
3767
4316
|
mainPhotoUpload: Upload
|
|
4317
|
+
|
|
4318
|
+
"""프로젝트 이름"""
|
|
3768
4319
|
name: String!
|
|
4320
|
+
|
|
4321
|
+
"""로봇 작업 진행율 (%)"""
|
|
3769
4322
|
robotProgressRate: Float
|
|
4323
|
+
|
|
4324
|
+
"""프로젝트 착공일정"""
|
|
3770
4325
|
startDate: String
|
|
4326
|
+
|
|
4327
|
+
"""구조 안전도 (%)"""
|
|
3771
4328
|
structuralSafetyRate: Float
|
|
4329
|
+
|
|
4330
|
+
"""프로젝트 전체 진행현황 (%)"""
|
|
3772
4331
|
totalProgress: Float
|
|
4332
|
+
|
|
4333
|
+
"""프로젝트 주간 진행현황 (%)"""
|
|
3773
4334
|
weeklyProgress: Float
|
|
3774
4335
|
}
|
|
3775
4336
|
|
|
4337
|
+
"""Entity for ProjectReport"""
|
|
4338
|
+
type ProjectReport {
|
|
4339
|
+
active: Boolean
|
|
4340
|
+
content: String
|
|
4341
|
+
createdAt: DateTimeISO
|
|
4342
|
+
creator: User
|
|
4343
|
+
date: DateTimeISO
|
|
4344
|
+
deletedAt: DateTimeISO
|
|
4345
|
+
description: String
|
|
4346
|
+
domain: Domain
|
|
4347
|
+
id: ID!
|
|
4348
|
+
name: String
|
|
4349
|
+
params: String
|
|
4350
|
+
project: Project!
|
|
4351
|
+
state: String
|
|
4352
|
+
supervisor: Supervisor!
|
|
4353
|
+
thumbnail: String
|
|
4354
|
+
updatedAt: DateTimeISO
|
|
4355
|
+
updater: User
|
|
4356
|
+
}
|
|
4357
|
+
|
|
4358
|
+
type ProjectReportList {
|
|
4359
|
+
items: [ProjectReport!]!
|
|
4360
|
+
total: Int!
|
|
4361
|
+
}
|
|
4362
|
+
|
|
4363
|
+
input ProjectReportPatch {
|
|
4364
|
+
active: Boolean
|
|
4365
|
+
cuFlag: String
|
|
4366
|
+
description: String
|
|
4367
|
+
id: ID
|
|
4368
|
+
name: String
|
|
4369
|
+
state: ProjectReportStatus
|
|
4370
|
+
thumbnail: Upload
|
|
4371
|
+
}
|
|
4372
|
+
|
|
4373
|
+
"""state enumeration of a projectReport"""
|
|
4374
|
+
enum ProjectReportStatus {
|
|
4375
|
+
STATUS_A
|
|
4376
|
+
STATUS_B
|
|
4377
|
+
}
|
|
4378
|
+
|
|
3776
4379
|
type PropertySpec {
|
|
3777
4380
|
label: String!
|
|
3778
4381
|
name: String!
|
|
@@ -3784,6 +4387,12 @@ type PropertySpec {
|
|
|
3784
4387
|
|
|
3785
4388
|
type Query {
|
|
3786
4389
|
APIDocCompletion(input: APIDocCompletionInput!): APIDocCompletionOutput!
|
|
4390
|
+
|
|
4391
|
+
"""To fetch a ActionPlan"""
|
|
4392
|
+
actionPlan(id: String!): ActionPlan
|
|
4393
|
+
|
|
4394
|
+
"""To fetch multiple ActionPlans"""
|
|
4395
|
+
actionPlans(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActionPlanList!
|
|
3787
4396
|
appBinding(id: String!): AppBinding!
|
|
3788
4397
|
appBindings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AppBindingList!
|
|
3789
4398
|
|
|
@@ -3865,33 +4474,66 @@ type Query {
|
|
|
3865
4474
|
buildingBuildingComplex(id: String!): BuildingComplex
|
|
3866
4475
|
|
|
3867
4476
|
"""To fetch a BuildingInspection"""
|
|
3868
|
-
|
|
3869
|
-
chatCompletion(input: ChatCompletionInput!): ChatCompletionOutput!
|
|
4477
|
+
buildingInspection(id: String!): BuildingInspection
|
|
3870
4478
|
|
|
3871
|
-
"""To
|
|
3872
|
-
|
|
4479
|
+
"""To fetch a BuildingInspection Summary"""
|
|
4480
|
+
buildingInspectionSummaryOfBuildingLevel(buildingLevelId: String!): BuildingInspectionSummary
|
|
4481
|
+
|
|
4482
|
+
"""프로젝트의 검측상태 별 카운트"""
|
|
4483
|
+
buildingInspectionSummaryOfProject(projectId: String!): BuildingInspectionSummary!
|
|
3873
4484
|
|
|
3874
|
-
"""To fetch
|
|
3875
|
-
|
|
4485
|
+
"""To fetch multiple BuildingInspections"""
|
|
4486
|
+
buildingInspections(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BuildingInspectionList!
|
|
3876
4487
|
|
|
3877
|
-
"""To fetch multiple
|
|
3878
|
-
|
|
4488
|
+
"""To fetch multiple BuildingInspections"""
|
|
4489
|
+
buildingInspectionsOfBuildingLevel(params: BuildingInspectionsOfBuildingLevel!): BuildingInspectionList!
|
|
3879
4490
|
|
|
3880
|
-
"""To
|
|
4491
|
+
"""To fetch multiple BuildingInspections"""
|
|
4492
|
+
buildingInspectionsOfProject(params: BuildingInspectionsOfProject!): BuildingInspectionList!
|
|
4493
|
+
chatCompletion(input: ChatCompletionInput!): ChatCompletionOutput!
|
|
4494
|
+
|
|
4495
|
+
"""
|
|
4496
|
+
Checks if the system is configured to provide a default password for new users.
|
|
4497
|
+
"""
|
|
4498
|
+
checkDefaultPassword: Boolean!
|
|
4499
|
+
|
|
4500
|
+
"""
|
|
4501
|
+
Determines whether the system provides a default password when creating a new user.
|
|
4502
|
+
"""
|
|
3881
4503
|
checkResettablePasswordToDefault: Boolean!
|
|
3882
4504
|
|
|
3883
4505
|
"""To fetch the preset of role for new user"""
|
|
3884
4506
|
checkRolePreset: [Role!]!
|
|
3885
4507
|
|
|
3886
|
-
"""
|
|
4508
|
+
"""
|
|
4509
|
+
Checks if the current authenticated user belongs to the current domain.
|
|
4510
|
+
"""
|
|
3887
4511
|
checkUserBelongsDomain: Boolean!
|
|
3888
4512
|
|
|
3889
|
-
"""
|
|
4513
|
+
"""Checks if a user with the given email address exists in the system."""
|
|
3890
4514
|
checkUserExistence(email: EmailAddress!): Boolean!
|
|
3891
4515
|
|
|
3892
4516
|
"""To fetch a Checklist"""
|
|
3893
4517
|
checklist(id: String!): Checklist
|
|
3894
4518
|
|
|
4519
|
+
"""To fetch a ChecklistItem"""
|
|
4520
|
+
checklistItem(id: String!): ChecklistItem
|
|
4521
|
+
|
|
4522
|
+
"""To fetch multiple ChecklistItems"""
|
|
4523
|
+
checklistItems(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ChecklistItemList!
|
|
4524
|
+
|
|
4525
|
+
"""To fetch a ChecklistTemplateItem"""
|
|
4526
|
+
checklistTemplateItem(id: String!): ChecklistTemplateItem
|
|
4527
|
+
|
|
4528
|
+
"""To fetch multiple ChecklistTemplateItems"""
|
|
4529
|
+
checklistTemplateItems(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ChecklistTemplateItemList!
|
|
4530
|
+
|
|
4531
|
+
"""To fetch multiple ChecklistTemplates"""
|
|
4532
|
+
checklistTemplates(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ChecklistTemplateList!
|
|
4533
|
+
|
|
4534
|
+
"""To fetch multiple ChecklistTypes"""
|
|
4535
|
+
checklistTypes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ChecklistTypeList!
|
|
4536
|
+
|
|
3895
4537
|
"""To fetch multiple Checklists"""
|
|
3896
4538
|
checklists(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ChecklistList!
|
|
3897
4539
|
|
|
@@ -3922,6 +4564,9 @@ type Query {
|
|
|
3922
4564
|
"""To fetch multiple connector"""
|
|
3923
4565
|
connectors: ConnectorList!
|
|
3924
4566
|
|
|
4567
|
+
"""To fetch multiple ConstructionDetailTypes"""
|
|
4568
|
+
constructionDetailTypes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ConstructionDetailTypeList!
|
|
4569
|
+
|
|
3925
4570
|
"""To fetch a ConstructionType"""
|
|
3926
4571
|
constructionType(id: String!): ConstructionType
|
|
3927
4572
|
|
|
@@ -3958,10 +4603,14 @@ type Query {
|
|
|
3958
4603
|
"""To fetch multiple appliance"""
|
|
3959
4604
|
edges(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApplianceList!
|
|
3960
4605
|
|
|
3961
|
-
"""
|
|
4606
|
+
"""
|
|
4607
|
+
Fetches a specific employee by their unique ID. Returns the employee object if found, or null if not found.
|
|
4608
|
+
"""
|
|
3962
4609
|
employee(id: String!): Employee
|
|
3963
4610
|
|
|
3964
|
-
"""
|
|
4611
|
+
"""
|
|
4612
|
+
Fetches a list of employees based on provided query parameters. Supports searching by name, control number, and alias.
|
|
4613
|
+
"""
|
|
3965
4614
|
employees(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EmployeeList!
|
|
3966
4615
|
|
|
3967
4616
|
"""To fetch multiple Entities"""
|
|
@@ -4010,14 +4659,29 @@ type Query {
|
|
|
4010
4659
|
i18nCompletion(input: i18nCompletionInput!): i18nCompletionOutput!
|
|
4011
4660
|
imageCompletion(input: ImageCompletionInput!): ImageCompletionOutput!
|
|
4012
4661
|
|
|
4013
|
-
"""
|
|
4014
|
-
|
|
4662
|
+
"""To fetch a InspectionDrawingType"""
|
|
4663
|
+
inspectionDrawingType(id: String!): InspectionDrawingType
|
|
4664
|
+
|
|
4665
|
+
"""To fetch multiple InspectionDrawingTypes"""
|
|
4666
|
+
inspectionDrawingTypes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): InspectionDrawingTypeList!
|
|
4667
|
+
|
|
4668
|
+
"""To fetch a InspectionPart"""
|
|
4669
|
+
inspectionPart(id: String!): InspectionPart
|
|
4670
|
+
|
|
4671
|
+
"""To fetch multiple InspectionParts"""
|
|
4672
|
+
inspectionParts(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): InspectionPartList!
|
|
4015
4673
|
|
|
4016
4674
|
"""To fetch integration Analyses"""
|
|
4017
4675
|
integrationAnalysis: Object!
|
|
4018
4676
|
invitation(email: EmailAddress!, reference: String!, type: String!): Invitation!
|
|
4019
4677
|
invitations(reference: String!, type: String!): InvitationList!
|
|
4020
4678
|
|
|
4679
|
+
"""To fetch a Issue"""
|
|
4680
|
+
issue(id: String!): Issue
|
|
4681
|
+
|
|
4682
|
+
"""To fetch multiple Issues"""
|
|
4683
|
+
issues(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): IssueList!
|
|
4684
|
+
|
|
4021
4685
|
"""To fetch a LiteMenu"""
|
|
4022
4686
|
liteMenu(id: String!): LiteMenu!
|
|
4023
4687
|
|
|
@@ -4134,6 +4798,11 @@ type Query {
|
|
|
4134
4798
|
partnerSettings(filters: [Filter!]!, pagination: Pagination!, partnerDomain: ObjectRef!, sortings: [Sorting!]!): PartnerSettingList!
|
|
4135
4799
|
partners(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PartnerList!
|
|
4136
4800
|
|
|
4801
|
+
"""
|
|
4802
|
+
Retrieves the current password rule configuration for the system, such as required character types and minimum length.
|
|
4803
|
+
"""
|
|
4804
|
+
passwordRule: PasswordRule!
|
|
4805
|
+
|
|
4137
4806
|
"""To fetch a PayloadLog"""
|
|
4138
4807
|
payloadLog(id: String!): PayloadLog!
|
|
4139
4808
|
|
|
@@ -4164,8 +4833,26 @@ type Query {
|
|
|
4164
4833
|
"""To fetch a Project"""
|
|
4165
4834
|
project(id: String!): Project
|
|
4166
4835
|
|
|
4836
|
+
"""To fetch a Project"""
|
|
4837
|
+
projectByBuildingComplexId(buildingComplexId: String!): Project
|
|
4838
|
+
|
|
4839
|
+
"""To fetch Project"""
|
|
4840
|
+
projectByBuildingLevelId(buildingLevelId: String!): Project!
|
|
4841
|
+
|
|
4842
|
+
"""To fetch a ProjectReport"""
|
|
4843
|
+
projectReport(id: String!): ProjectReport
|
|
4844
|
+
|
|
4845
|
+
"""To fetch multiple ProjectReports"""
|
|
4846
|
+
projectReports(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ProjectReportList!
|
|
4847
|
+
|
|
4167
4848
|
"""프로젝트 리스트"""
|
|
4168
|
-
projects(
|
|
4849
|
+
projects(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ProjectList!
|
|
4850
|
+
|
|
4851
|
+
"""To fetch a Resource"""
|
|
4852
|
+
resource(id: String!): Resource
|
|
4853
|
+
|
|
4854
|
+
"""To fetch multiple Resources"""
|
|
4855
|
+
resources(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ResourceList!
|
|
4169
4856
|
|
|
4170
4857
|
"""To fetch role"""
|
|
4171
4858
|
role(name: String!): Role!
|
|
@@ -4216,9 +4903,21 @@ type Query {
|
|
|
4216
4903
|
"""To fetch multiple steps"""
|
|
4217
4904
|
steps(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): StepList!
|
|
4218
4905
|
|
|
4219
|
-
"""To fetch a
|
|
4906
|
+
"""To fetch a Supervisor"""
|
|
4907
|
+
supervisor(id: String!): Supervisor
|
|
4908
|
+
|
|
4909
|
+
"""To fetch multiple Supervisors"""
|
|
4910
|
+
supervisors(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): SupervisorList!
|
|
4911
|
+
|
|
4912
|
+
"""Fetch a single Task by its ID"""
|
|
4220
4913
|
task(id: String!): Task
|
|
4221
4914
|
|
|
4915
|
+
"""To fetch a TaskResource"""
|
|
4916
|
+
taskResource(id: String!): TaskResource
|
|
4917
|
+
|
|
4918
|
+
"""To fetch multiple TaskResources"""
|
|
4919
|
+
taskResources(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): TaskResourceList!
|
|
4920
|
+
|
|
4222
4921
|
"""To fetch a task-type"""
|
|
4223
4922
|
taskType(name: String!): TaskType!
|
|
4224
4923
|
|
|
@@ -4228,7 +4927,7 @@ type Query {
|
|
|
4228
4927
|
"""To fetch the connector from a task-type"""
|
|
4229
4928
|
taskTypesByConnection(connectionName: String!): TaskTypeList!
|
|
4230
4929
|
|
|
4231
|
-
"""
|
|
4930
|
+
"""Fetch multiple Tasks based on list parameters"""
|
|
4232
4931
|
tasks(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): TaskList!
|
|
4233
4932
|
|
|
4234
4933
|
"""To fetch multiple Terminologies"""
|
|
@@ -4243,7 +4942,7 @@ type Query {
|
|
|
4243
4942
|
"""To fetch multiple Themes"""
|
|
4244
4943
|
themes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ThemeList!
|
|
4245
4944
|
|
|
4246
|
-
"""
|
|
4945
|
+
"""Fetches a user by their email address within the current domain."""
|
|
4247
4946
|
user(email: EmailAddress!): User!
|
|
4248
4947
|
|
|
4249
4948
|
"""To fetch Menus by role"""
|
|
@@ -4252,7 +4951,9 @@ type Query {
|
|
|
4252
4951
|
"""To fetch roles of a user"""
|
|
4253
4952
|
userRoles(userId: String!): [UserRole!]!
|
|
4254
4953
|
|
|
4255
|
-
"""
|
|
4954
|
+
"""
|
|
4955
|
+
Fetches a list of users based on provided search parameters within the current domain.
|
|
4956
|
+
"""
|
|
4256
4957
|
users(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): UserList!
|
|
4257
4958
|
vendors: [Domain!]!
|
|
4258
4959
|
|
|
@@ -4269,6 +4970,40 @@ type RecipientItem {
|
|
|
4269
4970
|
value: String
|
|
4270
4971
|
}
|
|
4271
4972
|
|
|
4973
|
+
"""자원"""
|
|
4974
|
+
type Resource {
|
|
4975
|
+
createdAt: DateTimeISO
|
|
4976
|
+
creator: User
|
|
4977
|
+
deletedAt: DateTimeISO
|
|
4978
|
+
domain: Domain
|
|
4979
|
+
id: ID!
|
|
4980
|
+
name: String!
|
|
4981
|
+
type: String!
|
|
4982
|
+
unit: String!
|
|
4983
|
+
updatedAt: DateTimeISO
|
|
4984
|
+
updater: User
|
|
4985
|
+
}
|
|
4986
|
+
|
|
4987
|
+
type ResourceList {
|
|
4988
|
+
items: [Resource!]!
|
|
4989
|
+
total: Int!
|
|
4990
|
+
}
|
|
4991
|
+
|
|
4992
|
+
input ResourcePatch {
|
|
4993
|
+
cuFlag: String
|
|
4994
|
+
id: ID
|
|
4995
|
+
name: String
|
|
4996
|
+
type: ResourceType
|
|
4997
|
+
unit: String
|
|
4998
|
+
}
|
|
4999
|
+
|
|
5000
|
+
"""자원 유형"""
|
|
5001
|
+
enum ResourceType {
|
|
5002
|
+
EQUIPMENT
|
|
5003
|
+
HUMAN
|
|
5004
|
+
MATERIAL
|
|
5005
|
+
}
|
|
5006
|
+
|
|
4272
5007
|
type Role {
|
|
4273
5008
|
createdAt: DateTimeISO
|
|
4274
5009
|
creator: User
|
|
@@ -4320,6 +5055,7 @@ type Scenario {
|
|
|
4320
5055
|
"""accessible and executable system-wide"""
|
|
4321
5056
|
public: Boolean
|
|
4322
5057
|
publishTags: [Connection!]!
|
|
5058
|
+
role: Role
|
|
4323
5059
|
schedule: String
|
|
4324
5060
|
scheduleId: String
|
|
4325
5061
|
state: String
|
|
@@ -4401,7 +5137,7 @@ input ScenarioPatch {
|
|
|
4401
5137
|
description: String
|
|
4402
5138
|
id: ID
|
|
4403
5139
|
name: String
|
|
4404
|
-
|
|
5140
|
+
role: ObjectRef
|
|
4405
5141
|
schedule: String
|
|
4406
5142
|
steps: [StepPatch!]
|
|
4407
5143
|
timezone: String
|
|
@@ -4617,35 +5353,132 @@ type Subscription {
|
|
|
4617
5353
|
scenarioQueueState: ScenarioQueueState!
|
|
4618
5354
|
}
|
|
4619
5355
|
|
|
5356
|
+
"""Entity for Supervisor"""
|
|
5357
|
+
type Supervisor {
|
|
5358
|
+
active: Boolean
|
|
5359
|
+
createdAt: DateTimeISO
|
|
5360
|
+
creator: User
|
|
5361
|
+
deletedAt: DateTimeISO
|
|
5362
|
+
description: String
|
|
5363
|
+
domain: Domain
|
|
5364
|
+
email: String
|
|
5365
|
+
id: ID!
|
|
5366
|
+
name: String
|
|
5367
|
+
params: String
|
|
5368
|
+
phoneNumber: String
|
|
5369
|
+
reports: [ProjectReport!]!
|
|
5370
|
+
state: String
|
|
5371
|
+
thumbnail: String
|
|
5372
|
+
updatedAt: DateTimeISO
|
|
5373
|
+
updater: User
|
|
5374
|
+
}
|
|
5375
|
+
|
|
5376
|
+
type SupervisorList {
|
|
5377
|
+
items: [Supervisor!]!
|
|
5378
|
+
total: Int!
|
|
5379
|
+
}
|
|
5380
|
+
|
|
5381
|
+
input SupervisorPatch {
|
|
5382
|
+
active: Boolean
|
|
5383
|
+
cuFlag: String
|
|
5384
|
+
description: String
|
|
5385
|
+
id: ID
|
|
5386
|
+
name: String
|
|
5387
|
+
state: SupervisorStatus
|
|
5388
|
+
thumbnail: Upload
|
|
5389
|
+
}
|
|
5390
|
+
|
|
5391
|
+
"""state enumeration of a supervisor"""
|
|
5392
|
+
enum SupervisorStatus {
|
|
5393
|
+
STATUS_A
|
|
5394
|
+
STATUS_B
|
|
5395
|
+
}
|
|
5396
|
+
|
|
4620
5397
|
"""공정표 작업 정보"""
|
|
4621
5398
|
type Task {
|
|
4622
|
-
|
|
5399
|
+
children(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): [Task!]
|
|
5400
|
+
code: String!
|
|
4623
5401
|
createdAt: DateTimeISO
|
|
4624
5402
|
creator: User
|
|
4625
5403
|
deletedAt: DateTimeISO
|
|
5404
|
+
dependsOn: String
|
|
5405
|
+
duration: Float
|
|
4626
5406
|
endDate: DateTimeISO
|
|
4627
5407
|
id: ID!
|
|
5408
|
+
|
|
5409
|
+
"""Calculate the duration of the task in days"""
|
|
5410
|
+
length: String
|
|
4628
5411
|
name: String
|
|
4629
|
-
|
|
5412
|
+
parent: Task
|
|
5413
|
+
progress: Float
|
|
4630
5414
|
project: Project!
|
|
5415
|
+
|
|
5416
|
+
"""Return the simple list of resources allocated to the task"""
|
|
5417
|
+
resources: [DigestedResource!]!
|
|
4631
5418
|
startDate: DateTimeISO
|
|
4632
|
-
|
|
5419
|
+
tags: Object
|
|
5420
|
+
taskResources: [TaskResource!]
|
|
4633
5421
|
type: String
|
|
4634
5422
|
updatedAt: DateTimeISO
|
|
4635
5423
|
updater: User
|
|
4636
5424
|
}
|
|
4637
5425
|
|
|
4638
5426
|
type TaskList {
|
|
5427
|
+
"""작업 리스트 항목들"""
|
|
4639
5428
|
items: [Task!]!
|
|
5429
|
+
|
|
5430
|
+
"""전체 작업 수"""
|
|
4640
5431
|
total: Int!
|
|
4641
5432
|
}
|
|
4642
5433
|
|
|
4643
5434
|
input TaskPatch {
|
|
5435
|
+
"""작업이 활성 상태인지 여부 (선택 사항)"""
|
|
4644
5436
|
active: Boolean
|
|
5437
|
+
|
|
5438
|
+
"""프로젝트 내에서 유니크한 작업 코드 (선택 사항)"""
|
|
5439
|
+
code: String
|
|
5440
|
+
|
|
5441
|
+
"""생성('+') 또는 수정('M') 플래그 (선택 사항)"""
|
|
4645
5442
|
cuFlag: String
|
|
5443
|
+
|
|
5444
|
+
"""작업에 대한 설명 (선택 사항)"""
|
|
4646
5445
|
description: String
|
|
5446
|
+
|
|
5447
|
+
"""수정할 작업의 ID (선택 사항)"""
|
|
4647
5448
|
id: ID
|
|
5449
|
+
|
|
5450
|
+
"""작업의 이름 (선택 사항)"""
|
|
4648
5451
|
name: String
|
|
5452
|
+
|
|
5453
|
+
"""부모 작업, 해당 작업이 하위 작업인 경우 (선택 사항)"""
|
|
5454
|
+
parent: ObjectRefForTask
|
|
5455
|
+
|
|
5456
|
+
"""작업이 속한 프로젝트 (선택 사항)"""
|
|
5457
|
+
project: ObjectRefForProject
|
|
5458
|
+
}
|
|
5459
|
+
|
|
5460
|
+
"""작업에 소요되는 자원"""
|
|
5461
|
+
type TaskResource {
|
|
5462
|
+
createdAt: DateTimeISO
|
|
5463
|
+
deletedAt: DateTimeISO
|
|
5464
|
+
id: ID!
|
|
5465
|
+
quantity: Float!
|
|
5466
|
+
resource: Resource!
|
|
5467
|
+
task: Task!
|
|
5468
|
+
updatedAt: DateTimeISO
|
|
5469
|
+
}
|
|
5470
|
+
|
|
5471
|
+
type TaskResourceList {
|
|
5472
|
+
items: [TaskResource!]!
|
|
5473
|
+
total: Int!
|
|
5474
|
+
}
|
|
5475
|
+
|
|
5476
|
+
input TaskResourcePatch {
|
|
5477
|
+
cuFlag: String
|
|
5478
|
+
id: ID
|
|
5479
|
+
quantity: Float
|
|
5480
|
+
resourceId: ID
|
|
5481
|
+
taskId: ID
|
|
4649
5482
|
}
|
|
4650
5483
|
|
|
4651
5484
|
type TaskType {
|
|
@@ -4722,6 +5555,11 @@ input ThemePatch {
|
|
|
4722
5555
|
value: Object
|
|
4723
5556
|
}
|
|
4724
5557
|
|
|
5558
|
+
input UpdateBuildingInspection {
|
|
5559
|
+
drawingMarker: String
|
|
5560
|
+
id: String!
|
|
5561
|
+
}
|
|
5562
|
+
|
|
4725
5563
|
"""The `Upload` scalar type represents a file upload."""
|
|
4726
5564
|
scalar Upload
|
|
4727
5565
|
|