@things-factory/reference-app 6.0.19 → 6.0.22

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