@dssp/dkpi 1.0.0-alpha.39 → 1.0.0-alpha.41
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/dist-client/pages/kpi-metric-value/kpi-metric-value-editor-page.d.ts +58 -0
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-editor-page.js +731 -0
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-editor-page.js.map +1 -0
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-importer.d.ts +23 -0
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-importer.js +76 -0
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-importer.js.map +1 -0
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-list-page.d.ts +69 -0
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-list-page.js +385 -0
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-list-page.js.map +1 -0
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-manual-entry-form.d.ts +12 -0
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-manual-entry-form.js +174 -0
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-manual-entry-form.js.map +1 -0
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-manual-entry-page.d.ts +41 -0
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-manual-entry-page.js +191 -0
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-manual-entry-page.js.map +1 -0
- package/dist-client/pages/kpi-value/kpi-value-importer.d.ts +23 -0
- package/dist-client/pages/kpi-value/kpi-value-importer.js +93 -0
- package/dist-client/pages/kpi-value/kpi-value-importer.js.map +1 -0
- package/dist-client/pages/kpi-value/kpi-value-list-page.d.ts +72 -0
- package/dist-client/pages/kpi-value/kpi-value-list-page.js +465 -0
- package/dist-client/pages/kpi-value/kpi-value-list-page.js.map +1 -0
- package/dist-client/route.d.ts +1 -1
- package/dist-client/route.js +9 -0
- package/dist-client/route.js.map +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-server/index.d.ts +1 -0
- package/dist-server/index.js +1 -0
- package/dist-server/index.js.map +1 -1
- package/dist-server/scripts/propagate-parent-kpi-values.d.ts +10 -0
- package/dist-server/scripts/propagate-parent-kpi-values.js +440 -0
- package/dist-server/scripts/propagate-parent-kpi-values.js.map +1 -0
- package/dist-server/service/index.d.ts +6 -0
- package/dist-server/service/index.js +21 -0
- package/dist-server/service/index.js.map +1 -0
- package/dist-server/service/kpi-metric-value/index.d.ts +3 -0
- package/dist-server/service/kpi-metric-value/index.js +7 -0
- package/dist-server/service/kpi-metric-value/index.js.map +1 -0
- package/dist-server/service/kpi-metric-value/kpi-metric-value-query.d.ts +7 -0
- package/dist-server/service/kpi-metric-value/kpi-metric-value-query.js +47 -0
- package/dist-server/service/kpi-metric-value/kpi-metric-value-query.js.map +1 -0
- package/dist-server/service/kpi-value/index.d.ts +3 -0
- package/dist-server/service/kpi-value/index.js +7 -0
- package/dist-server/service/kpi-value/index.js.map +1 -0
- package/dist-server/service/kpi-value/kpi-value-query.d.ts +7 -0
- package/dist-server/service/kpi-value/kpi-value-query.js +47 -0
- package/dist-server/service/kpi-value/kpi-value-query.js.map +1 -0
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -3
- package/schema.graphql +2063 -18
package/schema.graphql
CHANGED
|
@@ -21,6 +21,46 @@ type AccessToken {
|
|
|
21
21
|
refreshToken: String!
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
+
"""Entity for ActionPlan"""
|
|
25
|
+
type ActionPlan {
|
|
26
|
+
active: Boolean
|
|
27
|
+
content: String
|
|
28
|
+
createdAt: DateTimeISO
|
|
29
|
+
creator: User
|
|
30
|
+
deletedAt: DateTimeISO
|
|
31
|
+
description: String
|
|
32
|
+
domain: Domain
|
|
33
|
+
id: ID!
|
|
34
|
+
issue: Issue!
|
|
35
|
+
name: String
|
|
36
|
+
params: String
|
|
37
|
+
state: String
|
|
38
|
+
thumbnail: String
|
|
39
|
+
updatedAt: DateTimeISO
|
|
40
|
+
updater: User
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
type ActionPlanList {
|
|
44
|
+
items: [ActionPlan!]!
|
|
45
|
+
total: Int!
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
input ActionPlanPatch {
|
|
49
|
+
active: Boolean
|
|
50
|
+
cuFlag: String
|
|
51
|
+
description: String
|
|
52
|
+
id: ID
|
|
53
|
+
name: String
|
|
54
|
+
state: ActionPlanStatus
|
|
55
|
+
thumbnail: Upload
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
"""state enumeration of a actionPlan"""
|
|
59
|
+
enum ActionPlanStatus {
|
|
60
|
+
STATUS_A
|
|
61
|
+
STATUS_B
|
|
62
|
+
}
|
|
63
|
+
|
|
24
64
|
"""Entity for Activity"""
|
|
25
65
|
type Activity {
|
|
26
66
|
"""BPMN 2.0 task type"""
|
|
@@ -1369,6 +1409,273 @@ input BoardTemplatePatch {
|
|
|
1369
1409
|
visibility: String
|
|
1370
1410
|
}
|
|
1371
1411
|
|
|
1412
|
+
"""동 정보"""
|
|
1413
|
+
type Building {
|
|
1414
|
+
basementFloorCount: Float
|
|
1415
|
+
buildingComplex: BuildingComplex
|
|
1416
|
+
buildingLevels: [BuildingLevel!]
|
|
1417
|
+
createdAt: DateTimeISO
|
|
1418
|
+
creator: User
|
|
1419
|
+
deletedAt: DateTimeISO
|
|
1420
|
+
drawing: Attachment
|
|
1421
|
+
floorCount: Float
|
|
1422
|
+
hasBasement: Boolean
|
|
1423
|
+
id: ID!
|
|
1424
|
+
name: String
|
|
1425
|
+
updatedAt: DateTimeISO
|
|
1426
|
+
updater: User
|
|
1427
|
+
}
|
|
1428
|
+
|
|
1429
|
+
"""단지 정보"""
|
|
1430
|
+
type BuildingComplex {
|
|
1431
|
+
address: String
|
|
1432
|
+
area: Float
|
|
1433
|
+
buildingCount: Float
|
|
1434
|
+
buildings: [Building!]
|
|
1435
|
+
clientCompany: String
|
|
1436
|
+
constructionCompany: String
|
|
1437
|
+
constructionCost: Float
|
|
1438
|
+
constructionType: String
|
|
1439
|
+
createdAt: DateTimeISO
|
|
1440
|
+
creator: User
|
|
1441
|
+
deletedAt: DateTimeISO
|
|
1442
|
+
designCompany: String
|
|
1443
|
+
domain: Domain
|
|
1444
|
+
drawing: Attachment
|
|
1445
|
+
etc: String
|
|
1446
|
+
householdCount: Float
|
|
1447
|
+
id: ID!
|
|
1448
|
+
latitude: Float
|
|
1449
|
+
longitude: Float
|
|
1450
|
+
notice: String
|
|
1451
|
+
overallConstructorEmails: [String!]
|
|
1452
|
+
overallSupervisoryEmails: [String!]
|
|
1453
|
+
planXScale: Float
|
|
1454
|
+
planYScale: Float
|
|
1455
|
+
supervisoryCompany: String
|
|
1456
|
+
taskConstructorEmails: [String!]
|
|
1457
|
+
taskSupervisoryEmails: [String!]
|
|
1458
|
+
updatedAt: DateTimeISO
|
|
1459
|
+
updater: User
|
|
1460
|
+
virtualTourLink: String
|
|
1461
|
+
}
|
|
1462
|
+
|
|
1463
|
+
input BuildingComplexPatch {
|
|
1464
|
+
address: String
|
|
1465
|
+
area: Float
|
|
1466
|
+
buildingCount: Float
|
|
1467
|
+
buildings: [BuildingPatch!]
|
|
1468
|
+
clientCompany: String
|
|
1469
|
+
constructionCompany: String
|
|
1470
|
+
constructionCost: Float
|
|
1471
|
+
constructionType: String
|
|
1472
|
+
designCompany: String
|
|
1473
|
+
drawingUpload: Upload
|
|
1474
|
+
etc: String
|
|
1475
|
+
householdCount: Float
|
|
1476
|
+
id: String
|
|
1477
|
+
latitude: Float
|
|
1478
|
+
longitude: Float
|
|
1479
|
+
notice: String
|
|
1480
|
+
overallConstructorEmails: [String!]
|
|
1481
|
+
overallSupervisoryEmails: [String!]
|
|
1482
|
+
planXScale: Float
|
|
1483
|
+
planYScale: Float
|
|
1484
|
+
supervisoryCompany: String
|
|
1485
|
+
taskConstructorEmails: [String!]
|
|
1486
|
+
taskSupervisoryEmails: [String!]
|
|
1487
|
+
virtualTourLink: String
|
|
1488
|
+
}
|
|
1489
|
+
|
|
1490
|
+
type BuildingInspection {
|
|
1491
|
+
attachments: [Attachment!]!
|
|
1492
|
+
buildingInspectionSummary: BuildingInspectionSummary!
|
|
1493
|
+
buildingLevel: BuildingLevel
|
|
1494
|
+
cellX: Float
|
|
1495
|
+
cellY: Float
|
|
1496
|
+
checklist: Checklist
|
|
1497
|
+
createdAt: DateTimeISO
|
|
1498
|
+
creator: User
|
|
1499
|
+
deletedAt: DateTimeISO
|
|
1500
|
+
drawingMarker: String
|
|
1501
|
+
id: ID!
|
|
1502
|
+
manager: ProjectManagerOutput
|
|
1503
|
+
memo: String
|
|
1504
|
+
projectType: String
|
|
1505
|
+
requestDate: String
|
|
1506
|
+
status: String
|
|
1507
|
+
updatedAt: DateTimeISO
|
|
1508
|
+
updater: User
|
|
1509
|
+
worklog: BuildingInspectionDailyWorklog
|
|
1510
|
+
}
|
|
1511
|
+
|
|
1512
|
+
"""Entity for BuildingInspectionDailyWorklog"""
|
|
1513
|
+
type BuildingInspectionDailyWorklog {
|
|
1514
|
+
buildingInspections: [BuildingInspection!]
|
|
1515
|
+
createdAt: DateTimeISO
|
|
1516
|
+
creator: User
|
|
1517
|
+
date: String
|
|
1518
|
+
deletedAt: DateTimeISO
|
|
1519
|
+
directiveMemo: String
|
|
1520
|
+
documentNo: String
|
|
1521
|
+
domain: Domain
|
|
1522
|
+
id: ID
|
|
1523
|
+
memo: String
|
|
1524
|
+
|
|
1525
|
+
"""총괄 감리 책임자"""
|
|
1526
|
+
overallSupervisory: User
|
|
1527
|
+
overallSupervisorySignature: String
|
|
1528
|
+
projectId: String!
|
|
1529
|
+
|
|
1530
|
+
"""건축사보 (공종별 감리 관리자)"""
|
|
1531
|
+
taskSupervisory: User
|
|
1532
|
+
taskSupervisorySignature: String
|
|
1533
|
+
updatedAt: DateTimeISO
|
|
1534
|
+
updater: User
|
|
1535
|
+
worklogs: Object
|
|
1536
|
+
}
|
|
1537
|
+
|
|
1538
|
+
input BuildingInspectionDailyWorklogNew {
|
|
1539
|
+
buildingInspectionIds: [String!]
|
|
1540
|
+
date: String!
|
|
1541
|
+
directiveMemo: String
|
|
1542
|
+
memo: String
|
|
1543
|
+
overallSupervisoryId: String
|
|
1544
|
+
overallSupervisorySignature: String
|
|
1545
|
+
projectId: String!
|
|
1546
|
+
taskSupervisoryId: String
|
|
1547
|
+
taskSupervisorySignature: String
|
|
1548
|
+
worklogs: Object
|
|
1549
|
+
}
|
|
1550
|
+
|
|
1551
|
+
input BuildingInspectionDailyWorklogPatch {
|
|
1552
|
+
directiveMemo: String
|
|
1553
|
+
id: ID!
|
|
1554
|
+
memo: String
|
|
1555
|
+
worklogs: Object
|
|
1556
|
+
}
|
|
1557
|
+
|
|
1558
|
+
"""History Entity of BuildingInspection"""
|
|
1559
|
+
type BuildingInspectionHistory {
|
|
1560
|
+
attachments: [Attachment!]!
|
|
1561
|
+
buildingLevel: BuildingLevel
|
|
1562
|
+
cellX: Float
|
|
1563
|
+
cellY: Float
|
|
1564
|
+
checklistHistory: ChecklistHistory
|
|
1565
|
+
checklistId: String
|
|
1566
|
+
createdAt: DateTimeISO
|
|
1567
|
+
creator: User
|
|
1568
|
+
drawingMarker: String
|
|
1569
|
+
id: ID!
|
|
1570
|
+
loggedAt: DateTimeISO
|
|
1571
|
+
manager: ProjectManagerOutput
|
|
1572
|
+
memo: String
|
|
1573
|
+
projectType: String
|
|
1574
|
+
requestDate: String
|
|
1575
|
+
status: String
|
|
1576
|
+
timestamp: User!
|
|
1577
|
+
updater: User
|
|
1578
|
+
worklog: BuildingInspectionDailyWorklog
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1581
|
+
type BuildingInspectionHistoryList {
|
|
1582
|
+
items: [BuildingInspectionHistory!]!
|
|
1583
|
+
total: Int!
|
|
1584
|
+
}
|
|
1585
|
+
|
|
1586
|
+
type BuildingInspectionList {
|
|
1587
|
+
items: [BuildingInspection!]!
|
|
1588
|
+
total: Int!
|
|
1589
|
+
}
|
|
1590
|
+
|
|
1591
|
+
type BuildingInspectionSummary {
|
|
1592
|
+
"""검측 실패 수"""
|
|
1593
|
+
fail: Int!
|
|
1594
|
+
|
|
1595
|
+
"""검측 통과 수"""
|
|
1596
|
+
pass: Int!
|
|
1597
|
+
|
|
1598
|
+
"""검측 요청 수"""
|
|
1599
|
+
request: Int!
|
|
1600
|
+
|
|
1601
|
+
"""요청일자"""
|
|
1602
|
+
requestDate: String
|
|
1603
|
+
|
|
1604
|
+
"""검측 대기 수"""
|
|
1605
|
+
wait: Int!
|
|
1606
|
+
}
|
|
1607
|
+
|
|
1608
|
+
type BuildingInspectionSummaryOfLevel {
|
|
1609
|
+
"""검측 실패 수"""
|
|
1610
|
+
fail: Int!
|
|
1611
|
+
|
|
1612
|
+
"""검측 통과 수"""
|
|
1613
|
+
pass: Int!
|
|
1614
|
+
|
|
1615
|
+
"""검측 요청 수"""
|
|
1616
|
+
request: Int!
|
|
1617
|
+
|
|
1618
|
+
"""검측 대기 수"""
|
|
1619
|
+
wait: Int!
|
|
1620
|
+
}
|
|
1621
|
+
|
|
1622
|
+
input BuildingInspectionsOfBuildingLevel {
|
|
1623
|
+
buildingLevelId: String!
|
|
1624
|
+
endDate: String
|
|
1625
|
+
limit: Float
|
|
1626
|
+
startDate: String
|
|
1627
|
+
}
|
|
1628
|
+
|
|
1629
|
+
input BuildingInspectionsOfProject {
|
|
1630
|
+
limit: Float
|
|
1631
|
+
projectId: String!
|
|
1632
|
+
}
|
|
1633
|
+
|
|
1634
|
+
"""층 정보"""
|
|
1635
|
+
type BuildingLevel {
|
|
1636
|
+
building: Building!
|
|
1637
|
+
createdAt: DateTimeISO
|
|
1638
|
+
creator: User
|
|
1639
|
+
deletedAt: DateTimeISO
|
|
1640
|
+
elevationDrawing: Attachment
|
|
1641
|
+
elevationDrawingThumbnail: String
|
|
1642
|
+
etcDrawings: [Attachment!]
|
|
1643
|
+
floor: Float!
|
|
1644
|
+
|
|
1645
|
+
"""층 표시명 (예: 1층 = 1, 지하 1층 = 지하 1)"""
|
|
1646
|
+
floorDisplayName: String
|
|
1647
|
+
id: ID!
|
|
1648
|
+
inspectionSummary: BuildingInspectionSummaryOfLevel!
|
|
1649
|
+
mainDrawing: Attachment
|
|
1650
|
+
mainDrawingImage: String
|
|
1651
|
+
mainDrawingThumbnail: String
|
|
1652
|
+
noticeCount: Float!
|
|
1653
|
+
rebarDistributionDrawing: Attachment
|
|
1654
|
+
rebarDistributionDrawingThumbnail: String
|
|
1655
|
+
updatedAt: DateTimeISO
|
|
1656
|
+
updater: User
|
|
1657
|
+
}
|
|
1658
|
+
|
|
1659
|
+
input BuildingLevelPatch {
|
|
1660
|
+
elevationDrawingUpload: Upload
|
|
1661
|
+
etcDrawingIds: [String!]
|
|
1662
|
+
etcDrawingsUpload: [Upload!]
|
|
1663
|
+
floor: Float!
|
|
1664
|
+
id: ID
|
|
1665
|
+
mainDrawingUpload: Upload
|
|
1666
|
+
rebarDistributionDrawingUpload: Upload
|
|
1667
|
+
}
|
|
1668
|
+
|
|
1669
|
+
input BuildingPatch {
|
|
1670
|
+
basementFloorCount: Float
|
|
1671
|
+
buildingLevels: [BuildingLevelPatch!]
|
|
1672
|
+
drawingUpload: Upload
|
|
1673
|
+
floorCount: Float
|
|
1674
|
+
hasBasement: Boolean
|
|
1675
|
+
id: ID
|
|
1676
|
+
name: String
|
|
1677
|
+
}
|
|
1678
|
+
|
|
1372
1679
|
input ChatCompletionInput {
|
|
1373
1680
|
content: String!
|
|
1374
1681
|
}
|
|
@@ -1377,6 +1684,290 @@ type ChatCompletionOutput {
|
|
|
1377
1684
|
message: String
|
|
1378
1685
|
}
|
|
1379
1686
|
|
|
1687
|
+
type Checklist {
|
|
1688
|
+
buildingInspection: BuildingInspection!
|
|
1689
|
+
checklistItems: [ChecklistItem!]!
|
|
1690
|
+
checklistReferenceType: String
|
|
1691
|
+
constructionDetailType: String
|
|
1692
|
+
constructionInspectionDate: DateTimeISO
|
|
1693
|
+
constructionType: String
|
|
1694
|
+
createdAt: DateTimeISO
|
|
1695
|
+
creator: User
|
|
1696
|
+
deletedAt: DateTimeISO
|
|
1697
|
+
documentNo: String
|
|
1698
|
+
id: ID!
|
|
1699
|
+
inspectionDrawingType: String
|
|
1700
|
+
inspectionParts: [String!]
|
|
1701
|
+
inspectionRequestDocumentNo: String
|
|
1702
|
+
inspectionRequestMemo: String
|
|
1703
|
+
inspectionRequestUpdatedAt: DateTimeISO
|
|
1704
|
+
inspectionResultDocumentNo: String
|
|
1705
|
+
inspectionResultMemo: String
|
|
1706
|
+
inspectionResultStatus: String
|
|
1707
|
+
inspectionResultType: String
|
|
1708
|
+
inspectionResultUpdatedAt: DateTimeISO
|
|
1709
|
+
location: String
|
|
1710
|
+
name: String
|
|
1711
|
+
nameListAttachment: Attachment
|
|
1712
|
+
|
|
1713
|
+
"""총괄 시공 책임자"""
|
|
1714
|
+
overallConstructor: User
|
|
1715
|
+
overallConstructorSignature: String
|
|
1716
|
+
|
|
1717
|
+
"""총괄 감리 책임자"""
|
|
1718
|
+
overallSupervisory: User
|
|
1719
|
+
overallSupervisorySignature: String
|
|
1720
|
+
projectType: String
|
|
1721
|
+
supervisorInspectionDate: DateTimeISO
|
|
1722
|
+
|
|
1723
|
+
"""공종별 시공 관리자"""
|
|
1724
|
+
taskConstructor: User
|
|
1725
|
+
taskConstructorSignature: String
|
|
1726
|
+
|
|
1727
|
+
"""건축사보 (공종별 감리 관리자)"""
|
|
1728
|
+
taskSupervisory: User
|
|
1729
|
+
taskSupervisorySignature: String
|
|
1730
|
+
updatedAt: DateTimeISO
|
|
1731
|
+
updater: User
|
|
1732
|
+
}
|
|
1733
|
+
|
|
1734
|
+
"""Entity for ChecklistHistory"""
|
|
1735
|
+
type ChecklistHistory {
|
|
1736
|
+
buildingInspectionHistory: BuildingInspectionHistory!
|
|
1737
|
+
checklistItemHistories: [ChecklistItemHistory!]!
|
|
1738
|
+
checklistReferenceType: String
|
|
1739
|
+
constructionDetailType: String
|
|
1740
|
+
constructionInspectionDate: DateTimeISO
|
|
1741
|
+
constructionType: String
|
|
1742
|
+
createdAt: DateTimeISO
|
|
1743
|
+
creator: User
|
|
1744
|
+
documentNo: String
|
|
1745
|
+
id: ID!
|
|
1746
|
+
inspectionDrawingType: String
|
|
1747
|
+
inspectionParts: [String!]
|
|
1748
|
+
inspectionRequestDocumentNo: String
|
|
1749
|
+
inspectionRequestMemo: String
|
|
1750
|
+
inspectionRequestUpdatedAt: DateTimeISO
|
|
1751
|
+
inspectionResultDocumentNo: String
|
|
1752
|
+
inspectionResultMemo: String
|
|
1753
|
+
inspectionResultStatus: String
|
|
1754
|
+
inspectionResultType: String
|
|
1755
|
+
inspectionResultUpdatedAt: DateTimeISO
|
|
1756
|
+
location: String
|
|
1757
|
+
loggedAt: DateTimeISO
|
|
1758
|
+
name: String
|
|
1759
|
+
|
|
1760
|
+
"""총괄 시공 책임자"""
|
|
1761
|
+
overallConstructor: User
|
|
1762
|
+
overallConstructorSignature: String
|
|
1763
|
+
|
|
1764
|
+
"""총괄 감리 책임자"""
|
|
1765
|
+
overallSupervisory: User
|
|
1766
|
+
overallSupervisorySignature: String
|
|
1767
|
+
projectType: String
|
|
1768
|
+
supervisorInspectionDate: DateTimeISO
|
|
1769
|
+
|
|
1770
|
+
"""공종별 시공 관리자"""
|
|
1771
|
+
taskConstructor: User
|
|
1772
|
+
taskConstructorSignature: String
|
|
1773
|
+
|
|
1774
|
+
"""건축사보 (공종별 감리 관리자)"""
|
|
1775
|
+
taskSupervisory: User
|
|
1776
|
+
taskSupervisorySignature: String
|
|
1777
|
+
timestamp: User!
|
|
1778
|
+
updater: User
|
|
1779
|
+
}
|
|
1780
|
+
|
|
1781
|
+
type ChecklistHistoryList {
|
|
1782
|
+
items: [ChecklistHistory!]!
|
|
1783
|
+
total: Int!
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1786
|
+
input ChecklistInputType {
|
|
1787
|
+
constructionDetailType: String
|
|
1788
|
+
constructionType: String
|
|
1789
|
+
inspectionDrawingType: String
|
|
1790
|
+
inspectionParts: [String!]
|
|
1791
|
+
location: String
|
|
1792
|
+
name: String!
|
|
1793
|
+
}
|
|
1794
|
+
|
|
1795
|
+
type ChecklistItem {
|
|
1796
|
+
checklist: Checklist
|
|
1797
|
+
checklistItemAttachmentCount: Float!
|
|
1798
|
+
checklistItemAttachments(description: String): [Attachment!]!
|
|
1799
|
+
checklistItemCommentCount: Float!
|
|
1800
|
+
checklistItemComments: [ChecklistItemComment!]!
|
|
1801
|
+
constructionConfirmStatus: String
|
|
1802
|
+
createdAt: DateTimeISO
|
|
1803
|
+
creator: User
|
|
1804
|
+
deletedAt: DateTimeISO
|
|
1805
|
+
detailType: String!
|
|
1806
|
+
id: ID!
|
|
1807
|
+
inspctionCriteria: String
|
|
1808
|
+
mainType: String!
|
|
1809
|
+
name: String
|
|
1810
|
+
sequence: Int
|
|
1811
|
+
supervisoryConfirmStatus: String
|
|
1812
|
+
updatedAt: DateTimeISO
|
|
1813
|
+
updater: User
|
|
1814
|
+
}
|
|
1815
|
+
|
|
1816
|
+
"""Entity for ChecklistItemComment"""
|
|
1817
|
+
type ChecklistItemComment {
|
|
1818
|
+
checklistItem: ChecklistItem
|
|
1819
|
+
comment: String
|
|
1820
|
+
createdAt: DateTimeISO
|
|
1821
|
+
creator: User
|
|
1822
|
+
deletedAt: DateTimeISO
|
|
1823
|
+
id: ID!
|
|
1824
|
+
}
|
|
1825
|
+
|
|
1826
|
+
input ChecklistItemCommentPatch {
|
|
1827
|
+
checklistItemId: String
|
|
1828
|
+
comment: String
|
|
1829
|
+
id: ID
|
|
1830
|
+
}
|
|
1831
|
+
|
|
1832
|
+
"""History Entity of ChecklistItem"""
|
|
1833
|
+
type ChecklistItemHistory {
|
|
1834
|
+
checklistHistory: ChecklistHistory
|
|
1835
|
+
checklistId: String
|
|
1836
|
+
checklistItemAttachmentCount: Float!
|
|
1837
|
+
checklistItemAttachments(description: String): [Attachment!]!
|
|
1838
|
+
checklistItemCommentCount: Float!
|
|
1839
|
+
checklistItemComments: [ChecklistItemComment!]!
|
|
1840
|
+
constructionConfirmStatus: String
|
|
1841
|
+
createdAt: DateTimeISO
|
|
1842
|
+
creator: User
|
|
1843
|
+
detailType: String!
|
|
1844
|
+
id: ID!
|
|
1845
|
+
inspctionCriteria: String
|
|
1846
|
+
loggedAt: DateTimeISO
|
|
1847
|
+
mainType: String!
|
|
1848
|
+
name: String
|
|
1849
|
+
sequence: Float
|
|
1850
|
+
supervisoryConfirmStatus: String
|
|
1851
|
+
updater: User
|
|
1852
|
+
}
|
|
1853
|
+
|
|
1854
|
+
type ChecklistItemHistoryList {
|
|
1855
|
+
items: [ChecklistItemHistory!]!
|
|
1856
|
+
total: Int!
|
|
1857
|
+
}
|
|
1858
|
+
|
|
1859
|
+
input ChecklistItemInputType {
|
|
1860
|
+
detailType: String!
|
|
1861
|
+
inspctionCriteria: String
|
|
1862
|
+
mainType: String!
|
|
1863
|
+
name: String!
|
|
1864
|
+
}
|
|
1865
|
+
|
|
1866
|
+
type ChecklistItemList {
|
|
1867
|
+
items: [ChecklistItem!]!
|
|
1868
|
+
total: Int!
|
|
1869
|
+
}
|
|
1870
|
+
|
|
1871
|
+
input ChecklistItemSubmitInputType {
|
|
1872
|
+
constructionConfirmStatus: String
|
|
1873
|
+
id: String!
|
|
1874
|
+
supervisoryConfirmStatus: String
|
|
1875
|
+
}
|
|
1876
|
+
|
|
1877
|
+
type ChecklistList {
|
|
1878
|
+
items: [Checklist!]!
|
|
1879
|
+
total: Int!
|
|
1880
|
+
}
|
|
1881
|
+
|
|
1882
|
+
input ChecklistSubmitInputType {
|
|
1883
|
+
id: String!
|
|
1884
|
+
inspectionRequestMemo: String
|
|
1885
|
+
inspectionResultMemo: String
|
|
1886
|
+
inspectionResultStatus: String
|
|
1887
|
+
inspectionResultType: String
|
|
1888
|
+
overallConstructorSignature: String
|
|
1889
|
+
overallSupervisorySignature: String
|
|
1890
|
+
taskConstructorSignature: String
|
|
1891
|
+
taskSupervisorySignature: String
|
|
1892
|
+
}
|
|
1893
|
+
|
|
1894
|
+
type ChecklistTemplate {
|
|
1895
|
+
checklistTemplateItems: [ChecklistTemplateItem!]!
|
|
1896
|
+
createdAt: DateTimeISO
|
|
1897
|
+
creator: User
|
|
1898
|
+
deletedAt: DateTimeISO
|
|
1899
|
+
domain: Domain
|
|
1900
|
+
id: ID!
|
|
1901
|
+
name: String
|
|
1902
|
+
updatedAt: DateTimeISO
|
|
1903
|
+
updater: User
|
|
1904
|
+
}
|
|
1905
|
+
|
|
1906
|
+
type ChecklistTemplateItem {
|
|
1907
|
+
checklistTemplate: ChecklistTemplate
|
|
1908
|
+
createdAt: DateTimeISO
|
|
1909
|
+
creator: User
|
|
1910
|
+
detailType: String!
|
|
1911
|
+
detailTypeName: String!
|
|
1912
|
+
id: ID!
|
|
1913
|
+
inspctionCriteria: String
|
|
1914
|
+
mainType: String!
|
|
1915
|
+
name: String!
|
|
1916
|
+
sequence: Int
|
|
1917
|
+
updatedAt: DateTimeISO
|
|
1918
|
+
updater: User
|
|
1919
|
+
}
|
|
1920
|
+
|
|
1921
|
+
type ChecklistTemplateItemList {
|
|
1922
|
+
items: [ChecklistTemplateItem!]!
|
|
1923
|
+
total: Int!
|
|
1924
|
+
}
|
|
1925
|
+
|
|
1926
|
+
input ChecklistTemplateItemPatch {
|
|
1927
|
+
checklistTemplateId: String
|
|
1928
|
+
cuFlag: String
|
|
1929
|
+
detailType: String
|
|
1930
|
+
id: ID
|
|
1931
|
+
inspctionCriteria: String
|
|
1932
|
+
mainType: String
|
|
1933
|
+
name: String
|
|
1934
|
+
sequence: Int
|
|
1935
|
+
}
|
|
1936
|
+
|
|
1937
|
+
type ChecklistTemplateList {
|
|
1938
|
+
items: [ChecklistTemplate!]!
|
|
1939
|
+
total: Int!
|
|
1940
|
+
}
|
|
1941
|
+
|
|
1942
|
+
input ChecklistTemplatePatch {
|
|
1943
|
+
cuFlag: String
|
|
1944
|
+
id: ID
|
|
1945
|
+
name: String
|
|
1946
|
+
}
|
|
1947
|
+
|
|
1948
|
+
type ChecklistType {
|
|
1949
|
+
createdAt: DateTimeISO
|
|
1950
|
+
creator: User
|
|
1951
|
+
detailType: String!
|
|
1952
|
+
domain: Domain
|
|
1953
|
+
id: ID!
|
|
1954
|
+
mainType: String!
|
|
1955
|
+
updatedAt: DateTimeISO
|
|
1956
|
+
updater: User
|
|
1957
|
+
}
|
|
1958
|
+
|
|
1959
|
+
type ChecklistTypeList {
|
|
1960
|
+
items: [ChecklistType!]!
|
|
1961
|
+
total: Int!
|
|
1962
|
+
}
|
|
1963
|
+
|
|
1964
|
+
input ChecklistTypePatch {
|
|
1965
|
+
cuFlag: String
|
|
1966
|
+
detailType: String
|
|
1967
|
+
id: ID
|
|
1968
|
+
mainType: String
|
|
1969
|
+
}
|
|
1970
|
+
|
|
1380
1971
|
input CodeDecipherInput {
|
|
1381
1972
|
code: String!
|
|
1382
1973
|
language: String
|
|
@@ -1600,22 +2191,72 @@ type ConnectorType {
|
|
|
1600
2191
|
taskPrefixes: [String!]
|
|
1601
2192
|
}
|
|
1602
2193
|
|
|
1603
|
-
"""
|
|
1604
|
-
type
|
|
1605
|
-
|
|
1606
|
-
company: String
|
|
2194
|
+
"""세부 공종 타입"""
|
|
2195
|
+
type ConstructionDetailType {
|
|
2196
|
+
constructionType: ConstructionType
|
|
1607
2197
|
createdAt: DateTimeISO
|
|
1608
2198
|
creator: User
|
|
1609
|
-
deletedAt: DateTimeISO
|
|
1610
|
-
department: String
|
|
1611
|
-
domain: Domain!
|
|
1612
|
-
email: EmailAddress
|
|
1613
2199
|
id: ID!
|
|
1614
|
-
items: [ContactItem!]
|
|
1615
2200
|
name: String
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
2201
|
+
sequence: Int
|
|
2202
|
+
updatedAt: DateTimeISO
|
|
2203
|
+
updater: User
|
|
2204
|
+
}
|
|
2205
|
+
|
|
2206
|
+
type ConstructionDetailTypeList {
|
|
2207
|
+
items: [ConstructionDetailType!]!
|
|
2208
|
+
total: Int!
|
|
2209
|
+
}
|
|
2210
|
+
|
|
2211
|
+
input ConstructionDetailTypePatch {
|
|
2212
|
+
cuFlag: String
|
|
2213
|
+
id: ID
|
|
2214
|
+
name: String
|
|
2215
|
+
sequence: Int
|
|
2216
|
+
}
|
|
2217
|
+
|
|
2218
|
+
"""공종 타입"""
|
|
2219
|
+
type ConstructionType {
|
|
2220
|
+
constructionDetailTypes: [ConstructionDetailType!]
|
|
2221
|
+
createdAt: DateTimeISO
|
|
2222
|
+
creator: User
|
|
2223
|
+
deletedAt: DateTimeISO
|
|
2224
|
+
description: String
|
|
2225
|
+
domain: Domain
|
|
2226
|
+
id: ID!
|
|
2227
|
+
name: String
|
|
2228
|
+
updatedAt: DateTimeISO
|
|
2229
|
+
updater: User
|
|
2230
|
+
}
|
|
2231
|
+
|
|
2232
|
+
type ConstructionTypeList {
|
|
2233
|
+
items: [ConstructionType!]!
|
|
2234
|
+
total: Int!
|
|
2235
|
+
}
|
|
2236
|
+
|
|
2237
|
+
input ConstructionTypePatch {
|
|
2238
|
+
cuFlag: String
|
|
2239
|
+
description: String
|
|
2240
|
+
id: ID
|
|
2241
|
+
name: String
|
|
2242
|
+
}
|
|
2243
|
+
|
|
2244
|
+
"""Entity for Contact"""
|
|
2245
|
+
type Contact {
|
|
2246
|
+
address: String
|
|
2247
|
+
company: String
|
|
2248
|
+
createdAt: DateTimeISO
|
|
2249
|
+
creator: User
|
|
2250
|
+
deletedAt: DateTimeISO
|
|
2251
|
+
department: String
|
|
2252
|
+
domain: Domain!
|
|
2253
|
+
email: EmailAddress
|
|
2254
|
+
id: ID!
|
|
2255
|
+
items: [ContactItem!]
|
|
2256
|
+
name: String
|
|
2257
|
+
note: String
|
|
2258
|
+
phone: String
|
|
2259
|
+
profile: Profile
|
|
1619
2260
|
updatedAt: DateTimeISO
|
|
1620
2261
|
updater: User
|
|
1621
2262
|
}
|
|
@@ -2709,6 +3350,14 @@ input DepartmentPatch {
|
|
|
2709
3350
|
picture: Upload
|
|
2710
3351
|
}
|
|
2711
3352
|
|
|
3353
|
+
type DigestedResource {
|
|
3354
|
+
"""할당량"""
|
|
3355
|
+
allocated: Float
|
|
3356
|
+
|
|
3357
|
+
"""자원 유형"""
|
|
3358
|
+
type: String
|
|
3359
|
+
}
|
|
3360
|
+
|
|
2712
3361
|
"""
|
|
2713
3362
|
Represents a domain entity, which is a logical grouping of users, roles, and resources within the system.
|
|
2714
3363
|
"""
|
|
@@ -3442,6 +4091,53 @@ enum InheritedValueType {
|
|
|
3442
4091
|
Only
|
|
3443
4092
|
}
|
|
3444
4093
|
|
|
4094
|
+
"""Entity for InspectionDrawingType"""
|
|
4095
|
+
type InspectionDrawingType {
|
|
4096
|
+
createdAt: DateTimeISO
|
|
4097
|
+
creator: User
|
|
4098
|
+
domain: Domain
|
|
4099
|
+
id: ID!
|
|
4100
|
+
inspectionParts: [InspectionPart!]
|
|
4101
|
+
name: String
|
|
4102
|
+
updatedAt: DateTimeISO
|
|
4103
|
+
updater: User
|
|
4104
|
+
}
|
|
4105
|
+
|
|
4106
|
+
type InspectionDrawingTypeList {
|
|
4107
|
+
items: [InspectionDrawingType!]!
|
|
4108
|
+
total: Int!
|
|
4109
|
+
}
|
|
4110
|
+
|
|
4111
|
+
input InspectionDrawingTypePatch {
|
|
4112
|
+
cuFlag: String
|
|
4113
|
+
id: ID
|
|
4114
|
+
name: String
|
|
4115
|
+
}
|
|
4116
|
+
|
|
4117
|
+
"""Entity for InspectionPart"""
|
|
4118
|
+
type InspectionPart {
|
|
4119
|
+
createdAt: DateTimeISO
|
|
4120
|
+
creator: User
|
|
4121
|
+
id: ID!
|
|
4122
|
+
inspectionDrawingType: InspectionDrawingType
|
|
4123
|
+
name: String
|
|
4124
|
+
sequence: Int
|
|
4125
|
+
updatedAt: DateTimeISO
|
|
4126
|
+
updater: User
|
|
4127
|
+
}
|
|
4128
|
+
|
|
4129
|
+
type InspectionPartList {
|
|
4130
|
+
items: [InspectionPart!]!
|
|
4131
|
+
total: Int!
|
|
4132
|
+
}
|
|
4133
|
+
|
|
4134
|
+
input InspectionPartPatch {
|
|
4135
|
+
cuFlag: String
|
|
4136
|
+
id: ID
|
|
4137
|
+
name: String
|
|
4138
|
+
sequence: Int
|
|
4139
|
+
}
|
|
4140
|
+
|
|
3445
4141
|
"""Entity for InstallableActivity"""
|
|
3446
4142
|
type InstallableActivity {
|
|
3447
4143
|
activity: Activity
|
|
@@ -3520,6 +4216,45 @@ type InvitationList {
|
|
|
3520
4216
|
total: Int
|
|
3521
4217
|
}
|
|
3522
4218
|
|
|
4219
|
+
"""Entity for Issue"""
|
|
4220
|
+
type Issue {
|
|
4221
|
+
actionPlans: [ActionPlan!]!
|
|
4222
|
+
active: Boolean
|
|
4223
|
+
createdAt: DateTimeISO
|
|
4224
|
+
creator: User
|
|
4225
|
+
deletedAt: DateTimeISO
|
|
4226
|
+
description: String
|
|
4227
|
+
domain: Domain
|
|
4228
|
+
id: ID!
|
|
4229
|
+
name: String
|
|
4230
|
+
params: String
|
|
4231
|
+
state: String
|
|
4232
|
+
thumbnail: String
|
|
4233
|
+
updatedAt: DateTimeISO
|
|
4234
|
+
updater: User
|
|
4235
|
+
}
|
|
4236
|
+
|
|
4237
|
+
type IssueList {
|
|
4238
|
+
items: [Issue!]!
|
|
4239
|
+
total: Int!
|
|
4240
|
+
}
|
|
4241
|
+
|
|
4242
|
+
input IssuePatch {
|
|
4243
|
+
active: Boolean
|
|
4244
|
+
cuFlag: String
|
|
4245
|
+
description: String
|
|
4246
|
+
id: ID
|
|
4247
|
+
name: String
|
|
4248
|
+
state: IssueStatus
|
|
4249
|
+
thumbnail: Upload
|
|
4250
|
+
}
|
|
4251
|
+
|
|
4252
|
+
"""state enumeration of a issue"""
|
|
4253
|
+
enum IssueStatus {
|
|
4254
|
+
STATUS_A
|
|
4255
|
+
STATUS_B
|
|
4256
|
+
}
|
|
4257
|
+
|
|
3523
4258
|
"""
|
|
3524
4259
|
A field whose value is a JSON Web Token (JWT): https://jwt.io/introduction.
|
|
3525
4260
|
"""
|
|
@@ -3835,6 +4570,7 @@ type KpiMetricValue {
|
|
|
3835
4570
|
"""
|
|
3836
4571
|
org: String
|
|
3837
4572
|
periodType: KpiPeriodType!
|
|
4573
|
+
project: Project!
|
|
3838
4574
|
unit: String
|
|
3839
4575
|
updatedAt: DateTimeISO
|
|
3840
4576
|
updater: User
|
|
@@ -4344,6 +5080,7 @@ type KpiValue {
|
|
|
4344
5080
|
|
|
4345
5081
|
"""Aggregation period type for this KPI value."""
|
|
4346
5082
|
periodType: KpiPeriodType!
|
|
5083
|
+
project: Project!
|
|
4347
5084
|
|
|
4348
5085
|
"""
|
|
4349
5086
|
Performance score calculated from KPI value using scoreFormula or grades lookup table. Range: 0-1.
|
|
@@ -4548,6 +5285,31 @@ type LoginHistoryList {
|
|
|
4548
5285
|
total: Int!
|
|
4549
5286
|
}
|
|
4550
5287
|
|
|
5288
|
+
"""담당자 관리"""
|
|
5289
|
+
type Manager {
|
|
5290
|
+
id: ID!
|
|
5291
|
+
phone: String
|
|
5292
|
+
position: String
|
|
5293
|
+
user: User
|
|
5294
|
+
}
|
|
5295
|
+
|
|
5296
|
+
type ManagerOutput {
|
|
5297
|
+
id: ID
|
|
5298
|
+
name: String
|
|
5299
|
+
phone: String
|
|
5300
|
+
position: String
|
|
5301
|
+
updatedAt: String
|
|
5302
|
+
userId: ID!
|
|
5303
|
+
}
|
|
5304
|
+
|
|
5305
|
+
input ManagerPatch {
|
|
5306
|
+
id: ID
|
|
5307
|
+
name: String
|
|
5308
|
+
phone: String
|
|
5309
|
+
position: String
|
|
5310
|
+
userId: ID
|
|
5311
|
+
}
|
|
5312
|
+
|
|
4551
5313
|
"""Entity for Menu"""
|
|
4552
5314
|
type Menu {
|
|
4553
5315
|
buttons: [MenuButton!]!
|
|
@@ -4926,6 +5688,9 @@ type Mutation {
|
|
|
4926
5688
|
username: String!
|
|
4927
5689
|
): Boolean!
|
|
4928
5690
|
|
|
5691
|
+
"""To apply to all building inspection"""
|
|
5692
|
+
applyToAllBuildingInspection(buildingInspectionId: String!): Boolean!
|
|
5693
|
+
|
|
4929
5694
|
"""To approve ActivityApproval"""
|
|
4930
5695
|
approveActivityApproval(comment: String, id: String!): ActivityApproval
|
|
4931
5696
|
|
|
@@ -4988,6 +5753,9 @@ type Mutation {
|
|
|
4988
5753
|
"""
|
|
4989
5754
|
copyScenarios(ids: [String!]!): [Scenario!]!
|
|
4990
5755
|
|
|
5756
|
+
"""To create new ActionPlan"""
|
|
5757
|
+
createActionPlan(actionPlan: NewActionPlan!): ActionPlan!
|
|
5758
|
+
|
|
4991
5759
|
"""To create new Activity"""
|
|
4992
5760
|
createActivity(activity: NewActivity!): Activity!
|
|
4993
5761
|
|
|
@@ -5022,6 +5790,15 @@ type Mutation {
|
|
|
5022
5790
|
"""To create new BoardTemplate"""
|
|
5023
5791
|
createBoardTemplate(boardTemplate: NewBoardTemplate!): BoardTemplate!
|
|
5024
5792
|
|
|
5793
|
+
"""To create Building Inspection information"""
|
|
5794
|
+
createBuildingInspection(patch: NewBuildingInspection!): BuildingInspection!
|
|
5795
|
+
|
|
5796
|
+
"""Create Daily Worklog by projectId+date"""
|
|
5797
|
+
createBuildingInspectionDailyWorklog(patch: BuildingInspectionDailyWorklogNew!): BuildingInspectionDailyWorklog!
|
|
5798
|
+
|
|
5799
|
+
"""To create new ChecklistItemComment"""
|
|
5800
|
+
createChecklistItemComment(checklistItemComment: NewChecklistItemComment!): ChecklistItemComment!
|
|
5801
|
+
|
|
5025
5802
|
"""To create new CommonCode"""
|
|
5026
5803
|
createCommonCode(commonCode: NewCommonCode!): CommonCode!
|
|
5027
5804
|
|
|
@@ -5101,6 +5878,9 @@ type Mutation {
|
|
|
5101
5878
|
"""Creates a new board group."""
|
|
5102
5879
|
createGroup(group: NewGroup!): Group
|
|
5103
5880
|
|
|
5881
|
+
"""To create new Issue"""
|
|
5882
|
+
createIssue(issue: NewIssue!): Issue!
|
|
5883
|
+
|
|
5104
5884
|
"""Create a new KPI with the provided details."""
|
|
5105
5885
|
createKpi(
|
|
5106
5886
|
"""Input object containing details for the new KPI."""
|
|
@@ -5170,6 +5950,9 @@ type Mutation {
|
|
|
5170
5950
|
"""To create my new PagePreference"""
|
|
5171
5951
|
createMyPagePreference(pagePreference: NewPagePreference!): PagePreference!
|
|
5172
5952
|
|
|
5953
|
+
"""To create new NoticeComment"""
|
|
5954
|
+
createNoticeComment(noticeComment: NewNoticeComment!): NoticeComment!
|
|
5955
|
+
|
|
5173
5956
|
"""To create new Notification"""
|
|
5174
5957
|
createNotification(notification: NewNotification!): Notification!
|
|
5175
5958
|
|
|
@@ -5191,6 +5974,15 @@ type Mutation {
|
|
|
5191
5974
|
"""To create new privilege"""
|
|
5192
5975
|
createPrivilege(privilege: NewPrivilege!): Privilege!
|
|
5193
5976
|
|
|
5977
|
+
"""프로젝트 생성"""
|
|
5978
|
+
createProject(project: NewProject!): Project!
|
|
5979
|
+
|
|
5980
|
+
"""To create new ProjectReport"""
|
|
5981
|
+
createProjectReport(projectReport: NewProjectReport!): ProjectReport!
|
|
5982
|
+
|
|
5983
|
+
"""To create new Resource"""
|
|
5984
|
+
createResource(resource: NewResource!): Resource!
|
|
5985
|
+
|
|
5194
5986
|
"""To create new user"""
|
|
5195
5987
|
createRole(role: NewRole!): User!
|
|
5196
5988
|
|
|
@@ -5203,6 +5995,18 @@ type Mutation {
|
|
|
5203
5995
|
"""Creates a new state register."""
|
|
5204
5996
|
createStateRegister(stateRegister: NewStateRegister!): StateRegister!
|
|
5205
5997
|
|
|
5998
|
+
"""To create new Supervisor"""
|
|
5999
|
+
createSupervisor(supervisor: NewSupervisor!): Supervisor!
|
|
6000
|
+
|
|
6001
|
+
"""To create new Task"""
|
|
6002
|
+
createTask(task: NewTask!): Task!
|
|
6003
|
+
|
|
6004
|
+
"""To create Task Checklist information"""
|
|
6005
|
+
createTaskChecklist(patch: NewTaskChecklist!): Boolean!
|
|
6006
|
+
|
|
6007
|
+
"""To create new TaskResource"""
|
|
6008
|
+
createTaskResource(taskResource: NewTaskResource!): TaskResource!
|
|
6009
|
+
|
|
5206
6010
|
"""To create new Terminology"""
|
|
5207
6011
|
createTerminology(terminology: NewTerminology!): Terminology!
|
|
5208
6012
|
|
|
@@ -5229,6 +6033,12 @@ type Mutation {
|
|
|
5229
6033
|
"""To delegate a ActivityThread"""
|
|
5230
6034
|
delegateActivityThread(assignee: ObjectRef, dueAt: DateTimeISO, id: String!, reason: String): ActivityThread!
|
|
5231
6035
|
|
|
6036
|
+
"""To delete ActionPlan"""
|
|
6037
|
+
deleteActionPlan(id: String!): Boolean!
|
|
6038
|
+
|
|
6039
|
+
"""To delete multiple ActionPlans"""
|
|
6040
|
+
deleteActionPlans(ids: [String!]!): Boolean!
|
|
6041
|
+
|
|
5232
6042
|
"""To delete multiple Activities"""
|
|
5233
6043
|
deleteActivities(ids: [String!]!): Boolean!
|
|
5234
6044
|
|
|
@@ -5282,6 +6092,39 @@ type Mutation {
|
|
|
5282
6092
|
"""To delete BoardTemplate"""
|
|
5283
6093
|
deleteBoardTemplate(id: String!): Boolean!
|
|
5284
6094
|
|
|
6095
|
+
"""To delete Building"""
|
|
6096
|
+
deleteBuilding(id: String!): Boolean!
|
|
6097
|
+
|
|
6098
|
+
"""To delete BuildingComplex"""
|
|
6099
|
+
deleteBuildingComplex(id: String!): Boolean!
|
|
6100
|
+
|
|
6101
|
+
"""To delete multiple BuildingComplexes"""
|
|
6102
|
+
deleteBuildingComplexes(ids: [String!]!): Boolean!
|
|
6103
|
+
|
|
6104
|
+
"""To delete multiple Checklists"""
|
|
6105
|
+
deleteBuildingInspections(ids: [String!]!): Boolean!
|
|
6106
|
+
|
|
6107
|
+
"""To delete multiple Buildings"""
|
|
6108
|
+
deleteBuildings(ids: [String!]!): Boolean!
|
|
6109
|
+
|
|
6110
|
+
"""To delete ChecklistItemComment"""
|
|
6111
|
+
deleteChecklistItemComment(id: String!): Boolean!
|
|
6112
|
+
|
|
6113
|
+
"""To delete ChecklistTemplateItem"""
|
|
6114
|
+
deleteChecklistTemplateItem(id: String!): Boolean!
|
|
6115
|
+
|
|
6116
|
+
"""To delete multiple ChecklistTemplateItems"""
|
|
6117
|
+
deleteChecklistTemplateItems(ids: [String!]!): Boolean!
|
|
6118
|
+
|
|
6119
|
+
"""To delete multiple ChecklistTemplates"""
|
|
6120
|
+
deleteChecklistTemplates(ids: [String!]!): Boolean!
|
|
6121
|
+
|
|
6122
|
+
"""To delete multiple ChecklistTypes"""
|
|
6123
|
+
deleteChecklistTypes(ids: [String!]!): Boolean!
|
|
6124
|
+
|
|
6125
|
+
"""To create Building Inspection And Checklist information"""
|
|
6126
|
+
deleteChecklists(ids: [String!]!): Boolean!
|
|
6127
|
+
|
|
5285
6128
|
"""To delete CommonCode"""
|
|
5286
6129
|
deleteCommonCode(id: String!): Boolean!
|
|
5287
6130
|
|
|
@@ -5300,6 +6143,12 @@ type Mutation {
|
|
|
5300
6143
|
"""Deletes multiple connections by their names."""
|
|
5301
6144
|
deleteConnections(names: [String!]!): Boolean!
|
|
5302
6145
|
|
|
6146
|
+
"""To delete multiple ConstructionDetailTypes"""
|
|
6147
|
+
deleteConstructionDetailTypes(ids: [String!]!): Boolean!
|
|
6148
|
+
|
|
6149
|
+
"""To delete multiple ConstructionTypes"""
|
|
6150
|
+
deleteConstructionTypes(ids: [String!]!): Boolean!
|
|
6151
|
+
|
|
5303
6152
|
"""To delete Contact"""
|
|
5304
6153
|
deleteContact(id: String!): Boolean!
|
|
5305
6154
|
|
|
@@ -5425,6 +6274,18 @@ type Mutation {
|
|
|
5425
6274
|
"""Deletes a board group."""
|
|
5426
6275
|
deleteGroup(id: String!): Boolean!
|
|
5427
6276
|
|
|
6277
|
+
"""To delete multiple InspectionDrawingTypes"""
|
|
6278
|
+
deleteInspectionDrawingTypes(ids: [String!]!): Boolean!
|
|
6279
|
+
|
|
6280
|
+
"""To delete multiple InspectionParts"""
|
|
6281
|
+
deleteInspectionParts(ids: [String!]!): Boolean!
|
|
6282
|
+
|
|
6283
|
+
"""To delete Issue"""
|
|
6284
|
+
deleteIssue(id: String!): Boolean!
|
|
6285
|
+
|
|
6286
|
+
"""To delete multiple Issues"""
|
|
6287
|
+
deleteIssues(ids: [String!]!): Boolean!
|
|
6288
|
+
|
|
5428
6289
|
"""To delete Kpi"""
|
|
5429
6290
|
deleteKpi(id: String!): Boolean!
|
|
5430
6291
|
|
|
@@ -5518,6 +6379,9 @@ type Mutation {
|
|
|
5518
6379
|
"""To delete my preference"""
|
|
5519
6380
|
deleteMyUserPreference(element: String!, key: String!): Boolean!
|
|
5520
6381
|
|
|
6382
|
+
"""To delete NoticeComment"""
|
|
6383
|
+
deleteNoticeComment(id: String!): Boolean!
|
|
6384
|
+
|
|
5521
6385
|
"""To delete Notification"""
|
|
5522
6386
|
deleteNotification(id: String!): Boolean!
|
|
5523
6387
|
|
|
@@ -5563,6 +6427,21 @@ type Mutation {
|
|
|
5563
6427
|
"""To delete privilege"""
|
|
5564
6428
|
deletePrivilege(category: String!, name: String!): Boolean!
|
|
5565
6429
|
|
|
6430
|
+
"""To delete Project"""
|
|
6431
|
+
deleteProject(id: String!): Boolean!
|
|
6432
|
+
|
|
6433
|
+
"""To delete ProjectReport"""
|
|
6434
|
+
deleteProjectReport(id: String!): Boolean!
|
|
6435
|
+
|
|
6436
|
+
"""To delete multiple ProjectReports"""
|
|
6437
|
+
deleteProjectReports(ids: [String!]!): Boolean!
|
|
6438
|
+
|
|
6439
|
+
"""To delete Resource"""
|
|
6440
|
+
deleteResource(id: String!): Boolean!
|
|
6441
|
+
|
|
6442
|
+
"""To delete multiple Resources"""
|
|
6443
|
+
deleteResources(ids: [String!]!): Boolean!
|
|
6444
|
+
|
|
5566
6445
|
"""To delete role"""
|
|
5567
6446
|
deleteRole(id: String!): Boolean!
|
|
5568
6447
|
|
|
@@ -5590,6 +6469,24 @@ type Mutation {
|
|
|
5590
6469
|
"""Deletes multiple scenario steps by their IDs."""
|
|
5591
6470
|
deleteSteps(ids: [String!]!): Boolean!
|
|
5592
6471
|
|
|
6472
|
+
"""To delete Supervisor"""
|
|
6473
|
+
deleteSupervisor(id: String!): Boolean!
|
|
6474
|
+
|
|
6475
|
+
"""To delete multiple Supervisors"""
|
|
6476
|
+
deleteSupervisors(ids: [String!]!): Boolean!
|
|
6477
|
+
|
|
6478
|
+
"""To delete Task"""
|
|
6479
|
+
deleteTask(id: String!): Boolean!
|
|
6480
|
+
|
|
6481
|
+
"""To delete TaskResource"""
|
|
6482
|
+
deleteTaskResource(id: String!): Boolean!
|
|
6483
|
+
|
|
6484
|
+
"""To delete multiple TaskResources"""
|
|
6485
|
+
deleteTaskResources(ids: [String!]!): Boolean!
|
|
6486
|
+
|
|
6487
|
+
"""To delete multiple Tasks"""
|
|
6488
|
+
deleteTasks(ids: [String!]!): Boolean!
|
|
6489
|
+
|
|
5593
6490
|
"""To delete multiple Terminologies"""
|
|
5594
6491
|
deleteTerminologies(ids: [String!]!): Boolean!
|
|
5595
6492
|
|
|
@@ -5627,6 +6524,9 @@ type Mutation {
|
|
|
5627
6524
|
"""To delete multiple workShifts"""
|
|
5628
6525
|
deleteWorkShifts(ids: [String!]!): Boolean!
|
|
5629
6526
|
|
|
6527
|
+
"""To delete multiple WorkerTypes"""
|
|
6528
|
+
deleteWorkerTypes(ids: [String!]!): Boolean!
|
|
6529
|
+
|
|
5630
6530
|
"""
|
|
5631
6531
|
Detaches an existing contact from an employee. The employee is identified by their ID.
|
|
5632
6532
|
"""
|
|
@@ -5637,6 +6537,9 @@ type Mutation {
|
|
|
5637
6537
|
domainRegister(domainInput: DomainGeneratorInput!): Domain!
|
|
5638
6538
|
domainUserRoleRegister(newDomainInfo: DomainUserRoleInput!): Domain!
|
|
5639
6539
|
|
|
6540
|
+
"""선택된 도면 파일들을 ZIP으로 압축하여 다운로드 URL 반환"""
|
|
6541
|
+
downloadPlanFiles(fileIds: [String!]!): String!
|
|
6542
|
+
|
|
5640
6543
|
"""To draft standard ActivityInstance"""
|
|
5641
6544
|
draftActivityInstance(activityInstance: ActivityInstanceDraft!): ActivityInstance!
|
|
5642
6545
|
|
|
@@ -5674,6 +6577,9 @@ type Mutation {
|
|
|
5674
6577
|
getOauth2AuthUrl(id: String!): String!
|
|
5675
6578
|
grantRoles(customerId: String!, roles: [RolePatch!]!): Boolean!
|
|
5676
6579
|
|
|
6580
|
+
"""To import multiple ActionPlans"""
|
|
6581
|
+
importActionPlans(actionPlans: [ActionPlanPatch!]!): Boolean!
|
|
6582
|
+
|
|
5677
6583
|
"""To import multiple Activities"""
|
|
5678
6584
|
importActivities(activities: [ActivityPatch!]!): Boolean!
|
|
5679
6585
|
|
|
@@ -5697,6 +6603,9 @@ type Mutation {
|
|
|
5697
6603
|
"""Imports multiple boards from JSON files."""
|
|
5698
6604
|
importBoards(files: [Upload!]!, groupId: String!, overwrite: Boolean!): [Board!]!
|
|
5699
6605
|
|
|
6606
|
+
"""To import multiple Buildings"""
|
|
6607
|
+
importBuildings(buildings: [BuildingPatch!]!): Boolean!
|
|
6608
|
+
|
|
5700
6609
|
"""To import multiple CommonCodeDetails"""
|
|
5701
6610
|
importCommonCodeDetails(commonCodeDetails: [CommonCodeDetailPatch!]!): Boolean!
|
|
5702
6611
|
|
|
@@ -5730,6 +6639,9 @@ type Mutation {
|
|
|
5730
6639
|
"""
|
|
5731
6640
|
importEmployees(employees: [EmployeePatch!]!): Boolean!
|
|
5732
6641
|
|
|
6642
|
+
"""To import multiple Issues"""
|
|
6643
|
+
importIssues(issues: [IssuePatch!]!): Boolean!
|
|
6644
|
+
|
|
5733
6645
|
"""To import multiple KpiMetricValues"""
|
|
5734
6646
|
importKpiMetricValues(metricValues: [KpiMetricValuePatch!]!): Boolean!
|
|
5735
6647
|
|
|
@@ -5769,6 +6681,12 @@ type Mutation {
|
|
|
5769
6681
|
"""To import multiple Oauth2Clients"""
|
|
5770
6682
|
importOauth2Clients(oauth2Clients: [Oauth2ClientPatch!]!): Boolean!
|
|
5771
6683
|
|
|
6684
|
+
"""To import multiple ProjectReports"""
|
|
6685
|
+
importProjectReports(projectReports: [ProjectReportPatch!]!): Boolean!
|
|
6686
|
+
|
|
6687
|
+
"""To import multiple Resources"""
|
|
6688
|
+
importResources(resources: [ResourcePatch!]!): Boolean!
|
|
6689
|
+
|
|
5772
6690
|
"""
|
|
5773
6691
|
Imports multiple scenarios, including their steps. This can overwrite existing scenarios if IDs match.
|
|
5774
6692
|
"""
|
|
@@ -5777,6 +6695,15 @@ type Mutation {
|
|
|
5777
6695
|
"""Imports multiple state registers from a provided list."""
|
|
5778
6696
|
importStateRegisters(stateRegisters: [StateRegisterPatch!]!): Boolean!
|
|
5779
6697
|
|
|
6698
|
+
"""To import multiple Supervisors"""
|
|
6699
|
+
importSupervisors(supervisors: [SupervisorPatch!]!): Boolean!
|
|
6700
|
+
|
|
6701
|
+
"""To import multiple TaskResources"""
|
|
6702
|
+
importTaskResources(taskResources: [TaskResourcePatch!]!): Boolean!
|
|
6703
|
+
|
|
6704
|
+
"""To import multiple Tasks"""
|
|
6705
|
+
importTasks(tasks: [TaskPatch!]!): Boolean!
|
|
6706
|
+
|
|
5780
6707
|
"""To import multiple Terminologies"""
|
|
5781
6708
|
importTerminologies(terminologies: [TerminologyPatch!]!): Boolean!
|
|
5782
6709
|
|
|
@@ -5974,6 +6901,9 @@ type Mutation {
|
|
|
5974
6901
|
username: String!
|
|
5975
6902
|
): Boolean!
|
|
5976
6903
|
|
|
6904
|
+
"""To modify ActionPlan information"""
|
|
6905
|
+
updateActionPlan(id: String!, patch: ActionPlanPatch!): ActionPlan!
|
|
6906
|
+
|
|
5977
6907
|
"""To modify Activity information"""
|
|
5978
6908
|
updateActivity(id: String!, patch: ActivityPatch!): Activity!
|
|
5979
6909
|
|
|
@@ -6011,6 +6941,24 @@ type Mutation {
|
|
|
6011
6941
|
"""To modify BoardTemplate information"""
|
|
6012
6942
|
updateBoardTemplate(id: String!, patch: BoardTemplatePatch!): BoardTemplate!
|
|
6013
6943
|
|
|
6944
|
+
"""To modify Building information"""
|
|
6945
|
+
updateBuilding(id: String!, patch: BuildingPatch!): Building!
|
|
6946
|
+
|
|
6947
|
+
"""To modify BuildingComplex information"""
|
|
6948
|
+
updateBuildingComplex(id: String!, patch: BuildingComplexPatch!): BuildingComplex!
|
|
6949
|
+
|
|
6950
|
+
"""To update Building Inspection information"""
|
|
6951
|
+
updateBuildingInspection(patch: UpdateBuildingInspection!): BuildingInspection!
|
|
6952
|
+
|
|
6953
|
+
"""To create Building Inspection And Checklist information"""
|
|
6954
|
+
updateBuildingInspectionChecklist(buildingInspection: UpdateBuildingInspectionSubmitType!): Boolean!
|
|
6955
|
+
|
|
6956
|
+
"""Update Daily Worklog"""
|
|
6957
|
+
updateBuildingInspectionDailyWorklog(patch: BuildingInspectionDailyWorklogPatch!): BuildingInspectionDailyWorklog!
|
|
6958
|
+
|
|
6959
|
+
"""To modify ChecklistItemComment information"""
|
|
6960
|
+
updateChecklistItemComment(id: String!, patch: ChecklistItemCommentPatch!): ChecklistItemComment!
|
|
6961
|
+
|
|
6014
6962
|
"""To modify CommonCode information"""
|
|
6015
6963
|
updateCommonCode(name: String!, patch: CommonCodePatch!): CommonCode!
|
|
6016
6964
|
|
|
@@ -6080,6 +7028,9 @@ type Mutation {
|
|
|
6080
7028
|
"""Updates an existing board group."""
|
|
6081
7029
|
updateGroup(id: String!, patch: GroupPatch!): Group!
|
|
6082
7030
|
|
|
7031
|
+
"""To modify Issue information"""
|
|
7032
|
+
updateIssue(id: String!, patch: IssuePatch!): Issue!
|
|
7033
|
+
|
|
6083
7034
|
"""To modify Kpi information"""
|
|
6084
7035
|
updateKpi(id: String!, patch: KpiPatch!): Kpi!
|
|
6085
7036
|
|
|
@@ -6119,6 +7070,9 @@ type Mutation {
|
|
|
6119
7070
|
"""To modify MenuDetailColumn information"""
|
|
6120
7071
|
updateMenuDetailColumn(id: String!, patch: MenuDetailColumnPatch!): MenuDetailColumn!
|
|
6121
7072
|
|
|
7073
|
+
"""To modify multiple ActionPlans' information"""
|
|
7074
|
+
updateMultipleActionPlan(patches: [ActionPlanPatch!]!): [ActionPlan!]!
|
|
7075
|
+
|
|
6122
7076
|
"""To modify multiple Activities' information"""
|
|
6123
7077
|
updateMultipleActivity(patches: [ActivityPatch!]!): [Activity!]!
|
|
6124
7078
|
|
|
@@ -6137,6 +7091,18 @@ type Mutation {
|
|
|
6137
7091
|
): [AttributeSet!]!
|
|
6138
7092
|
updateMultipleAuthProvider(patches: [AuthProviderPatch!]!): [AuthProvider!]!
|
|
6139
7093
|
|
|
7094
|
+
"""To modify multiple Buildings' information"""
|
|
7095
|
+
updateMultipleBuilding(patches: [BuildingPatch!]!): [Building!]!
|
|
7096
|
+
|
|
7097
|
+
"""To modify multiple ChecklistTemplates' information"""
|
|
7098
|
+
updateMultipleChecklistTemplate(patches: [ChecklistTemplatePatch!]!): [ChecklistTemplate!]!
|
|
7099
|
+
|
|
7100
|
+
"""To modify multiple ChecklistTemplateItems' information"""
|
|
7101
|
+
updateMultipleChecklistTemplateItems(checklistTemplateId: String!, patches: [ChecklistTemplateItemPatch!]!): [ChecklistTemplateItem!]!
|
|
7102
|
+
|
|
7103
|
+
"""To modify multiple ChecklistTypes' information"""
|
|
7104
|
+
updateMultipleChecklistType(patches: [ChecklistTypePatch!]!): [ChecklistType!]!
|
|
7105
|
+
|
|
6140
7106
|
"""To modify multiple CommonCodes' information"""
|
|
6141
7107
|
updateMultipleCommonCode(patches: [CommonCodePatch!]!): [CommonCode!]!
|
|
6142
7108
|
|
|
@@ -6146,6 +7112,12 @@ type Mutation {
|
|
|
6146
7112
|
"""Updates multiple connections at once."""
|
|
6147
7113
|
updateMultipleConnection(patches: [ConnectionPatch!]!): [Connection!]!
|
|
6148
7114
|
|
|
7115
|
+
"""To modify multiple ConstructionDetailTypes' information"""
|
|
7116
|
+
updateMultipleConstructionDetailType(constructionTypeId: String!, patches: [ConstructionDetailTypePatch!]!): [ConstructionDetailType!]!
|
|
7117
|
+
|
|
7118
|
+
"""To modify multiple ConstructionTypes' information"""
|
|
7119
|
+
updateMultipleConstructionType(patches: [ConstructionTypePatch!]!): [ConstructionType!]!
|
|
7120
|
+
|
|
6149
7121
|
"""To modify multiple Contacts' information"""
|
|
6150
7122
|
updateMultipleContact(patches: [ContactPatch!]!): [Contact!]!
|
|
6151
7123
|
|
|
@@ -6189,6 +7161,15 @@ type Mutation {
|
|
|
6189
7161
|
"""To modify multiple EnvVars' information"""
|
|
6190
7162
|
updateMultipleEnvVars(patches: [EnvVarPatch!]!): [EnvVar!]!
|
|
6191
7163
|
|
|
7164
|
+
"""To modify multiple InspectionDrawingTypes' information"""
|
|
7165
|
+
updateMultipleInspectionDrawingType(patches: [InspectionDrawingTypePatch!]!): [InspectionDrawingType!]!
|
|
7166
|
+
|
|
7167
|
+
"""To modify multiple InspectionParts' information"""
|
|
7168
|
+
updateMultipleInspectionPart(inspectionDrawingTypeId: String!, patches: [InspectionPartPatch!]!): [InspectionPart!]!
|
|
7169
|
+
|
|
7170
|
+
"""To modify multiple Issues' information"""
|
|
7171
|
+
updateMultipleIssue(patches: [IssuePatch!]!): [Issue!]!
|
|
7172
|
+
|
|
6192
7173
|
"""To modify multiple Kpis' information"""
|
|
6193
7174
|
updateMultipleKpi(patches: [KpiPatch!]!): [Kpi!]!
|
|
6194
7175
|
|
|
@@ -6213,6 +7194,9 @@ type Mutation {
|
|
|
6213
7194
|
"""To modify multiple KpiValues' information"""
|
|
6214
7195
|
updateMultipleKpiValue(patches: [KpiValuePatch!]!): [KpiValue!]!
|
|
6215
7196
|
|
|
7197
|
+
"""To modify multiple Managers' information"""
|
|
7198
|
+
updateMultipleManager(patches: [ManagerPatch!]!): [Manager!]!
|
|
7199
|
+
|
|
6216
7200
|
"""To modify multiple Menus' information"""
|
|
6217
7201
|
updateMultipleMenu(patches: [MenuPatch!]!): [Menu!]!
|
|
6218
7202
|
|
|
@@ -6234,6 +7218,12 @@ type Mutation {
|
|
|
6234
7218
|
"""To modify multiple PrinterDevices' information"""
|
|
6235
7219
|
updateMultiplePrinterDevice(patches: [PrinterDevicePatch!]!): [PrinterDevice!]!
|
|
6236
7220
|
|
|
7221
|
+
"""To modify multiple ProjectReports' information"""
|
|
7222
|
+
updateMultipleProjectReport(patches: [ProjectReportPatch!]!): [ProjectReport!]!
|
|
7223
|
+
|
|
7224
|
+
"""To modify multiple Resources' information"""
|
|
7225
|
+
updateMultipleResource(patches: [ResourcePatch!]!): [Resource!]!
|
|
7226
|
+
|
|
6237
7227
|
"""
|
|
6238
7228
|
Updates multiple scenarios at once. Can be used to create or update records.
|
|
6239
7229
|
"""
|
|
@@ -6250,6 +7240,15 @@ type Mutation {
|
|
|
6250
7240
|
"""
|
|
6251
7241
|
updateMultipleStep(patches: [StepPatch!]!, scenarioId: String!): [Step!]!
|
|
6252
7242
|
|
|
7243
|
+
"""To modify multiple Supervisors' information"""
|
|
7244
|
+
updateMultipleSupervisor(patches: [SupervisorPatch!]!): [Supervisor!]!
|
|
7245
|
+
|
|
7246
|
+
"""To modify multiple Tasks' information"""
|
|
7247
|
+
updateMultipleTask(patches: [TaskPatch!]!): [Task!]!
|
|
7248
|
+
|
|
7249
|
+
"""To modify multiple TaskResources' information"""
|
|
7250
|
+
updateMultipleTaskResource(patches: [TaskResourcePatch!]!): [TaskResource!]!
|
|
7251
|
+
|
|
6253
7252
|
"""To modify multiple Terminologies' information"""
|
|
6254
7253
|
updateMultipleTerminologies(patches: [TerminologyPatch!]!): [Terminology!]!
|
|
6255
7254
|
|
|
@@ -6269,6 +7268,9 @@ type Mutation {
|
|
|
6269
7268
|
"""To modify multiple WorkShifts' information"""
|
|
6270
7269
|
updateMultipleWorkShift(patches: [WorkShiftPatch!]!): [WorkShift!]!
|
|
6271
7270
|
|
|
7271
|
+
"""To modify multiple WorkerTypes' information"""
|
|
7272
|
+
updateMultipleWorkerType(patches: [WorkerTypePatch!]!): [WorkerType!]!
|
|
7273
|
+
|
|
6272
7274
|
"""To modify ApprovalLine information for current user"""
|
|
6273
7275
|
updateMyApprovalLine(id: String!, patch: ApprovalLinePatch!): ApprovalLine!
|
|
6274
7276
|
|
|
@@ -6278,6 +7280,9 @@ type Mutation {
|
|
|
6278
7280
|
"""To create or update my preference"""
|
|
6279
7281
|
updateMyUserPreference(key: String!, preference: Object!): UserPreference!
|
|
6280
7282
|
|
|
7283
|
+
"""To modify NoticeComment information"""
|
|
7284
|
+
updateNoticeComment(id: String!, patch: NoticeCommentPatch!): NoticeComment!
|
|
7285
|
+
|
|
6281
7286
|
"""To modify Notification information"""
|
|
6282
7287
|
updateNotification(id: String!, patch: NotificationPatch!): Notification!
|
|
6283
7288
|
|
|
@@ -6299,6 +7304,18 @@ type Mutation {
|
|
|
6299
7304
|
"""To modify privilege information"""
|
|
6300
7305
|
updatePrivilege(category: String!, name: String!, patch: PrivilegePatch!): Privilege!
|
|
6301
7306
|
|
|
7307
|
+
"""프로젝트 업데이트"""
|
|
7308
|
+
updateProject(project: ProjectPatch!): Project!
|
|
7309
|
+
|
|
7310
|
+
"""프로젝트 도면 업데이트"""
|
|
7311
|
+
updateProjectPlan(project: ProjectPatch!): Project!
|
|
7312
|
+
|
|
7313
|
+
"""To modify ProjectReport information"""
|
|
7314
|
+
updateProjectReport(id: String!, patch: ProjectReportPatch!): ProjectReport!
|
|
7315
|
+
|
|
7316
|
+
"""To modify Resource information"""
|
|
7317
|
+
updateResource(id: String!, patch: ResourcePatch!): Resource!
|
|
7318
|
+
|
|
6302
7319
|
"""To modify role information"""
|
|
6303
7320
|
updateRole(id: String!, patch: RolePatch!): Role!
|
|
6304
7321
|
|
|
@@ -6325,6 +7342,18 @@ type Mutation {
|
|
|
6325
7342
|
"""
|
|
6326
7343
|
updateStateRegisterByName(name: String!, state: Object!): StateRegister!
|
|
6327
7344
|
|
|
7345
|
+
"""To modify Supervisor information"""
|
|
7346
|
+
updateSupervisor(id: String!, patch: SupervisorPatch!): Supervisor!
|
|
7347
|
+
|
|
7348
|
+
"""To modify Task information"""
|
|
7349
|
+
updateTask(id: String!, patch: TaskPatch!): Task!
|
|
7350
|
+
|
|
7351
|
+
"""To update Task Checklist information"""
|
|
7352
|
+
updateTaskChecklist(taskChecklist: UpdateTaskChecklistSubmitType!): Boolean!
|
|
7353
|
+
|
|
7354
|
+
"""To modify TaskResource information"""
|
|
7355
|
+
updateTaskResource(id: String!, patch: TaskResourcePatch!): TaskResource!
|
|
7356
|
+
|
|
6328
7357
|
"""To modify Terminology information"""
|
|
6329
7358
|
updateTerminology(id: String!, patch: TerminologyPatch!): Terminology!
|
|
6330
7359
|
|
|
@@ -6358,6 +7387,18 @@ type Mutation {
|
|
|
6358
7387
|
"""The username or email of the user whose roles to update."""
|
|
6359
7388
|
username: String!
|
|
6360
7389
|
): User!
|
|
7390
|
+
|
|
7391
|
+
"""프로젝트 공정표 업로드"""
|
|
7392
|
+
uploadProjectScheduleTable(param: UploadProjectScheduleTable!): Boolean!
|
|
7393
|
+
}
|
|
7394
|
+
|
|
7395
|
+
input NewActionPlan {
|
|
7396
|
+
active: Boolean
|
|
7397
|
+
description: String
|
|
7398
|
+
name: String!
|
|
7399
|
+
params: String
|
|
7400
|
+
state: ActionPlanStatus
|
|
7401
|
+
thumbnail: Upload
|
|
6361
7402
|
}
|
|
6362
7403
|
|
|
6363
7404
|
input NewActivity {
|
|
@@ -6552,6 +7593,20 @@ input NewBoardTemplate {
|
|
|
6552
7593
|
visibility: String!
|
|
6553
7594
|
}
|
|
6554
7595
|
|
|
7596
|
+
input NewBuildingInspection {
|
|
7597
|
+
buildingLevelId: String
|
|
7598
|
+
cellX: Float
|
|
7599
|
+
cellY: Float
|
|
7600
|
+
checklist: ChecklistInputType!
|
|
7601
|
+
checklistItem: [ChecklistItemInputType!]!
|
|
7602
|
+
managerId: String
|
|
7603
|
+
}
|
|
7604
|
+
|
|
7605
|
+
input NewChecklistItemComment {
|
|
7606
|
+
checklistItemId: String
|
|
7607
|
+
comment: String
|
|
7608
|
+
}
|
|
7609
|
+
|
|
6555
7610
|
input NewCommonCode {
|
|
6556
7611
|
description: String
|
|
6557
7612
|
details: [String!]
|
|
@@ -6908,6 +7963,15 @@ input NewGroup {
|
|
|
6908
7963
|
name: String!
|
|
6909
7964
|
}
|
|
6910
7965
|
|
|
7966
|
+
input NewIssue {
|
|
7967
|
+
active: Boolean
|
|
7968
|
+
description: String
|
|
7969
|
+
name: String!
|
|
7970
|
+
params: String
|
|
7971
|
+
state: IssueStatus
|
|
7972
|
+
thumbnail: Upload
|
|
7973
|
+
}
|
|
7974
|
+
|
|
6911
7975
|
"""
|
|
6912
7976
|
Input type for creating a new KPI. Used in mutations to provide KPI details.
|
|
6913
7977
|
"""
|
|
@@ -7339,6 +8403,11 @@ input NewMenuDetailColumn {
|
|
|
7339
8403
|
virtualField: Boolean
|
|
7340
8404
|
}
|
|
7341
8405
|
|
|
8406
|
+
input NewNoticeComment {
|
|
8407
|
+
buildingLevelId: String
|
|
8408
|
+
comment: String
|
|
8409
|
+
}
|
|
8410
|
+
|
|
7342
8411
|
input NewNotification {
|
|
7343
8412
|
body: String
|
|
7344
8413
|
image: String
|
|
@@ -7433,6 +8502,29 @@ input NewPrivilege {
|
|
|
7433
8502
|
roles: [ObjectRef!]
|
|
7434
8503
|
}
|
|
7435
8504
|
|
|
8505
|
+
input NewProject {
|
|
8506
|
+
"""연관된 건물 복합체 정보 (선택 사항)"""
|
|
8507
|
+
buildingComplex: ObjectRef
|
|
8508
|
+
|
|
8509
|
+
"""프로젝트 이름"""
|
|
8510
|
+
name: String!
|
|
8511
|
+
}
|
|
8512
|
+
|
|
8513
|
+
input NewProjectReport {
|
|
8514
|
+
active: Boolean
|
|
8515
|
+
description: String
|
|
8516
|
+
name: String!
|
|
8517
|
+
params: String
|
|
8518
|
+
state: ProjectReportStatus
|
|
8519
|
+
thumbnail: Upload
|
|
8520
|
+
}
|
|
8521
|
+
|
|
8522
|
+
input NewResource {
|
|
8523
|
+
name: String!
|
|
8524
|
+
type: ResourceType!
|
|
8525
|
+
unit: String!
|
|
8526
|
+
}
|
|
8527
|
+
|
|
7436
8528
|
"""Input for creating a new role."""
|
|
7437
8529
|
input NewRole {
|
|
7438
8530
|
"""A description for the new role."""
|
|
@@ -7524,8 +8616,52 @@ input NewStateRegister {
|
|
|
7524
8616
|
unit: String
|
|
7525
8617
|
}
|
|
7526
8618
|
|
|
7527
|
-
input
|
|
7528
|
-
|
|
8619
|
+
input NewSupervisor {
|
|
8620
|
+
active: Boolean
|
|
8621
|
+
description: String
|
|
8622
|
+
name: String!
|
|
8623
|
+
params: String
|
|
8624
|
+
state: SupervisorStatus
|
|
8625
|
+
thumbnail: Upload
|
|
8626
|
+
}
|
|
8627
|
+
|
|
8628
|
+
input NewTask {
|
|
8629
|
+
"""작업이 활성 상태인지 여부 (선택 사항)"""
|
|
8630
|
+
active: Boolean
|
|
8631
|
+
|
|
8632
|
+
"""프로젝트 내에서 유니크한 작업 코드"""
|
|
8633
|
+
code: String!
|
|
8634
|
+
|
|
8635
|
+
"""작업에 대한 설명 (선택 사항)"""
|
|
8636
|
+
description: String
|
|
8637
|
+
|
|
8638
|
+
"""작업의 이름"""
|
|
8639
|
+
name: String!
|
|
8640
|
+
|
|
8641
|
+
"""작업에 대한 추가 파라미터, JSON 형식으로 저장 (선택 사항)"""
|
|
8642
|
+
params: String
|
|
8643
|
+
|
|
8644
|
+
"""부모 작업, 해당 작업이 하위 작업인 경우 (선택 사항)"""
|
|
8645
|
+
parent: ObjectRefForTask
|
|
8646
|
+
|
|
8647
|
+
"""작업이 속한 프로젝트 (선택 사항)"""
|
|
8648
|
+
project: ObjectRefForProject
|
|
8649
|
+
}
|
|
8650
|
+
|
|
8651
|
+
input NewTaskChecklist {
|
|
8652
|
+
checklist: TaskChecklistInputType!
|
|
8653
|
+
checklistItem: [ChecklistItemInputType!]!
|
|
8654
|
+
managerId: String
|
|
8655
|
+
}
|
|
8656
|
+
|
|
8657
|
+
input NewTaskResource {
|
|
8658
|
+
quantity: Float!
|
|
8659
|
+
resourceId: ID!
|
|
8660
|
+
taskId: ID!
|
|
8661
|
+
}
|
|
8662
|
+
|
|
8663
|
+
input NewTerminology {
|
|
8664
|
+
category: String!
|
|
7529
8665
|
description: String
|
|
7530
8666
|
display: String!
|
|
7531
8667
|
locale: String!
|
|
@@ -7605,6 +8741,22 @@ input NewUserPreference {
|
|
|
7605
8741
|
user: ObjectRef!
|
|
7606
8742
|
}
|
|
7607
8743
|
|
|
8744
|
+
"""Entity for NoticeComment"""
|
|
8745
|
+
type NoticeComment {
|
|
8746
|
+
buildingLevel: BuildingLevel
|
|
8747
|
+
comment: String
|
|
8748
|
+
createdAt: DateTimeISO
|
|
8749
|
+
creator: User
|
|
8750
|
+
deletedAt: DateTimeISO
|
|
8751
|
+
id: ID!
|
|
8752
|
+
}
|
|
8753
|
+
|
|
8754
|
+
input NoticeCommentPatch {
|
|
8755
|
+
buildingLevelId: String
|
|
8756
|
+
comment: String
|
|
8757
|
+
id: ID
|
|
8758
|
+
}
|
|
8759
|
+
|
|
7608
8760
|
"""Entity for Notification"""
|
|
7609
8761
|
type Notification {
|
|
7610
8762
|
body: String
|
|
@@ -7826,6 +8978,31 @@ input ObjectRefForEmployee {
|
|
|
7826
8978
|
type: EmployeeType
|
|
7827
8979
|
}
|
|
7828
8980
|
|
|
8981
|
+
input ObjectRefForProject {
|
|
8982
|
+
"""A description of the referenced object."""
|
|
8983
|
+
description: String
|
|
8984
|
+
|
|
8985
|
+
"""The unique identifier of the referenced object."""
|
|
8986
|
+
id: ID!
|
|
8987
|
+
|
|
8988
|
+
"""프로젝트 이름 (선택 사항)"""
|
|
8989
|
+
name: String
|
|
8990
|
+
}
|
|
8991
|
+
|
|
8992
|
+
input ObjectRefForTask {
|
|
8993
|
+
"""작업 코드 (선택 사항)"""
|
|
8994
|
+
code: String
|
|
8995
|
+
|
|
8996
|
+
"""A description of the referenced object."""
|
|
8997
|
+
description: String
|
|
8998
|
+
|
|
8999
|
+
"""The unique identifier of the referenced object."""
|
|
9000
|
+
id: ID!
|
|
9001
|
+
|
|
9002
|
+
"""The name of the referenced object."""
|
|
9003
|
+
name: String
|
|
9004
|
+
}
|
|
9005
|
+
|
|
7829
9006
|
input ObjectRefForUser {
|
|
7830
9007
|
"""A description of the referenced object."""
|
|
7831
9008
|
description: String
|
|
@@ -7861,6 +9038,36 @@ enum OrgMemberTargetType {
|
|
|
7861
9038
|
Role
|
|
7862
9039
|
}
|
|
7863
9040
|
|
|
9041
|
+
type PDFDrawing {
|
|
9042
|
+
drawingURL: String
|
|
9043
|
+
dwgId: String
|
|
9044
|
+
id: String
|
|
9045
|
+
links: [PDFDrawingLink!]
|
|
9046
|
+
title: String
|
|
9047
|
+
}
|
|
9048
|
+
|
|
9049
|
+
type PDFDrawingLink {
|
|
9050
|
+
box: String
|
|
9051
|
+
data: PDFDrawingLinkData
|
|
9052
|
+
dwgId: String
|
|
9053
|
+
id: String
|
|
9054
|
+
story: String
|
|
9055
|
+
symbol: String
|
|
9056
|
+
type: String
|
|
9057
|
+
}
|
|
9058
|
+
|
|
9059
|
+
type PDFDrawingLinkData {
|
|
9060
|
+
box: String
|
|
9061
|
+
code: String
|
|
9062
|
+
dwgId: String
|
|
9063
|
+
finDetItems: [RoomFinishDetail!]
|
|
9064
|
+
id: String
|
|
9065
|
+
rmname: String
|
|
9066
|
+
sn: String
|
|
9067
|
+
symbol: String
|
|
9068
|
+
type: String
|
|
9069
|
+
}
|
|
9070
|
+
|
|
7864
9071
|
"""Entity for PagePreference"""
|
|
7865
9072
|
type PagePreference {
|
|
7866
9073
|
createdAt: DateTimeISO
|
|
@@ -8246,6 +9453,140 @@ input ProfileInput {
|
|
|
8246
9453
|
zoom: Float
|
|
8247
9454
|
}
|
|
8248
9455
|
|
|
9456
|
+
"""프로젝트"""
|
|
9457
|
+
type Project {
|
|
9458
|
+
buildingComplex: BuildingComplex
|
|
9459
|
+
createdAt: DateTimeISO
|
|
9460
|
+
creator: User
|
|
9461
|
+
deletedAt: DateTimeISO
|
|
9462
|
+
documentNaming: String
|
|
9463
|
+
domain: Domain
|
|
9464
|
+
endDate: String
|
|
9465
|
+
geoGroup: String
|
|
9466
|
+
id: ID!
|
|
9467
|
+
inputType: String
|
|
9468
|
+
inspPassRate: Float
|
|
9469
|
+
kpi: Float
|
|
9470
|
+
mainPhoto: Attachment
|
|
9471
|
+
name: String!
|
|
9472
|
+
postalCode: String
|
|
9473
|
+
projectType: String
|
|
9474
|
+
robotCount: Float
|
|
9475
|
+
robotProgressRate: Float
|
|
9476
|
+
rootTasks: [Task!]
|
|
9477
|
+
scheduleTable: Attachment
|
|
9478
|
+
startDate: String
|
|
9479
|
+
state: String!
|
|
9480
|
+
structuralSafetyRate: Float
|
|
9481
|
+
tasks: [Task!]
|
|
9482
|
+
totalProgress: Float
|
|
9483
|
+
updatedAt: DateTimeISO
|
|
9484
|
+
updater: User
|
|
9485
|
+
weeklyProgress: Float
|
|
9486
|
+
}
|
|
9487
|
+
|
|
9488
|
+
type ProjectList {
|
|
9489
|
+
"""프로젝트 리스트 항목들"""
|
|
9490
|
+
items: [Project!]!
|
|
9491
|
+
|
|
9492
|
+
"""전체 프로젝트 수"""
|
|
9493
|
+
total: Int!
|
|
9494
|
+
}
|
|
9495
|
+
|
|
9496
|
+
type ProjectManagerOutput {
|
|
9497
|
+
id: ID
|
|
9498
|
+
name: String
|
|
9499
|
+
phone: String
|
|
9500
|
+
position: String
|
|
9501
|
+
updatedAt: String
|
|
9502
|
+
userId: ID!
|
|
9503
|
+
}
|
|
9504
|
+
|
|
9505
|
+
input ProjectPatch {
|
|
9506
|
+
"""연관된 건물 복합체 정보 (선택 사항)"""
|
|
9507
|
+
buildingComplex: BuildingComplexPatch
|
|
9508
|
+
|
|
9509
|
+
"""프로젝트 문서 네이밍"""
|
|
9510
|
+
documentNaming: String
|
|
9511
|
+
|
|
9512
|
+
"""프로젝트 준공일정"""
|
|
9513
|
+
endDate: String
|
|
9514
|
+
|
|
9515
|
+
"""수정할 프로젝트의 ID"""
|
|
9516
|
+
id: String!
|
|
9517
|
+
|
|
9518
|
+
"""검측/통과 비율 (%)"""
|
|
9519
|
+
inspPassRate: Float
|
|
9520
|
+
|
|
9521
|
+
"""프로젝트 KPI"""
|
|
9522
|
+
kpi: Float
|
|
9523
|
+
|
|
9524
|
+
"""프로젝트 대표 사진 업로드"""
|
|
9525
|
+
mainPhotoUpload: Upload
|
|
9526
|
+
|
|
9527
|
+
"""프로젝트 이름"""
|
|
9528
|
+
name: String!
|
|
9529
|
+
|
|
9530
|
+
"""로봇 작업 대수"""
|
|
9531
|
+
robotCount: Int
|
|
9532
|
+
|
|
9533
|
+
"""로봇 작업 진행율 (%)"""
|
|
9534
|
+
robotProgressRate: Float
|
|
9535
|
+
|
|
9536
|
+
"""프로젝트 착공일정"""
|
|
9537
|
+
startDate: String
|
|
9538
|
+
|
|
9539
|
+
"""구조 안전도 (%)"""
|
|
9540
|
+
structuralSafetyRate: Float
|
|
9541
|
+
|
|
9542
|
+
"""프로젝트 전체 진행현황 (%)"""
|
|
9543
|
+
totalProgress: Float
|
|
9544
|
+
|
|
9545
|
+
"""프로젝트 주간 진행현황 (%)"""
|
|
9546
|
+
weeklyProgress: Float
|
|
9547
|
+
}
|
|
9548
|
+
|
|
9549
|
+
"""Entity for ProjectReport"""
|
|
9550
|
+
type ProjectReport {
|
|
9551
|
+
active: Boolean
|
|
9552
|
+
content: String
|
|
9553
|
+
createdAt: DateTimeISO
|
|
9554
|
+
creator: User
|
|
9555
|
+
date: DateTimeISO
|
|
9556
|
+
deletedAt: DateTimeISO
|
|
9557
|
+
description: String
|
|
9558
|
+
domain: Domain
|
|
9559
|
+
id: ID!
|
|
9560
|
+
name: String
|
|
9561
|
+
params: String
|
|
9562
|
+
state: String
|
|
9563
|
+
supervisor: Supervisor!
|
|
9564
|
+
thumbnail: String
|
|
9565
|
+
updatedAt: DateTimeISO
|
|
9566
|
+
updater: User
|
|
9567
|
+
}
|
|
9568
|
+
|
|
9569
|
+
type ProjectReportList {
|
|
9570
|
+
items: [ProjectReport!]!
|
|
9571
|
+
total: Int!
|
|
9572
|
+
}
|
|
9573
|
+
|
|
9574
|
+
input ProjectReportPatch {
|
|
9575
|
+
active: Boolean
|
|
9576
|
+
cuFlag: String
|
|
9577
|
+
description: String
|
|
9578
|
+
id: ID
|
|
9579
|
+
name: String
|
|
9580
|
+
state: ProjectReportStatus
|
|
9581
|
+
thumbnail: Upload
|
|
9582
|
+
}
|
|
9583
|
+
|
|
9584
|
+
"""state enumeration of a projectReport"""
|
|
9585
|
+
enum ProjectReportStatus {
|
|
9586
|
+
STATUS_A
|
|
9587
|
+
STATUS_B
|
|
9588
|
+
}
|
|
9589
|
+
|
|
8249
9590
|
"""
|
|
8250
9591
|
Describes a single property for a component or a step, used for UI rendering and configuration.
|
|
8251
9592
|
"""
|
|
@@ -8281,6 +9622,24 @@ type PropertySpec {
|
|
|
8281
9622
|
type Query {
|
|
8282
9623
|
APIDocCompletion(input: APIDocCompletionInput!): APIDocCompletionOutput!
|
|
8283
9624
|
|
|
9625
|
+
"""To fetch a ActionPlan"""
|
|
9626
|
+
actionPlan(id: String!): ActionPlan
|
|
9627
|
+
|
|
9628
|
+
"""To fetch multiple ActionPlans"""
|
|
9629
|
+
actionPlans(
|
|
9630
|
+
"""An array of filter conditions to apply to the list query."""
|
|
9631
|
+
filters: [Filter!]
|
|
9632
|
+
|
|
9633
|
+
"""Inherited value type for the list query."""
|
|
9634
|
+
inherited: InheritedValueType
|
|
9635
|
+
|
|
9636
|
+
"""Pagination options for the list query."""
|
|
9637
|
+
pagination: Pagination
|
|
9638
|
+
|
|
9639
|
+
"""Sorting options for the list query."""
|
|
9640
|
+
sortings: [Sorting!]
|
|
9641
|
+
): ActionPlanList!
|
|
9642
|
+
|
|
8284
9643
|
"""To fetch multiple Activities"""
|
|
8285
9644
|
activities(
|
|
8286
9645
|
"""An array of filter conditions to apply to the list query."""
|
|
@@ -8688,6 +10047,67 @@ type Query {
|
|
|
8688
10047
|
"""Sorting options for the list query."""
|
|
8689
10048
|
sortings: [Sorting!]
|
|
8690
10049
|
): BoardList!
|
|
10050
|
+
|
|
10051
|
+
"""To fetch a building"""
|
|
10052
|
+
building(id: String!): Building
|
|
10053
|
+
|
|
10054
|
+
"""To fetch a BuildingComplex"""
|
|
10055
|
+
buildingBuildingComplex(id: String!): BuildingComplex
|
|
10056
|
+
|
|
10057
|
+
"""To fetch a BuildingInspection"""
|
|
10058
|
+
buildingInspection(id: String!): BuildingInspection
|
|
10059
|
+
buildingInspectionDailyWorklogByProjectIdAndDate(date: String!, projectId: String!): BuildingInspectionDailyWorklog
|
|
10060
|
+
|
|
10061
|
+
"""To fetch a BuildingInspection Summary"""
|
|
10062
|
+
buildingInspectionDateSummaryOfLevelAndPeriod(buildingLevelId: String!, endDate: String!, startDate: String!): [BuildingInspectionSummary!]
|
|
10063
|
+
|
|
10064
|
+
"""To fetch multiple BuildingInspections"""
|
|
10065
|
+
buildingInspectionHistories(
|
|
10066
|
+
"""An array of filter conditions to apply to the list query."""
|
|
10067
|
+
filters: [Filter!]
|
|
10068
|
+
|
|
10069
|
+
"""Inherited value type for the list query."""
|
|
10070
|
+
inherited: InheritedValueType
|
|
10071
|
+
|
|
10072
|
+
"""Pagination options for the list query."""
|
|
10073
|
+
pagination: Pagination
|
|
10074
|
+
|
|
10075
|
+
"""Sorting options for the list query."""
|
|
10076
|
+
sortings: [Sorting!]
|
|
10077
|
+
): BuildingInspectionHistoryList!
|
|
10078
|
+
|
|
10079
|
+
"""To fetch a BuildingInspectionHistory"""
|
|
10080
|
+
buildingInspectionHistory(id: String!): BuildingInspectionHistory
|
|
10081
|
+
|
|
10082
|
+
"""To fetch a BuildingInspection Summary"""
|
|
10083
|
+
buildingInspectionSummaryOfBuildingLevel(buildingLevelId: String!): BuildingInspectionSummary
|
|
10084
|
+
|
|
10085
|
+
"""프로젝트의 검측상태 별 카운트"""
|
|
10086
|
+
buildingInspectionSummaryOfProject(projectId: String!): BuildingInspectionSummary!
|
|
10087
|
+
|
|
10088
|
+
"""To fetch multiple BuildingInspections"""
|
|
10089
|
+
buildingInspections(
|
|
10090
|
+
"""An array of filter conditions to apply to the list query."""
|
|
10091
|
+
filters: [Filter!]
|
|
10092
|
+
|
|
10093
|
+
"""Inherited value type for the list query."""
|
|
10094
|
+
inherited: InheritedValueType
|
|
10095
|
+
|
|
10096
|
+
"""Pagination options for the list query."""
|
|
10097
|
+
pagination: Pagination
|
|
10098
|
+
|
|
10099
|
+
"""Sorting options for the list query."""
|
|
10100
|
+
sortings: [Sorting!]
|
|
10101
|
+
): BuildingInspectionList!
|
|
10102
|
+
|
|
10103
|
+
"""To fetch multiple BuildingInspections"""
|
|
10104
|
+
buildingInspectionsOfBuildingLevel(params: BuildingInspectionsOfBuildingLevel!): BuildingInspectionList!
|
|
10105
|
+
|
|
10106
|
+
"""To fetch multiple BuildingInspections"""
|
|
10107
|
+
buildingInspectionsOfProject(params: BuildingInspectionsOfProject!): BuildingInspectionList!
|
|
10108
|
+
|
|
10109
|
+
"""To fetch a building level"""
|
|
10110
|
+
buildingLevel(id: String!): BuildingLevel
|
|
8691
10111
|
chatCompletion(input: ChatCompletionInput!): ChatCompletionOutput!
|
|
8692
10112
|
|
|
8693
10113
|
"""
|
|
@@ -8714,6 +10134,129 @@ type Query {
|
|
|
8714
10134
|
email: EmailAddress!
|
|
8715
10135
|
): Boolean!
|
|
8716
10136
|
|
|
10137
|
+
"""To fetch a Checklist"""
|
|
10138
|
+
checklist(id: String!): Checklist
|
|
10139
|
+
|
|
10140
|
+
"""To fetch multiple ChecklistHistories"""
|
|
10141
|
+
checklistHistories(
|
|
10142
|
+
"""An array of filter conditions to apply to the list query."""
|
|
10143
|
+
filters: [Filter!]
|
|
10144
|
+
|
|
10145
|
+
"""Inherited value type for the list query."""
|
|
10146
|
+
inherited: InheritedValueType
|
|
10147
|
+
|
|
10148
|
+
"""Pagination options for the list query."""
|
|
10149
|
+
pagination: Pagination
|
|
10150
|
+
|
|
10151
|
+
"""Sorting options for the list query."""
|
|
10152
|
+
sortings: [Sorting!]
|
|
10153
|
+
): ChecklistHistoryList!
|
|
10154
|
+
|
|
10155
|
+
"""To fetch a ChecklistHistory"""
|
|
10156
|
+
checklistHistory(id: String!): ChecklistHistory!
|
|
10157
|
+
|
|
10158
|
+
"""To fetch a ChecklistItem"""
|
|
10159
|
+
checklistItem(id: String!): ChecklistItem
|
|
10160
|
+
|
|
10161
|
+
"""To fetch multiple ChecklistItemComments"""
|
|
10162
|
+
checklistItemComments(checklistItemId: String!, pagination: Pagination!): [ChecklistItemComment!]!
|
|
10163
|
+
|
|
10164
|
+
"""To fetch multiple ChecklistItems"""
|
|
10165
|
+
checklistItemHistories(
|
|
10166
|
+
"""An array of filter conditions to apply to the list query."""
|
|
10167
|
+
filters: [Filter!]
|
|
10168
|
+
|
|
10169
|
+
"""Inherited value type for the list query."""
|
|
10170
|
+
inherited: InheritedValueType
|
|
10171
|
+
|
|
10172
|
+
"""Pagination options for the list query."""
|
|
10173
|
+
pagination: Pagination
|
|
10174
|
+
|
|
10175
|
+
"""Sorting options for the list query."""
|
|
10176
|
+
sortings: [Sorting!]
|
|
10177
|
+
): ChecklistItemHistoryList!
|
|
10178
|
+
|
|
10179
|
+
"""To fetch a ChecklistItemHistory"""
|
|
10180
|
+
checklistItemHistory(id: String!): ChecklistItemHistory
|
|
10181
|
+
|
|
10182
|
+
"""To fetch multiple ChecklistItems"""
|
|
10183
|
+
checklistItems(
|
|
10184
|
+
"""An array of filter conditions to apply to the list query."""
|
|
10185
|
+
filters: [Filter!]
|
|
10186
|
+
|
|
10187
|
+
"""Inherited value type for the list query."""
|
|
10188
|
+
inherited: InheritedValueType
|
|
10189
|
+
|
|
10190
|
+
"""Pagination options for the list query."""
|
|
10191
|
+
pagination: Pagination
|
|
10192
|
+
|
|
10193
|
+
"""Sorting options for the list query."""
|
|
10194
|
+
sortings: [Sorting!]
|
|
10195
|
+
): ChecklistItemList!
|
|
10196
|
+
|
|
10197
|
+
"""To fetch a ChecklistTemplateItem"""
|
|
10198
|
+
checklistTemplateItem(id: String!): ChecklistTemplateItem
|
|
10199
|
+
|
|
10200
|
+
"""To fetch multiple ChecklistTemplateItems"""
|
|
10201
|
+
checklistTemplateItems(
|
|
10202
|
+
"""An array of filter conditions to apply to the list query."""
|
|
10203
|
+
filters: [Filter!]
|
|
10204
|
+
|
|
10205
|
+
"""Inherited value type for the list query."""
|
|
10206
|
+
inherited: InheritedValueType
|
|
10207
|
+
|
|
10208
|
+
"""Pagination options for the list query."""
|
|
10209
|
+
pagination: Pagination
|
|
10210
|
+
|
|
10211
|
+
"""Sorting options for the list query."""
|
|
10212
|
+
sortings: [Sorting!]
|
|
10213
|
+
): ChecklistTemplateItemList!
|
|
10214
|
+
|
|
10215
|
+
"""To fetch multiple ChecklistTemplates"""
|
|
10216
|
+
checklistTemplates(
|
|
10217
|
+
"""An array of filter conditions to apply to the list query."""
|
|
10218
|
+
filters: [Filter!]
|
|
10219
|
+
|
|
10220
|
+
"""Inherited value type for the list query."""
|
|
10221
|
+
inherited: InheritedValueType
|
|
10222
|
+
|
|
10223
|
+
"""Pagination options for the list query."""
|
|
10224
|
+
pagination: Pagination
|
|
10225
|
+
|
|
10226
|
+
"""Sorting options for the list query."""
|
|
10227
|
+
sortings: [Sorting!]
|
|
10228
|
+
): ChecklistTemplateList!
|
|
10229
|
+
|
|
10230
|
+
"""To fetch multiple ChecklistTypes"""
|
|
10231
|
+
checklistTypes(
|
|
10232
|
+
"""An array of filter conditions to apply to the list query."""
|
|
10233
|
+
filters: [Filter!]
|
|
10234
|
+
|
|
10235
|
+
"""Inherited value type for the list query."""
|
|
10236
|
+
inherited: InheritedValueType
|
|
10237
|
+
|
|
10238
|
+
"""Pagination options for the list query."""
|
|
10239
|
+
pagination: Pagination
|
|
10240
|
+
|
|
10241
|
+
"""Sorting options for the list query."""
|
|
10242
|
+
sortings: [Sorting!]
|
|
10243
|
+
): ChecklistTypeList!
|
|
10244
|
+
|
|
10245
|
+
"""To fetch multiple Checklists"""
|
|
10246
|
+
checklists(
|
|
10247
|
+
"""An array of filter conditions to apply to the list query."""
|
|
10248
|
+
filters: [Filter!]
|
|
10249
|
+
|
|
10250
|
+
"""Inherited value type for the list query."""
|
|
10251
|
+
inherited: InheritedValueType
|
|
10252
|
+
|
|
10253
|
+
"""Pagination options for the list query."""
|
|
10254
|
+
pagination: Pagination
|
|
10255
|
+
|
|
10256
|
+
"""Sorting options for the list query."""
|
|
10257
|
+
sortings: [Sorting!]
|
|
10258
|
+
): ChecklistList!
|
|
10259
|
+
|
|
8717
10260
|
"""To fetch common approval lines"""
|
|
8718
10261
|
commonApprovalLines(
|
|
8719
10262
|
"""An array of filter conditions to apply to the list query."""
|
|
@@ -8794,6 +10337,39 @@ type Query {
|
|
|
8794
10337
|
"""Fetches a list of all available connector types."""
|
|
8795
10338
|
connectors: ConnectorList!
|
|
8796
10339
|
|
|
10340
|
+
"""To fetch multiple ConstructionDetailTypes"""
|
|
10341
|
+
constructionDetailTypes(
|
|
10342
|
+
"""An array of filter conditions to apply to the list query."""
|
|
10343
|
+
filters: [Filter!]
|
|
10344
|
+
|
|
10345
|
+
"""Inherited value type for the list query."""
|
|
10346
|
+
inherited: InheritedValueType
|
|
10347
|
+
|
|
10348
|
+
"""Pagination options for the list query."""
|
|
10349
|
+
pagination: Pagination
|
|
10350
|
+
|
|
10351
|
+
"""Sorting options for the list query."""
|
|
10352
|
+
sortings: [Sorting!]
|
|
10353
|
+
): ConstructionDetailTypeList!
|
|
10354
|
+
|
|
10355
|
+
"""To fetch a ConstructionType"""
|
|
10356
|
+
constructionType(id: String!): ConstructionType
|
|
10357
|
+
|
|
10358
|
+
"""To fetch multiple ConstructionTypes"""
|
|
10359
|
+
constructionTypes(
|
|
10360
|
+
"""An array of filter conditions to apply to the list query."""
|
|
10361
|
+
filters: [Filter!]
|
|
10362
|
+
|
|
10363
|
+
"""Inherited value type for the list query."""
|
|
10364
|
+
inherited: InheritedValueType
|
|
10365
|
+
|
|
10366
|
+
"""Pagination options for the list query."""
|
|
10367
|
+
pagination: Pagination
|
|
10368
|
+
|
|
10369
|
+
"""Sorting options for the list query."""
|
|
10370
|
+
sortings: [Sorting!]
|
|
10371
|
+
): ConstructionTypeList!
|
|
10372
|
+
|
|
8797
10373
|
"""To fetch a Contact"""
|
|
8798
10374
|
contact(id: String!): Contact
|
|
8799
10375
|
|
|
@@ -8812,6 +10388,7 @@ type Query {
|
|
|
8812
10388
|
sortings: [Sorting!]
|
|
8813
10389
|
): ContactList!
|
|
8814
10390
|
customers: [Domain!]!
|
|
10391
|
+
dailyWorklogDatesOfProject(endDate: String!, projectId: String!, startDate: String!): [BuildingInspectionDailyWorklog!]!
|
|
8815
10392
|
|
|
8816
10393
|
"""Get aggregated statistics by scope02 (regional level) for dashboard"""
|
|
8817
10394
|
dashboardRegionalStatistics(periodType: KpiPeriodType! = MONTH, valueDate: String!): [KpiStatistic!]!
|
|
@@ -9454,6 +11031,45 @@ type Query {
|
|
|
9454
11031
|
i18nCompletion(input: i18nCompletionInput!): i18nCompletionOutput!
|
|
9455
11032
|
imageCompletion(input: ImageCompletionInput!): ImageCompletionOutput!
|
|
9456
11033
|
|
|
11034
|
+
"""BuildingInspection By ChecklistItemId"""
|
|
11035
|
+
inspectionByChecklistItemId: BuildingInspection!
|
|
11036
|
+
|
|
11037
|
+
"""To fetch a InspectionDrawingType"""
|
|
11038
|
+
inspectionDrawingType(id: String!): InspectionDrawingType
|
|
11039
|
+
|
|
11040
|
+
"""To fetch multiple InspectionDrawingTypes"""
|
|
11041
|
+
inspectionDrawingTypes(
|
|
11042
|
+
"""An array of filter conditions to apply to the list query."""
|
|
11043
|
+
filters: [Filter!]
|
|
11044
|
+
|
|
11045
|
+
"""Inherited value type for the list query."""
|
|
11046
|
+
inherited: InheritedValueType
|
|
11047
|
+
|
|
11048
|
+
"""Pagination options for the list query."""
|
|
11049
|
+
pagination: Pagination
|
|
11050
|
+
|
|
11051
|
+
"""Sorting options for the list query."""
|
|
11052
|
+
sortings: [Sorting!]
|
|
11053
|
+
): InspectionDrawingTypeList!
|
|
11054
|
+
|
|
11055
|
+
"""To fetch a InspectionPart"""
|
|
11056
|
+
inspectionPart(id: String!): InspectionPart
|
|
11057
|
+
|
|
11058
|
+
"""To fetch multiple InspectionParts"""
|
|
11059
|
+
inspectionParts(
|
|
11060
|
+
"""An array of filter conditions to apply to the list query."""
|
|
11061
|
+
filters: [Filter!]
|
|
11062
|
+
|
|
11063
|
+
"""Inherited value type for the list query."""
|
|
11064
|
+
inherited: InheritedValueType
|
|
11065
|
+
|
|
11066
|
+
"""Pagination options for the list query."""
|
|
11067
|
+
pagination: Pagination
|
|
11068
|
+
|
|
11069
|
+
"""Sorting options for the list query."""
|
|
11070
|
+
sortings: [Sorting!]
|
|
11071
|
+
): InspectionPartList!
|
|
11072
|
+
|
|
9457
11073
|
"""To fetch multiple InstallableActivitys"""
|
|
9458
11074
|
installableActivities(
|
|
9459
11075
|
"""An array of filter conditions to apply to the list query."""
|
|
@@ -9472,10 +11088,28 @@ type Query {
|
|
|
9472
11088
|
"""To fetch a InstallableActivity"""
|
|
9473
11089
|
installableActivity(name: String!): InstallableActivity
|
|
9474
11090
|
|
|
9475
|
-
"""To fetch integration Analyses"""
|
|
9476
|
-
integrationAnalysis: Object!
|
|
9477
|
-
invitation(email: EmailAddress!, reference: String!, type: String!): Invitation!
|
|
9478
|
-
invitations(reference: String!, type: String!): InvitationList!
|
|
11091
|
+
"""To fetch integration Analyses"""
|
|
11092
|
+
integrationAnalysis: Object!
|
|
11093
|
+
invitation(email: EmailAddress!, reference: String!, type: String!): Invitation!
|
|
11094
|
+
invitations(reference: String!, type: String!): InvitationList!
|
|
11095
|
+
|
|
11096
|
+
"""To fetch a Issue"""
|
|
11097
|
+
issue(id: String!): Issue
|
|
11098
|
+
|
|
11099
|
+
"""To fetch multiple Issues"""
|
|
11100
|
+
issues(
|
|
11101
|
+
"""An array of filter conditions to apply to the list query."""
|
|
11102
|
+
filters: [Filter!]
|
|
11103
|
+
|
|
11104
|
+
"""Inherited value type for the list query."""
|
|
11105
|
+
inherited: InheritedValueType
|
|
11106
|
+
|
|
11107
|
+
"""Pagination options for the list query."""
|
|
11108
|
+
pagination: Pagination
|
|
11109
|
+
|
|
11110
|
+
"""Sorting options for the list query."""
|
|
11111
|
+
sortings: [Sorting!]
|
|
11112
|
+
): IssueList!
|
|
9479
11113
|
|
|
9480
11114
|
"""Fetch a single KPI by its unique identifier."""
|
|
9481
11115
|
kpi(
|
|
@@ -9697,6 +11331,9 @@ type Query {
|
|
|
9697
11331
|
sortings: [Sorting!]
|
|
9698
11332
|
): LoginHistoryList!
|
|
9699
11333
|
|
|
11334
|
+
"""담당자 리스트"""
|
|
11335
|
+
managers: [ManagerOutput!]!
|
|
11336
|
+
|
|
9700
11337
|
"""To fetch a Menu"""
|
|
9701
11338
|
menu(id: String!): Menu!
|
|
9702
11339
|
|
|
@@ -9914,6 +11551,9 @@ type Query {
|
|
|
9914
11551
|
sortings: [Sorting!]
|
|
9915
11552
|
): UserPreferenceList!
|
|
9916
11553
|
|
|
11554
|
+
"""To fetch multiple NoticeComments"""
|
|
11555
|
+
noticeComments(buildingLevelId: String!): [NoticeComment!]!
|
|
11556
|
+
|
|
9917
11557
|
"""To fetch a Notification"""
|
|
9918
11558
|
notification(id: String!): Notification
|
|
9919
11559
|
|
|
@@ -10016,6 +11656,15 @@ type Query {
|
|
|
10016
11656
|
sortings: [Sorting!]
|
|
10017
11657
|
): PayloadLogList!
|
|
10018
11658
|
|
|
11659
|
+
"""To fetch a PDFDrawing by dwgId"""
|
|
11660
|
+
pdfDrawingByDwgId(dwgId: String!): PDFDrawing!
|
|
11661
|
+
|
|
11662
|
+
"""To fetch a PDFDrawing by title"""
|
|
11663
|
+
pdfDrawingByTitle(title: String!): PDFDrawing!
|
|
11664
|
+
|
|
11665
|
+
"""To fetch multiple PDFDrawings"""
|
|
11666
|
+
pdfDrawings: [PDFDrawing!]!
|
|
11667
|
+
|
|
10019
11668
|
"""To get list of activity instance that a user can pick"""
|
|
10020
11669
|
pickableActivityList(
|
|
10021
11670
|
"""An array of filter conditions to apply to the list query."""
|
|
@@ -10088,12 +11737,72 @@ type Query {
|
|
|
10088
11737
|
sortings: [Sorting!]
|
|
10089
11738
|
): PrivilegeList!
|
|
10090
11739
|
|
|
11740
|
+
"""To fetch a Project"""
|
|
11741
|
+
project(id: String!): Project
|
|
11742
|
+
|
|
11743
|
+
"""To fetch a Project"""
|
|
11744
|
+
projectByBuildingComplexId(buildingComplexId: String!): Project
|
|
11745
|
+
|
|
11746
|
+
"""To fetch Project"""
|
|
11747
|
+
projectByBuildingLevelId(buildingLevelId: String!): Project!
|
|
11748
|
+
|
|
11749
|
+
"""To fetch a ProjectReport"""
|
|
11750
|
+
projectReport(id: String!): ProjectReport
|
|
11751
|
+
|
|
11752
|
+
"""To fetch multiple ProjectReports"""
|
|
11753
|
+
projectReports(
|
|
11754
|
+
"""An array of filter conditions to apply to the list query."""
|
|
11755
|
+
filters: [Filter!]
|
|
11756
|
+
|
|
11757
|
+
"""Inherited value type for the list query."""
|
|
11758
|
+
inherited: InheritedValueType
|
|
11759
|
+
|
|
11760
|
+
"""Pagination options for the list query."""
|
|
11761
|
+
pagination: Pagination
|
|
11762
|
+
|
|
11763
|
+
"""Sorting options for the list query."""
|
|
11764
|
+
sortings: [Sorting!]
|
|
11765
|
+
): ProjectReportList!
|
|
11766
|
+
|
|
11767
|
+
"""프로젝트 리스트"""
|
|
11768
|
+
projects(
|
|
11769
|
+
"""An array of filter conditions to apply to the list query."""
|
|
11770
|
+
filters: [Filter!]
|
|
11771
|
+
|
|
11772
|
+
"""Inherited value type for the list query."""
|
|
11773
|
+
inherited: InheritedValueType
|
|
11774
|
+
|
|
11775
|
+
"""Pagination options for the list query."""
|
|
11776
|
+
pagination: Pagination
|
|
11777
|
+
|
|
11778
|
+
"""Sorting options for the list query."""
|
|
11779
|
+
sortings: [Sorting!]
|
|
11780
|
+
): ProjectList!
|
|
11781
|
+
|
|
10091
11782
|
"""To query data in S3 using Amazon Athena SDK"""
|
|
10092
11783
|
queryFromAthena(queryData: Object!): Any!
|
|
10093
11784
|
|
|
10094
11785
|
"""Get regional statistics for dashboard map visualization"""
|
|
10095
11786
|
regionalKpiStatistics(periodType: KpiPeriodType! = MONTH, regions: [String!], valueDate: String!): [KpiStatistic!]!
|
|
10096
11787
|
|
|
11788
|
+
"""To fetch a Resource"""
|
|
11789
|
+
resource(id: String!): Resource
|
|
11790
|
+
|
|
11791
|
+
"""To fetch multiple Resources"""
|
|
11792
|
+
resources(
|
|
11793
|
+
"""An array of filter conditions to apply to the list query."""
|
|
11794
|
+
filters: [Filter!]
|
|
11795
|
+
|
|
11796
|
+
"""Inherited value type for the list query."""
|
|
11797
|
+
inherited: InheritedValueType
|
|
11798
|
+
|
|
11799
|
+
"""Pagination options for the list query."""
|
|
11800
|
+
pagination: Pagination
|
|
11801
|
+
|
|
11802
|
+
"""Sorting options for the list query."""
|
|
11803
|
+
sortings: [Sorting!]
|
|
11804
|
+
): ResourceList!
|
|
11805
|
+
|
|
10097
11806
|
"""To fetch role"""
|
|
10098
11807
|
role(name: String!): Role!
|
|
10099
11808
|
|
|
@@ -10259,6 +11968,48 @@ type Query {
|
|
|
10259
11968
|
sortings: [Sorting!]
|
|
10260
11969
|
): ActivityList!
|
|
10261
11970
|
|
|
11971
|
+
"""To fetch a Supervisor"""
|
|
11972
|
+
supervisor(id: String!): Supervisor
|
|
11973
|
+
|
|
11974
|
+
"""To fetch multiple Supervisors"""
|
|
11975
|
+
supervisors(
|
|
11976
|
+
"""An array of filter conditions to apply to the list query."""
|
|
11977
|
+
filters: [Filter!]
|
|
11978
|
+
|
|
11979
|
+
"""Inherited value type for the list query."""
|
|
11980
|
+
inherited: InheritedValueType
|
|
11981
|
+
|
|
11982
|
+
"""Pagination options for the list query."""
|
|
11983
|
+
pagination: Pagination
|
|
11984
|
+
|
|
11985
|
+
"""Sorting options for the list query."""
|
|
11986
|
+
sortings: [Sorting!]
|
|
11987
|
+
): SupervisorList!
|
|
11988
|
+
|
|
11989
|
+
"""Fetch a single Task by its ID"""
|
|
11990
|
+
task(id: String!): Task
|
|
11991
|
+
|
|
11992
|
+
"""Fetch a single TaskChecklistBinding by its ID"""
|
|
11993
|
+
taskChecklistBinding(id: String!): TaskChecklistBinding
|
|
11994
|
+
|
|
11995
|
+
"""To fetch a TaskResource"""
|
|
11996
|
+
taskResource(id: String!): TaskResource
|
|
11997
|
+
|
|
11998
|
+
"""To fetch multiple TaskResources"""
|
|
11999
|
+
taskResources(
|
|
12000
|
+
"""An array of filter conditions to apply to the list query."""
|
|
12001
|
+
filters: [Filter!]
|
|
12002
|
+
|
|
12003
|
+
"""Inherited value type for the list query."""
|
|
12004
|
+
inherited: InheritedValueType
|
|
12005
|
+
|
|
12006
|
+
"""Pagination options for the list query."""
|
|
12007
|
+
pagination: Pagination
|
|
12008
|
+
|
|
12009
|
+
"""Sorting options for the list query."""
|
|
12010
|
+
sortings: [Sorting!]
|
|
12011
|
+
): TaskResourceList!
|
|
12012
|
+
|
|
10262
12013
|
"""Fetches a single task type by its name."""
|
|
10263
12014
|
taskType(name: String!): TaskType!
|
|
10264
12015
|
|
|
@@ -10270,6 +12021,21 @@ type Query {
|
|
|
10270
12021
|
"""
|
|
10271
12022
|
taskTypesByConnection(connectionName: String!): TaskTypeList!
|
|
10272
12023
|
|
|
12024
|
+
"""Fetch multiple Tasks based on list parameters"""
|
|
12025
|
+
tasks(
|
|
12026
|
+
"""An array of filter conditions to apply to the list query."""
|
|
12027
|
+
filters: [Filter!]
|
|
12028
|
+
|
|
12029
|
+
"""Inherited value type for the list query."""
|
|
12030
|
+
inherited: InheritedValueType
|
|
12031
|
+
|
|
12032
|
+
"""Pagination options for the list query."""
|
|
12033
|
+
pagination: Pagination
|
|
12034
|
+
|
|
12035
|
+
"""Sorting options for the list query."""
|
|
12036
|
+
sortings: [Sorting!]
|
|
12037
|
+
): TaskList!
|
|
12038
|
+
|
|
10273
12039
|
"""To fetch multiple Terminologies"""
|
|
10274
12040
|
terminologies(
|
|
10275
12041
|
"""An array of filter conditions to apply to the list query."""
|
|
@@ -10365,6 +12131,24 @@ type Query {
|
|
|
10365
12131
|
"""Sorting options for the list query."""
|
|
10366
12132
|
sortings: [Sorting!]
|
|
10367
12133
|
): WorkShiftList!
|
|
12134
|
+
|
|
12135
|
+
"""To fetch a WorkerType"""
|
|
12136
|
+
workerType(id: String!): WorkerType
|
|
12137
|
+
|
|
12138
|
+
"""To fetch multiple WorkerTypes"""
|
|
12139
|
+
workerTypes(
|
|
12140
|
+
"""An array of filter conditions to apply to the list query."""
|
|
12141
|
+
filters: [Filter!]
|
|
12142
|
+
|
|
12143
|
+
"""Inherited value type for the list query."""
|
|
12144
|
+
inherited: InheritedValueType
|
|
12145
|
+
|
|
12146
|
+
"""Pagination options for the list query."""
|
|
12147
|
+
pagination: Pagination
|
|
12148
|
+
|
|
12149
|
+
"""Sorting options for the list query."""
|
|
12150
|
+
sortings: [Sorting!]
|
|
12151
|
+
): WorkerTypeList!
|
|
10368
12152
|
}
|
|
10369
12153
|
|
|
10370
12154
|
type RecipientItem {
|
|
@@ -10373,6 +12157,40 @@ type RecipientItem {
|
|
|
10373
12157
|
value: String
|
|
10374
12158
|
}
|
|
10375
12159
|
|
|
12160
|
+
"""자원"""
|
|
12161
|
+
type Resource {
|
|
12162
|
+
createdAt: DateTimeISO
|
|
12163
|
+
creator: User
|
|
12164
|
+
deletedAt: DateTimeISO
|
|
12165
|
+
domain: Domain
|
|
12166
|
+
id: ID!
|
|
12167
|
+
name: String!
|
|
12168
|
+
type: String!
|
|
12169
|
+
unit: String!
|
|
12170
|
+
updatedAt: DateTimeISO
|
|
12171
|
+
updater: User
|
|
12172
|
+
}
|
|
12173
|
+
|
|
12174
|
+
type ResourceList {
|
|
12175
|
+
items: [Resource!]!
|
|
12176
|
+
total: Int!
|
|
12177
|
+
}
|
|
12178
|
+
|
|
12179
|
+
input ResourcePatch {
|
|
12180
|
+
cuFlag: String
|
|
12181
|
+
id: ID
|
|
12182
|
+
name: String
|
|
12183
|
+
type: ResourceType
|
|
12184
|
+
unit: String
|
|
12185
|
+
}
|
|
12186
|
+
|
|
12187
|
+
"""자원 유형"""
|
|
12188
|
+
enum ResourceType {
|
|
12189
|
+
EQUIPMENT
|
|
12190
|
+
HUMAN
|
|
12191
|
+
MATERIAL
|
|
12192
|
+
}
|
|
12193
|
+
|
|
10376
12194
|
"""
|
|
10377
12195
|
A role that groups a set of privileges, which can be assigned to users.
|
|
10378
12196
|
"""
|
|
@@ -10467,6 +12285,13 @@ type RolePrivilege {
|
|
|
10467
12285
|
name: String
|
|
10468
12286
|
}
|
|
10469
12287
|
|
|
12288
|
+
type RoomFinishDetail {
|
|
12289
|
+
box: String
|
|
12290
|
+
dwgId: String
|
|
12291
|
+
part: String
|
|
12292
|
+
symbol: String
|
|
12293
|
+
}
|
|
12294
|
+
|
|
10470
12295
|
"""Represents a sequence of steps designed to automate a task or process."""
|
|
10471
12296
|
type Scenario {
|
|
10472
12297
|
"""
|
|
@@ -11053,6 +12878,174 @@ type Subscription {
|
|
|
11053
12878
|
scenarioQueueState: ScenarioQueueState!
|
|
11054
12879
|
}
|
|
11055
12880
|
|
|
12881
|
+
"""Entity for Supervisor"""
|
|
12882
|
+
type Supervisor {
|
|
12883
|
+
active: Boolean
|
|
12884
|
+
createdAt: DateTimeISO
|
|
12885
|
+
creator: User
|
|
12886
|
+
deletedAt: DateTimeISO
|
|
12887
|
+
description: String
|
|
12888
|
+
domain: Domain
|
|
12889
|
+
email: String
|
|
12890
|
+
id: ID!
|
|
12891
|
+
name: String
|
|
12892
|
+
params: String
|
|
12893
|
+
phoneNumber: String
|
|
12894
|
+
reports: [ProjectReport!]!
|
|
12895
|
+
state: String
|
|
12896
|
+
thumbnail: String
|
|
12897
|
+
updatedAt: DateTimeISO
|
|
12898
|
+
updater: User
|
|
12899
|
+
}
|
|
12900
|
+
|
|
12901
|
+
type SupervisorList {
|
|
12902
|
+
items: [Supervisor!]!
|
|
12903
|
+
total: Int!
|
|
12904
|
+
}
|
|
12905
|
+
|
|
12906
|
+
input SupervisorPatch {
|
|
12907
|
+
active: Boolean
|
|
12908
|
+
cuFlag: String
|
|
12909
|
+
description: String
|
|
12910
|
+
id: ID
|
|
12911
|
+
name: String
|
|
12912
|
+
state: SupervisorStatus
|
|
12913
|
+
thumbnail: Upload
|
|
12914
|
+
}
|
|
12915
|
+
|
|
12916
|
+
"""state enumeration of a supervisor"""
|
|
12917
|
+
enum SupervisorStatus {
|
|
12918
|
+
STATUS_A
|
|
12919
|
+
STATUS_B
|
|
12920
|
+
}
|
|
12921
|
+
|
|
12922
|
+
"""공정표 작업 정보"""
|
|
12923
|
+
type Task {
|
|
12924
|
+
children(
|
|
12925
|
+
"""An array of filter conditions to apply to the list query."""
|
|
12926
|
+
filters: [Filter!]
|
|
12927
|
+
|
|
12928
|
+
"""Inherited value type for the list query."""
|
|
12929
|
+
inherited: InheritedValueType
|
|
12930
|
+
|
|
12931
|
+
"""Pagination options for the list query."""
|
|
12932
|
+
pagination: Pagination
|
|
12933
|
+
|
|
12934
|
+
"""Sorting options for the list query."""
|
|
12935
|
+
sortings: [Sorting!]
|
|
12936
|
+
): [Task!]
|
|
12937
|
+
code: String!
|
|
12938
|
+
createdAt: DateTimeISO
|
|
12939
|
+
creator: User
|
|
12940
|
+
deletedAt: DateTimeISO
|
|
12941
|
+
dependsOn: String
|
|
12942
|
+
duration: Float
|
|
12943
|
+
endDate: DateTimeISO
|
|
12944
|
+
id: ID!
|
|
12945
|
+
|
|
12946
|
+
"""Calculate the duration of the task in days"""
|
|
12947
|
+
length: String
|
|
12948
|
+
name: String
|
|
12949
|
+
parent: Task
|
|
12950
|
+
progress: Float
|
|
12951
|
+
project: Project!
|
|
12952
|
+
|
|
12953
|
+
"""Return the simple list of resources allocated to the task"""
|
|
12954
|
+
resources: [DigestedResource!]!
|
|
12955
|
+
startDate: DateTimeISO
|
|
12956
|
+
style: String
|
|
12957
|
+
tags: Object
|
|
12958
|
+
taskChecklistBinding: TaskChecklistBinding
|
|
12959
|
+
taskResources: [TaskResource!]
|
|
12960
|
+
type: String
|
|
12961
|
+
updatedAt: DateTimeISO
|
|
12962
|
+
updater: User
|
|
12963
|
+
}
|
|
12964
|
+
|
|
12965
|
+
"""Task와 Checklist 간의 바인딩 정보"""
|
|
12966
|
+
type TaskChecklistBinding {
|
|
12967
|
+
checklist: Checklist
|
|
12968
|
+
createdAt: DateTimeISO
|
|
12969
|
+
creator: User
|
|
12970
|
+
id: ID!
|
|
12971
|
+
manager: ManagerOutput
|
|
12972
|
+
project: Project
|
|
12973
|
+
status: String
|
|
12974
|
+
task: Task
|
|
12975
|
+
taskCode: String!
|
|
12976
|
+
updatedAt: DateTimeISO
|
|
12977
|
+
updater: User
|
|
12978
|
+
}
|
|
12979
|
+
|
|
12980
|
+
input TaskChecklistInputType {
|
|
12981
|
+
constructionDetailType: String
|
|
12982
|
+
constructionType: String
|
|
12983
|
+
inspectionDrawingType: String
|
|
12984
|
+
inspectionParts: [String!]
|
|
12985
|
+
location: String
|
|
12986
|
+
name: String!
|
|
12987
|
+
projectId: String
|
|
12988
|
+
taskCode: String
|
|
12989
|
+
}
|
|
12990
|
+
|
|
12991
|
+
type TaskList {
|
|
12992
|
+
"""작업 리스트 항목들"""
|
|
12993
|
+
items: [Task!]!
|
|
12994
|
+
|
|
12995
|
+
"""전체 작업 수"""
|
|
12996
|
+
total: Int!
|
|
12997
|
+
}
|
|
12998
|
+
|
|
12999
|
+
input TaskPatch {
|
|
13000
|
+
"""작업이 활성 상태인지 여부 (선택 사항)"""
|
|
13001
|
+
active: Boolean
|
|
13002
|
+
|
|
13003
|
+
"""프로젝트 내에서 유니크한 작업 코드 (선택 사항)"""
|
|
13004
|
+
code: String
|
|
13005
|
+
|
|
13006
|
+
"""생성('+') 또는 수정('M') 플래그 (선택 사항)"""
|
|
13007
|
+
cuFlag: String
|
|
13008
|
+
|
|
13009
|
+
"""작업에 대한 설명 (선택 사항)"""
|
|
13010
|
+
description: String
|
|
13011
|
+
|
|
13012
|
+
"""수정할 작업의 ID (선택 사항)"""
|
|
13013
|
+
id: ID
|
|
13014
|
+
|
|
13015
|
+
"""작업의 이름 (선택 사항)"""
|
|
13016
|
+
name: String
|
|
13017
|
+
|
|
13018
|
+
"""부모 작업, 해당 작업이 하위 작업인 경우 (선택 사항)"""
|
|
13019
|
+
parent: ObjectRefForTask
|
|
13020
|
+
|
|
13021
|
+
"""작업이 속한 프로젝트 (선택 사항)"""
|
|
13022
|
+
project: ObjectRefForProject
|
|
13023
|
+
}
|
|
13024
|
+
|
|
13025
|
+
"""작업에 소요되는 자원"""
|
|
13026
|
+
type TaskResource {
|
|
13027
|
+
createdAt: DateTimeISO
|
|
13028
|
+
deletedAt: DateTimeISO
|
|
13029
|
+
id: ID!
|
|
13030
|
+
quantity: Float!
|
|
13031
|
+
resource: Resource!
|
|
13032
|
+
task: Task!
|
|
13033
|
+
updatedAt: DateTimeISO
|
|
13034
|
+
}
|
|
13035
|
+
|
|
13036
|
+
type TaskResourceList {
|
|
13037
|
+
items: [TaskResource!]!
|
|
13038
|
+
total: Int!
|
|
13039
|
+
}
|
|
13040
|
+
|
|
13041
|
+
input TaskResourcePatch {
|
|
13042
|
+
cuFlag: String
|
|
13043
|
+
id: ID
|
|
13044
|
+
quantity: Float
|
|
13045
|
+
resourceId: ID
|
|
13046
|
+
taskId: ID
|
|
13047
|
+
}
|
|
13048
|
+
|
|
11056
13049
|
"""Describes a type of task that can be used in a scenario."""
|
|
11057
13050
|
type TaskType {
|
|
11058
13051
|
"""Indicates whether this task type can be used without a connector."""
|
|
@@ -11186,9 +13179,36 @@ input ThemePatch {
|
|
|
11186
13179
|
value: Object
|
|
11187
13180
|
}
|
|
11188
13181
|
|
|
13182
|
+
input UpdateBuildingInspection {
|
|
13183
|
+
drawingMarker: String
|
|
13184
|
+
id: String!
|
|
13185
|
+
memo: String
|
|
13186
|
+
}
|
|
13187
|
+
|
|
13188
|
+
input UpdateBuildingInspectionSubmitType {
|
|
13189
|
+
checklist: ChecklistSubmitInputType!
|
|
13190
|
+
checklistItem: [ChecklistItemSubmitInputType!]!
|
|
13191
|
+
id: String!
|
|
13192
|
+
memo: String
|
|
13193
|
+
}
|
|
13194
|
+
|
|
13195
|
+
input UpdateTaskChecklistSubmitType {
|
|
13196
|
+
checklist: ChecklistSubmitInputType!
|
|
13197
|
+
checklistId: String!
|
|
13198
|
+
checklistItem: [ChecklistItemSubmitInputType!]!
|
|
13199
|
+
}
|
|
13200
|
+
|
|
11189
13201
|
"""The `Upload` scalar type represents a file upload."""
|
|
11190
13202
|
scalar Upload
|
|
11191
13203
|
|
|
13204
|
+
input UploadProjectScheduleTable {
|
|
13205
|
+
"""수정할 프로젝트의 ID"""
|
|
13206
|
+
projectId: String!
|
|
13207
|
+
|
|
13208
|
+
"""프로젝트 공정표 업로드"""
|
|
13209
|
+
scheduleTable: Upload
|
|
13210
|
+
}
|
|
13211
|
+
|
|
11192
13212
|
type UploadURL {
|
|
11193
13213
|
fields: Any!
|
|
11194
13214
|
url: String!
|
|
@@ -11403,6 +13423,31 @@ input WorkShiftPatch {
|
|
|
11403
13423
|
toTime: String!
|
|
11404
13424
|
}
|
|
11405
13425
|
|
|
13426
|
+
"""작업자 타입"""
|
|
13427
|
+
type WorkerType {
|
|
13428
|
+
createdAt: DateTimeISO
|
|
13429
|
+
creator: User
|
|
13430
|
+
deletedAt: DateTimeISO
|
|
13431
|
+
description: String
|
|
13432
|
+
domain: Domain
|
|
13433
|
+
id: ID!
|
|
13434
|
+
name: String!
|
|
13435
|
+
updatedAt: DateTimeISO
|
|
13436
|
+
updater: User
|
|
13437
|
+
}
|
|
13438
|
+
|
|
13439
|
+
type WorkerTypeList {
|
|
13440
|
+
items: [WorkerType!]!
|
|
13441
|
+
total: Int!
|
|
13442
|
+
}
|
|
13443
|
+
|
|
13444
|
+
input WorkerTypePatch {
|
|
13445
|
+
cuFlag: String!
|
|
13446
|
+
description: String
|
|
13447
|
+
id: ID
|
|
13448
|
+
name: String
|
|
13449
|
+
}
|
|
13450
|
+
|
|
11406
13451
|
input i18nCompletionInput {
|
|
11407
13452
|
json: String!
|
|
11408
13453
|
}
|