-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogcica-schema.graphql
6646 lines (6116 loc) · 146 KB
/
logcica-schema.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
input OfferInsertInput {
price: PriceInsertInput
product: OfferProductRelationInput
quantity: QuantityInsertInput
updatedAt: DateTime
_id: ObjectId
createdAt: DateTime
ids: [String]
owner: ActorRefInsertInput
}
input ProductBrandUpdateInput {
name: String
name_unset: Boolean
}
input ProductIngredientListQuantityUpdateInput {
percentage: Float
percentage_inc: Float
percentage_unset: Boolean
}
type TransactionChannelExternalTargetEnterprise {
id: String
}
input SupplierQueryInput {
name_nin: [String]
_id_ne: ObjectId
name_gte: String
createdAt: DateTime
OR: [SupplierQueryInput!]
_id: ObjectId
createdAt_lt: DateTime
updatedAt_in: [DateTime]
ids_exists: Boolean
updatedAt_nin: [DateTime]
_id_gte: ObjectId
updatedAt_gt: DateTime
updatedAt_gte: DateTime
_id_nin: [ObjectId]
name_gt: String
AND: [SupplierQueryInput!]
owner: ActorRefQueryInput
createdAt_nin: [DateTime]
owner_exists: Boolean
name: String
createdAt_gt: DateTime
ids_in: [String]
ids: [String]
updatedAt_lt: DateTime
createdAt_exists: Boolean
name_ne: String
_id_lt: ObjectId
name_exists: Boolean
updatedAt: DateTime
_id_gt: ObjectId
_id_exists: Boolean
createdAt_lte: DateTime
createdAt_ne: DateTime
name_lte: String
_id_in: [ObjectId]
updatedAt_exists: Boolean
name_in: [String]
updatedAt_lte: DateTime
_id_lte: ObjectId
updatedAt_ne: DateTime
createdAt_gte: DateTime
createdAt_in: [DateTime]
name_lt: String
ids_nin: [String]
}
input TourLegOriginUpdateInput {
place_unset: Boolean
place: ObjectId
}
input OrderLineOfferQueryInput {
_id_lte: ObjectId
_id_ne: ObjectId
OR: [OrderLineOfferQueryInput!]
_id_in: [ObjectId]
_id_nin: [ObjectId]
_id_gt: ObjectId
_id_gte: ObjectId
AND: [OrderLineOfferQueryInput!]
_id: ObjectId
_id_exists: Boolean
_id_lt: ObjectId
}
input ConsolidateInputDatumSalesSession {
owner: ConsolidateInputDatumSalesSessionOwner
ids: [String]
name: String
}
input TourStopTaskUpdateInput {
shipments_unset: Boolean
duration: TourStopTaskDurationUpdateInput
duration_unset: Boolean
name: String
name_unset: Boolean
shipments: [ObjectId]
}
type TourDraft {
_id: ObjectId
distance: Quantity
duration: Quantity
optimisation: TourDraftOptimisation
owner: ActorRef
shipments: [Shipment]
stops: [TourStop]
tour: Tour
validation: TourDraftValidation
vehicle: Vehicle
}
input QuantityInsertInput {
unit: UnitRefInsertInput
value: Float
}
input QuantityUpdateInput {
value: Float
value_inc: Float
value_unset: Boolean
unit: UnitRefUpdateInput
unit_unset: Boolean
}
input ShippingMethodQueryInput {
description_gt: String
_id_ne: ObjectId
description_lte: String
name_exists: Boolean
type: String
name_gte: String
_id_gt: ObjectId
description: String
ids_in: [String]
_id_nin: [ObjectId]
description_exists: Boolean
_id_gte: ObjectId
type_gt: String
description_lt: String
AND: [ShippingMethodQueryInput!]
type_ne: String
_id_lte: ObjectId
description_in: [String]
_id: ObjectId
OR: [ShippingMethodQueryInput!]
name_lte: String
ids: [String]
pickup: ShippingMethodPickupQueryInput
type_exists: Boolean
name_ne: String
name_nin: [String]
description_gte: String
name_lt: String
_id_exists: Boolean
pickup_exists: Boolean
ids_nin: [String]
name: String
owner_exists: Boolean
type_in: [String]
type_nin: [String]
_id_in: [ObjectId]
name_in: [String]
description_ne: String
ids_exists: Boolean
type_lte: String
type_gte: String
description_nin: [String]
owner: ActorRefQueryInput
name_gt: String
_id_lt: ObjectId
type_lt: String
}
input OfferQueryInput {
createdAt: DateTime
price: PriceQueryInput
_id_exists: Boolean
OR: [OfferQueryInput!]
updatedAt_gte: DateTime
_id_in: [ObjectId]
_id_gte: ObjectId
_id_lt: ObjectId
quantity: QuantityQueryInput
updatedAt_lte: DateTime
createdAt_in: [DateTime]
ids_exists: Boolean
owner_exists: Boolean
product: ProductQueryInput
product_exists: Boolean
createdAt_lte: DateTime
_id_gt: ObjectId
createdAt_nin: [DateTime]
ids_in: [String]
_id: ObjectId
_id_nin: [ObjectId]
updatedAt_gt: DateTime
_id_lte: ObjectId
createdAt_exists: Boolean
ids: [String]
_id_ne: ObjectId
updatedAt_ne: DateTime
owner: ActorRefQueryInput
AND: [OfferQueryInput!]
createdAt_gte: DateTime
price_exists: Boolean
quantity_exists: Boolean
createdAt_lt: DateTime
updatedAt_in: [DateTime]
updatedAt: DateTime
createdAt_ne: DateTime
ids_nin: [String]
updatedAt_lt: DateTime
updatedAt_exists: Boolean
createdAt_gt: DateTime
updatedAt_nin: [DateTime]
}
input OrderShippingMethodRelationInput {
create: ShippingMethodInsertInput
link: ObjectId
}
input ProductUpdateInput {
netVolume: QuantityUpdateInput
owner_unset: Boolean
functionalName_unset: Boolean
brand: ProductBrandUpdateInput
gtin_unset: Boolean
brand_unset: Boolean
ingredientStatement: String
allergenList_unset: Boolean
createdAt: DateTime
image: ProductImageUpdateInput
createdAt_unset: Boolean
publishedAt_unset: Boolean
images: [ProductImageUpdateInput]
marketingMessage_unset: Boolean
sku_unset: Boolean
weight_unset: Boolean
consumerSafetyInformation_unset: Boolean
netWeight: QuantityUpdateInput
description_unset: Boolean
grossWeight: QuantityUpdateInput
supplierSpecifiedMinimumConsumerStorageDays_inc: Int
image_unset: Boolean
consumerUsageInstructions_unset: Boolean
netVolume_unset: Boolean
consumerStorageInstructions: String
countryOfOrigin: ProductCountryOfOriginRelationInput
description: String
ids: [String]
consumerStorageInstructions_unset: Boolean
publishedAt: DateTime
marketingMessage: String
regulatedName: String
test_unset: Boolean
name_unset: Boolean
regulatedName_unset: Boolean
quantity: ProductQuantityUpdateInput
producer: ActorRefUpdateInput
countryOfOrigin_unset: Boolean
_id: ObjectId
gtin: String
nutrientList: [ProductNutrientListUpdateInput]
images_unset: Boolean
ingredientList_unset: Boolean
allergenList: [ProductAllergenListUpdateInput]
consumerSafetyInformation: String
grossWeight_unset: Boolean
producer_unset: Boolean
weight: QuantityUpdateInput
ingredientList: [ProductIngredientListUpdateInput]
supplierSpecifiedMinimumConsumerStorageDays: Int
consumerUsageInstructions: String
group_unset: Boolean
categories: ProductCategoriesRelationInput
functionalName: String
categories_unset: Boolean
supplierSpecifiedMinimumConsumerStorageDays_unset: Boolean
name: String
quantity_unset: Boolean
ingredientStatement_unset: Boolean
ids_unset: Boolean
nutrientList_unset: Boolean
_id_unset: Boolean
netWeight_unset: Boolean
test: String
sku: String
owner: ActorRefUpdateInput
group: ProductGroupRelationInput
}
input ConsolidateInputDatumOrderLineOffer {
ids: [String]
}
input ProductClassificationQueryInput {
OR: [ProductClassificationQueryInput!]
key: String
key_gte: String
key_nin: [String]
AND: [ProductClassificationQueryInput!]
name_lt: String
_id: ObjectId
_id_exists: Boolean
_id_in: [ObjectId]
key_gt: String
key_lte: String
_id_lt: ObjectId
_id_lte: ObjectId
_id_gte: ObjectId
name_gt: String
name_gte: String
name_in: [String]
_id_gt: ObjectId
name_lte: String
_id_nin: [ObjectId]
name_ne: String
key_in: [String]
name_nin: [String]
key_ne: String
key_lt: String
_id_ne: ObjectId
key_exists: Boolean
name_exists: Boolean
name: String
}
input SalesSessionInsertInput {
_id: ObjectId
createdAt: DateTime
ids: [String]
owner: ActorRefInsertInput
updatedAt: DateTime
}
input TransactionChannelExternalTargetPlatformUpdateInput {
key: String
key_unset: Boolean
}
input CodeListItemsRelationInput {
create: [CodeInsertInput]
link: [ObjectId]
}
input ConsolidateInputDatumWorkspace {
taxId: String
place: ConsolidateInputDatumWorkspacePlace
address: ConsolidateInputDatumWorkspaceAddress
ids: [String]
name: String
key: String
link: String
vatId: String
}
input ConsolidateInputDatumCatalog {
ids: [String]
owner: ConsolidateInputDatumCatalogOwner
}
input TourStopPickupQueryInput {
shipments_in: [ObjectId]
shipments_nin: [ObjectId]
shipments_exists: Boolean
AND: [TourStopPickupQueryInput!]
OR: [TourStopPickupQueryInput!]
shipments: [ObjectId]
}
type OrderSeller {
name: String
supplier: Supplier
workspace: Workspace
}
type VehicleCostDriver {
factor: Float
type: String
unit: UnitRef
}
type StorageCapacity {
volume: Quantity
weight: Quantity
}
input StorageCapacityInsertInput {
volume: QuantityInsertInput
weight: QuantityInsertInput
}
input OrderSalesSessionRelationInput {
create: SalesSessionInsertInput
link: ObjectId
}
input TourDraftQueryInput {
tour_exists: Boolean
_id_exists: Boolean
shipments: [ShipmentQueryInput]
shipments_exists: Boolean
validation: TourDraftValidationQueryInput
AND: [TourDraftQueryInput!]
distance_exists: Boolean
_id_lte: ObjectId
stops_in: [TourStopQueryInput]
_id_gte: ObjectId
stops_nin: [TourStopQueryInput]
_id_lt: ObjectId
_id_gt: ObjectId
validation_exists: Boolean
stops: [TourStopQueryInput]
_id_in: [ObjectId]
duration: QuantityQueryInput
optimisation: TourDraftOptimisationQueryInput
distance: QuantityQueryInput
vehicle: VehicleQueryInput
stops_exists: Boolean
_id: ObjectId
owner: ActorRefQueryInput
OR: [TourDraftQueryInput!]
optimisation_exists: Boolean
owner_exists: Boolean
shipments_in: [ShipmentQueryInput]
tour: TourQueryInput
_id_nin: [ObjectId]
_id_ne: ObjectId
shipments_nin: [ShipmentQueryInput]
vehicle_exists: Boolean
duration_exists: Boolean
}
enum ProductGroupSortByInput {
_ID_ASC
_ID_DESC
NAME_ASC
NAME_DESC
}
input ShippingMethodPickupUpdateInput {
points: [ShippingMethodPickupPointUpdateInput]
points_unset: Boolean
}
input GeometryQueryInput {
coordinates: [Float]
type_ne: String
coordinates_exists: Boolean
AND: [GeometryQueryInput!]
type_lte: String
type_lt: String
type_gt: String
coordinates_nin: [Float]
type: String
coordinates_in: [Float]
type_in: [String]
OR: [GeometryQueryInput!]
type_nin: [String]
type_exists: Boolean
type_gte: String
}
type WorkspaceMarketplace {
key: String
}
type ProductQuantityUnit {
text: String
}
input TourDraftValidationUpdateInput {
status: String
status_unset: Boolean
}
input ConsolidateInputDatumOrderLineItem {
ids: [String]
}
input WorkspaceEnterpriseQueryInput {
vatId: String
vatId_gte: String
name_gt: String
ids_in: [String]
name_ne: String
name_lt: String
vatId_in: [String]
name_nin: [String]
AND: [WorkspaceEnterpriseQueryInput!]
ids: [String]
name_gte: String
name_lte: String
ids_nin: [String]
name_in: [String]
vatId_lt: String
name_exists: Boolean
vatId_exists: Boolean
vatId_ne: String
OR: [WorkspaceEnterpriseQueryInput!]
vatId_nin: [String]
vatId_gt: String
ids_exists: Boolean
vatId_lte: String
name: String
}
type TourStopGeo {
coordinates: [Float]
type: String
}
input ConsolidationStrategyProfileUnlessQueryInput {
action_gte: String
action_exists: Boolean
AND: [ConsolidationStrategyProfileUnlessQueryInput!]
action_in: [String]
action: String
action_gt: String
action_lt: String
action_nin: [String]
OR: [ConsolidationStrategyProfileUnlessQueryInput!]
action_lte: String
action_ne: String
filter: ConsolidationStrategyProfileUnlessFilterQueryInput
filter_exists: Boolean
}
input ProductCategoryUpdateInput {
children_unset: Boolean
name: String
hierarchyLevel: Int
children: ProductCategoryChildrenRelationInput
hierarchyLevel_inc: Int
id_unset: Boolean
classification_unset: Boolean
id: String
_id_unset: Boolean
name_unset: Boolean
_id: ObjectId
code_unset: Boolean
classification: ProductCategoryClassificationRelationInput
code: String
hierarchyLevel_unset: Boolean
ids: [String]
ids_unset: Boolean
}
input ProductNutrientListUpdateInput {
dailyValueIntakePercent_inc: Float
dailyValueIntakePercent_unset: Boolean
nutrient: CodeRefUpdateInput
nutrient_unset: Boolean
quantity: QuantityUpdateInput
quantity_unset: Boolean
dailyValueIntakePercent: Float
}
input ConsolidateInputDatumProductCategory {
classification: ConsolidateInputDatumProductCategoryClassification
ids: [String]
name: String
code: String
}
input ConsolidateInputDatumOfferProduct {
ids: [String]
}
type Translation {
fr: TranslationFr
}
input GeometryUpdateInput {
coordinates: [Float]
coordinates_unset: Boolean
type: String
type_unset: Boolean
}
input ProductIngredientListQuantityInsertInput {
percentage: Float
}
type ConsolidationStrategyRule {
collection: String
profileKey: String
}
type Quantity {
unit: UnitRef
value: Float
}
type UnitRef {
code: String
symbol: String
}
input ShipmentDeliveryQueryInput {
postalCode_lt: String
postalCode_exists: Boolean
phone_gt: String
postalCode_ne: String
locality: String
postalCode_lte: String
phone_lte: String
phone_ne: String
locality_lte: String
locality_gt: String
phone: String
country_in: [String]
country_lte: String
locality_exists: Boolean
name: String
country: String
street_in: [String]
phone_nin: [String]
phone_lt: String
street_exists: Boolean
locality_ne: String
locality_lt: String
street: String
country_ne: String
country_nin: [String]
country_gte: String
locality_nin: [String]
locality_gte: String
name_exists: Boolean
name_lt: String
name_ne: String
name_in: [String]
street_lt: String
postalCode_gte: String
postalCode_nin: [String]
name_gte: String
street_nin: [String]
phone_exists: Boolean
locality_in: [String]
place: PlaceQueryInput
country_gt: String
country_exists: Boolean
name_nin: [String]
place_exists: Boolean
phone_in: [String]
name_gt: String
street_lte: String
street_gte: String
street_ne: String
country_lt: String
postalCode: String
postalCode_gt: String
name_lte: String
phone_gte: String
OR: [ShipmentDeliveryQueryInput!]
AND: [ShipmentDeliveryQueryInput!]
street_gt: String
postalCode_in: [String]
}
input ConsolidateInputDatumOrderSellerWorkspace {
ids: [String]
}
enum ConsolidationStrategySortByInput {
_ID_ASC
_ID_DESC
KEY_ASC
KEY_DESC
}
input VehicleCostResourceInsertInput {
key: String
type: String
unit: UnitRefInsertInput
currency: VehicleCostResourceCurrencyInsertInput
}
input OrderUpdateInput {
_id: ObjectId
totalPrice: PriceUpdateInput
shippingMethod_unset: Boolean
confirmed_unset: Boolean
number_unset: Boolean
seller: OrderSellerUpdateInput
buyer_unset: Boolean
salesSession: OrderSalesSessionRelationInput
salesSession_unset: Boolean
lines: [OrderLineUpdateInput]
totalPrice_unset: Boolean
url: String
shippingMethod: OrderShippingMethodRelationInput
createdAt: DateTime
updatedAt_unset: Boolean
seller_unset: Boolean
_id_unset: Boolean
createdAt_unset: Boolean
number: String
updatedAt: DateTime
broker: OrderBrokerUpdateInput
shippingAddress_unset: Boolean
date_unset: Boolean
lines_unset: Boolean
shippingAddress: AddressUpdateInput
url_unset: Boolean
confirmed: Boolean
buyer: OrderBuyerUpdateInput
date: DateTime
broker_unset: Boolean
}
input ShipmentDeliveryPlaceRelationInput {
create: PlaceInsertInput
link: ObjectId
}
input VehicleCostResourceUpdateInput {
currency_unset: Boolean
key: String
key_unset: Boolean
type: String
type_unset: Boolean
unit: UnitRefUpdateInput
unit_unset: Boolean
currency: VehicleCostResourceCurrencyUpdateInput
}
input SupplierUpdateInput {
ids_unset: Boolean
ids: [String]
updatedAt: DateTime
_id_unset: Boolean
createdAt_unset: Boolean
name: String
name_unset: Boolean
_id: ObjectId
owner_unset: Boolean
updatedAt_unset: Boolean
owner: ActorRefUpdateInput
createdAt: DateTime
}
input CodeQueryInput {
sequence_gte: String
_id_gt: ObjectId
name_ne: String
name_gte: String
symbol_lt: String
key_ne: String
key_gte: String
_id_in: [ObjectId]
name_exists: Boolean
_id: ObjectId
symbol_in: [String]
symbol_nin: [String]
name_gt: String
_id_ne: ObjectId
_id_lte: ObjectId
listKey_lte: String
sequence_nin: [String]
symbol_lte: String
name_nin: [String]
sequence: String
listKey_nin: [String]
key_gt: String
_id_nin: [ObjectId]
listKey_exists: Boolean
translations_exists: Boolean
ids_exists: Boolean
symbol_gt: String
name_lte: String
listKey_lt: String
key_nin: [String]
sequence_exists: Boolean
list_exists: Boolean
ids_in: [String]
sequence_gt: String
key_lt: String
_id_exists: Boolean
translations: CodeTranslationQueryInput
AND: [CodeQueryInput!]
sequence_in: [String]
listKey: String
symbol_gte: String
symbol: String
sequence_lt: String
listKey_gt: String
key: String
listKey_ne: String
ids_nin: [String]
list: CodeListQueryInput
sequence_lte: String
name: String
name_in: [String]
sequence_ne: String
key_exists: Boolean
ids: [String]
OR: [CodeQueryInput!]
key_in: [String]
_id_lt: ObjectId
key_lte: String
_id_gte: ObjectId
symbol_ne: String
listKey_in: [String]
name_lt: String
listKey_gte: String
symbol_exists: Boolean
}
input CodeTranslationDeQueryInput {
name_lte: String
name_nin: [String]
name_exists: Boolean
name: String
name_ne: String
name_gte: String
OR: [CodeTranslationDeQueryInput!]
name_lt: String
name_gt: String
AND: [CodeTranslationDeQueryInput!]
name_in: [String]
}
input VehicleFeatureQueryInput {
key_in: [String]
name_lt: String
key_gte: String
key: String
key_exists: Boolean
name_gte: String
key_ne: String
key_gt: String
key_lte: String
name: String
AND: [VehicleFeatureQueryInput!]
name_lte: String
name_in: [String]
name_exists: Boolean
name_gt: String
OR: [VehicleFeatureQueryInput!]
key_lt: String
name_nin: [String]
key_nin: [String]
name_ne: String
}
enum SupplierSortByInput {
NAME_ASC
NAME_DESC
UPDATEDAT_ASC
UPDATEDAT_DESC
_ID_ASC
_ID_DESC
CREATEDAT_ASC
CREATEDAT_DESC
}
input ProductGroupInsertInput {
_id: ObjectId
name: String
}
input ConsolidateInputDatumCatalogItemCatalog {
ids: [String]
}
input ConsolidationStrategyRuleInsertInput {
collection: String
profileKey: String
}
input ProductClassificationUpdateInput {
key_unset: Boolean
name: String
name_unset: Boolean
_id: ObjectId
_id_unset: Boolean
key: String
}
input ConsolidateInputDatumOrderShippingAddress {
place: ConsolidateInputDatumOrderShippingAddressPlace
}
type InventoryItem {
_id: ObjectId
product: ObjectId
quantity: Quantity
}
type CatalogItem {
_id: ObjectId
catalog: Catalog
categories: [ObjectId]
createdAt: DateTime
ids: [String]
inventoryItems: [InventoryItem]
name: String
offers: [Offer]
owner: ActorRef
product: Product
sku: String
}
input CatalogItemCatalogRelationInput {
link: ObjectId
create: CatalogInsertInput
}
input OrderLineOfferUpdateInput {
_id_unset: Boolean
_id: ObjectId
}
input ConsolidateInputDatumCode {
list: ConsolidateInputDatumCodeList
name: String
ids: [String]
}
input CatalogLocationsRelationInput {
create: [LocationInsertInput]
link: [ObjectId]
}
input ConsolidateInputDatum {
suppliers: [ConsolidateInputDatumSupplier]
places: [ConsolidateInputDatumPlace]
orders: [ConsolidateInputDatumOrder]
salesSessions: [ConsolidateInputDatumSalesSession]
products: [ConsolidateInputDatumProduct]
productCategories: [ConsolidateInputDatumProductCategory]
catalogItems: [ConsolidateInputDatumCatalogItem]
productClassifications: [ConsolidateInputDatumProductClassification]
offers: [ConsolidateInputDatumOffer]
workspaces: [ConsolidateInputDatumWorkspace]
catalogs: [ConsolidateInputDatumCatalog]
codes: [ConsolidateInputDatumCode]
customers: [ConsolidateInputDatumCustomer]
shippingMethods: [ConsolidateInputDatumShippingMethod]
productGroups: [ConsolidateInputDatumProductGroup]
}
input ConsolidateInputDatumOrderChannel {
ids: [String]
name: String
}
input ShipmentMethodRelationInput {
create: ShippingMethodInsertInput
link: ObjectId
}
input ConsolidateInputDatumOrderLineProduct {
ids: [String]
}
input TransactionChannelFilterQueryInput {
isOrdered_ne: Boolean
status_nin: [String]
status_gte: String
OR: [TransactionChannelFilterQueryInput!]
status_lt: String
status_in: [String]
isOrdered: Boolean
isOrdered_exists: Boolean
status: String
status_gt: String
AND: [TransactionChannelFilterQueryInput!]
status_exists: Boolean
status_lte: String
status_ne: String
}
input CustomerInsertInput {
places: CustomerPlacesRelationInput
updatedAt: DateTime
_id: ObjectId
createdAt: DateTime
ids: [String]
name: String
owner: ActorRefInsertInput
}
input TourStopTaskDurationUnitUpdateInput {
symbol: String
symbol_unset: Boolean
}
input OrderLineItemUpdateInput {