· 7 years ago · Jan 01, 2019, 10:58 AM
1type currencies {
2 _id: ID! @id
3 date: String
4 rates: [currenciesRates!]!
5}
6
7type currenciesRates @embedded {
8 date: String
9 from: String
10 rate: String
11 to: String
12}
13
14type Developer {
15 _id: ID! @id
16 storescredentials: [DeveloperStorescredentials!]!
17}
18
19type DeveloperStorescredentials @embedded {
20 accessKey: String
21 secretKey: String
22 storeName: String
23}
24
25type Orders {
26 __v: Int
27 _id: ID! @id
28 billTo: OrdersBillTo
29 channel: String
30 consolidation: [OrdersConsolidation!]!
31 currency: String
32 customerNote: String
33 customsDeclarationName: String
34 dhlEcommerceTrackingNumber: Boolean
35 discountAmount: Int
36 docCreatedDate: DateTime
37 earliestDeliveryDate: DateTime
38 giftMessage: String
39 InsuranceValue: Int
40 invoice: [OrdersInvoice!]!
41 itemsInOrder: [OrdersItemsInOrder!]!
42 language: String
43 latestDeliveryDate: DateTime
44 orderPackingHistory: [OrdersOrderPackingHistory!]!
45 sellerOrderId: String
46 shipmentDetails: OrdersShipmentDetails
47 shippingAmount: Float
48 shippingStatus: String
49 shipTo: OrdersShipTo
50 storeCreatedDate: DateTime
51 storeName: String
52 storeOrderId: String
53 storePurchasDate: DateTime
54 storeShippingName: String
55 taxAmount: Float
56 tenantId: Tenant @relation(link: INLINE)
57 totalWeight: Float
58}
59
60type OrdersBillTo @embedded {
61 _id: ID! @id
62 address: String
63 # Datatype inconsistency. Conflicting types found: Int, String
64 # No type information found for field.
65 # cellPhone: <Unknown> @relation(name: <Unknown>)
66 city: String
67 companyId: String
68 companyName: String
69 contactName: String
70 countryIso: String
71 countryName: String
72 email: String
73 eori: Int
74 fax: Int
75 # Datatype inconsistency. Conflicting types found: String, Int
76 # No type information found for field.
77 # phoneNumber: <Unknown> @relation(name: <Unknown>)
78 stateIso: String
79 stateName: String
80 # Datatype inconsistency. Conflicting types found: String, Int
81 # No type information found for field.
82 # zipCode: <Unknown> @relation(name: <Unknown>)
83}
84
85type OrdersConsolidation @embedded {
86 _id: ID! @id
87 batchId: String
88 # Field type not supported: null
89 # consolidationLabel: <Unknown>
90 countryLimitations: [String!]!
91 courier: String
92 courierName: String
93 courierType: String
94 customesImage: String
95 labelImage: String
96 packingDate: DateTime
97 quantityLimitation: Int
98 totalWeight: Float
99 trackingNumber: String
100 weightLimitation: Int
101}
102
103type OrdersInvoice @embedded {
104 _id: ID! @id
105 currencyBase: String
106 currencyRate: Int
107 dateCreated: DateTime
108 image: String
109 number: Int
110 type: String
111 value: Int
112}
113
114type OrdersItemsInOrder @embedded {
115 _id: ID! @id
116 giftMessageText: String
117 imageUrl: String
118 quantity: Int
119 sellerSku: String
120 storeIdentificationNumber: String
121 storeorderItemId: String
122 storeTitle: String
123 unitPrice: Float
124 variations: OrdersItemsInOrderVariations
125}
126
127type OrdersItemsInOrderVariations @embedded {
128 color: String
129 size: String
130 width: String
131}
132
133type OrdersOrderPackingHistory @embedded {
134 _id: ID! @id
135 comment: String
136 createDate: DateTime
137 packingManagerName: String
138 shippingStatus: String
139}
140
141type OrdersShipmentDetails @embedded {
142 _id: ID! @id
143 courier: String
144 courierName: String
145 courierType: String
146 createReshimon: Boolean
147 customsImage: String
148 depth: Int
149 dimensionUnit: String
150 dispatchedDate: DateTime
151 height: Int
152 labelImage: String
153 packingDate: DateTime
154 trackingNumber: String
155 weightUnit: String
156 width: Int
157}
158
159type OrdersShipTo @embedded {
160 _id: ID! @id
161 address: String
162 # Datatype inconsistency. Conflicting types found: Int, String
163 # No type information found for field.
164 # cellPhone: <Unknown> @relation(name: <Unknown>)
165 city: String
166 companyId: String
167 companyName: String
168 contactName: String
169 countryIso: String
170 countryName: String
171 email: String
172 eori: Int
173 fax: Int
174 # Datatype inconsistency. Conflicting types found: String, Int
175 # No type information found for field.
176 # phoneNumber: <Unknown> @relation(name: <Unknown>)
177 stateIso: String
178 stateName: String
179 # Datatype inconsistency. Conflicting types found: String, Int
180 # No type information found for field.
181 # zipCode: <Unknown> @relation(name: <Unknown>)
182}
183
184type SystemGlobalFields {
185 _id: ID! @id
186 australiaSuberbCodes: [SystemGlobalFieldsAustraliaSuberbCodes!]!
187 canadaStatesIso: [SystemGlobalFieldsCanadaStatesIso!]!
188 countriesIsoCodes: [SystemGlobalFieldsCountriesIsoCodes!]!
189 couriers: [String!]!
190 currencies: [String!]!
191 currencyEurRates: [SystemGlobalFieldsCurrencyEurRates!]!
192 customsDeclarationName: [SystemGlobalFieldsCustomsDeclarationName!]!
193 destinationDuty: [String!]!
194 dhl: SystemGlobalFieldsDhl
195 dhlEcommerceAsia: SystemGlobalFieldsDhlEcommerceAsia
196 en: [SystemGlobalFieldsEn!]!
197 environment: [SystemGlobalFieldsEnvironment!]!
198 fr: [SystemGlobalFieldsFr!]!
199 israelPostOffice: SystemGlobalFieldsIsraelPostOffice
200 labelFormat: [SystemGlobalFieldsLabelFormat!]!
201 onlineStores: [SystemGlobalFieldsOnlineStores!]!
202 shippingStatus: [String!]!
203 status: [SystemGlobalFieldsStatus!]!
204 usStatesIso: [SystemGlobalFieldsUsStatesIso!]!
205}
206
207type SystemGlobalFieldsAustraliaSuberbCodes @embedded {
208 label: String
209 value: String
210}
211
212type SystemGlobalFieldsCanadaStatesIso @embedded {
213 label: String
214 value: String
215}
216
217type SystemGlobalFieldsCountriesIsoCodes @embedded {
218 label: String
219 value: String
220}
221
222type SystemGlobalFieldsCurrencyEurRates @embedded {
223 2018-10-09: [SystemGlobalFieldsCurrencyEurRates2018-10-09!]!
224}
225
226type SystemGlobalFieldsCurrencyEurRates2018-10-09 @embedded {
227 currency: String
228 rate: Float
229}
230
231type SystemGlobalFieldsCustomsDeclarationName @embedded {
232 label: String
233 value: String
234}
235
236type SystemGlobalFieldsDhl @embedded {
237 dhlInvoiceType: [SystemGlobalFieldsDhlDhlInvoiceType!]!
238 dimensionUnit: [SystemGlobalFieldsDhlDimensionUnit!]!
239 doorTo: [SystemGlobalFieldsDhlDoorTo!]!
240 dutyPaymentType: [SystemGlobalFieldsDhlDutyPaymentType!]!
241 exportReasonCode: [SystemGlobalFieldsDhlExportReasonCode!]!
242 globalProductCode: [SystemGlobalFieldsDhlGlobalProductCode!]!
243 isDutiable: [SystemGlobalFieldsDhlIsDutiable!]!
244 languageCode: [SystemGlobalFieldsDhlLanguageCode!]!
245 localProductCode: [SystemGlobalFieldsDhlLocalProductCode!]!
246 packageType: [SystemGlobalFieldsDhlPackageType!]!
247 regionCode: [SystemGlobalFieldsDhlRegionCode!]!
248 service: [SystemGlobalFieldsDhlService!]!
249 shipperIdType: [SystemGlobalFieldsDhlShipperIdType!]!
250 shippingPaymentType: [SystemGlobalFieldsDhlShippingPaymentType!]!
251 specialServiceType: [SystemGlobalFieldsDhlSpecialServiceType!]!
252 termsOfTrade: [SystemGlobalFieldsDhlTermsOfTrade!]!
253 useDhlInvoice: [SystemGlobalFieldsDhlUseDhlInvoice!]!
254 weightUnit: [SystemGlobalFieldsDhlWeightUnit!]!
255}
256
257type SystemGlobalFieldsDhlDhlInvoiceType @embedded {
258 dbDhlInvoiceType: String
259 name: String
260}
261
262type SystemGlobalFieldsDhlDimensionUnit @embedded {
263 dbName: String
264 name: String
265}
266
267type SystemGlobalFieldsDhlDoorTo @embedded {
268 dbName: String
269 name: String
270}
271
272type SystemGlobalFieldsDhlDutyPaymentType @embedded {
273 dbDutyPaymentType: String
274 name: String
275}
276
277type SystemGlobalFieldsDhlEcommerceAsia @embedded {
278 errorCodes: [Int!]!
279 # No type information found for field.
280 # successCodes: [<Unknown>!]!
281}
282
283type SystemGlobalFieldsDhlExportReasonCode @embedded {
284 dbExportReasonCode: String
285 ExportReasonCode: String
286 name: String
287}
288
289type SystemGlobalFieldsDhlGlobalProductCode @embedded {
290 dbName: String
291 name: String
292}
293
294type SystemGlobalFieldsDhlIsDutiable @embedded {
295 dbIsDutiable: String
296 name: String
297}
298
299type SystemGlobalFieldsDhlLanguageCode @embedded {
300 dbLanguageCode: String
301 name: String
302}
303
304type SystemGlobalFieldsDhlLocalProductCode @embedded {
305 dbName: String
306 name: String
307}
308
309type SystemGlobalFieldsDhlPackageType @embedded {
310 dbName: String
311 name: String
312}
313
314type SystemGlobalFieldsDhlRegionCode @embedded {
315 dbRegionCode: String
316 name: String
317}
318
319type SystemGlobalFieldsDhlService @embedded {
320 dbName: String
321 name: String
322}
323
324type SystemGlobalFieldsDhlShipperIdType @embedded {
325 dbName: String
326 name: String
327}
328
329type SystemGlobalFieldsDhlShippingPaymentType @embedded {
330 dbShippingPaymentType: String
331 name: String
332}
333
334type SystemGlobalFieldsDhlSpecialServiceType @embedded {
335 dbName: String
336 name: String
337}
338
339type SystemGlobalFieldsDhlTermsOfTrade @embedded {
340 dbName: String
341 name: String
342}
343
344type SystemGlobalFieldsDhlUseDhlInvoice @embedded {
345 dbUseDhlInvoice: String
346 name: String
347}
348
349type SystemGlobalFieldsDhlWeightUnit @embedded {
350 dbName: String
351 name: String
352}
353
354type SystemGlobalFieldsEn @embedded {
355 billedTo: String
356 commercialInvcoie: String
357 consignee: String
358 invoiceNumber: String
359 itemsDescription: String
360 name: String
361 orderNumber: String
362 purchaseDate: String
363 qty: String
364 shipper: String
365 total: String
366 totalCost: String
367 trackingNumber: String
368 unitPrice: String
369}
370
371type SystemGlobalFieldsEnvironment @embedded {
372 dbEnvironment: String
373 name: String
374}
375
376type SystemGlobalFieldsFr @embedded {
377 billedTo: String
378 commercialInvoice: String
379 consignee: String
380 invoiceNumber: String
381 itemsDescription: String
382 name: String
383 orderNumber: String
384 purchaseDate: String
385 qty: String
386 shipper: String
387 total: String
388 totalCost: String
389 trackingNumber: String
390 unitPrice: String
391}
392
393type SystemGlobalFieldsIsraelPostOffice @embedded {
394 productName: [SystemGlobalFieldsIsraelPostOfficeProductName!]!
395 service: [SystemGlobalFieldsIsraelPostOfficeService!]!
396}
397
398type SystemGlobalFieldsIsraelPostOfficeProductName @embedded {
399 dbName: String
400 name: String
401}
402
403type SystemGlobalFieldsIsraelPostOfficeService @embedded {
404 dbCourierType: String
405 dbKamutiAddOnes: String
406 dbProductName: String
407 name: String
408}
409
410type SystemGlobalFieldsLabelFormat @embedded {
411 dblabelFormat: String
412 name: String
413}
414
415type SystemGlobalFieldsOnlineStores @embedded {
416 channel: String
417 image: String
418 name: String
419 type: String
420}
421
422type SystemGlobalFieldsStatus @embedded {
423 dbStatus: String
424 name: String
425}
426
427type SystemGlobalFieldsUsStatesIso @embedded {
428 label: String
429 value: String
430}
431
432type Tenant {
433 __v: Int
434 _id: ID! @id
435 companyLogo: String
436 name: String
437 shippingProducts: [TenantShippingProducts!]!
438 storeDataMapping: [TenantStoreDataMapping!]!
439 stores: [TenantStores!]!
440 stores_backup: [TenantStores_backup!]!
441 uploadingHistory: [TenantUploadingHistory!]!
442}
443
444type TenantShippingProducts @embedded {
445 _id: ID! @id
446 code: Int
447 consolidation: TenantShippingProductsConsolidation
448 contents: String
449 courier: String
450 courierType: String
451 courierTypeRest: String
452 credentials: TenantShippingProductsCredentials
453 currencyBase: String
454 customsDeclarationId: String
455 doorTo: String
456 dutyPaymentType: String
457 globalProductCode: String
458 inlineLabelReturn: String
459 insurance: String
460 invoice: TenantShippingProductsInvoice
461 isCreateReshimon: Boolean
462 isDutiable: String
463 kamutiAddOnes: String
464 kamutiAddOnesID: String
465 labelImageFormat: String
466 languageCode: String
467 layout: String
468 localProductCode: String
469 manufactureCountryName: String
470 messageLanguage: String
471 name: String
472 packageDetails: TenantShippingProductsPackageDetails
473 pickupAddress: TenantShippingProductsPickupAddress
474 piecesEnabled: String
475 productBatchUi: Boolean
476 productName: String
477 productNameRest: String
478 # Datatype inconsistency. Conflicting types found: Int, String
479 # No type information found for field.
480 # productType: <Unknown> @relation(name: <Unknown>)
481 productUiBatch: Boolean
482 productUiType: String
483 regionCode: String
484 returnAddress: TenantShippingProductsReturnAddress
485 returnMode: String
486 senderDetails: TenantShippingProductsSenderDetails
487 serviceType: Int
488 shipperEin: String
489 shippingPaymentType: String
490 shipTo: TenantShippingProductsShipTo
491 showCompanyIdInLabel: Boolean
492 specialServiceType: String
493 status: String
494 termsOfTrade: String
495 trackingCode: String
496}
497
498type TenantShippingProductsConsolidation @embedded {
499 _id: ID! @id
500 countryLimitations: [String!]!
501 currencyBase: String
502 quantityLimitation: String
503 receiverDetails: TenantShippingProductsConsolidationReceiverDetails
504 weightLimitation: String
505}
506
507type TenantShippingProductsConsolidationReceiverDetails @embedded {
508 address: String
509 # Datatype inconsistency. Conflicting types found: Int, String
510 # No type information found for field.
511 # cellPhone: <Unknown> @relation(name: <Unknown>)
512 city: String
513 companyId: String
514 companyName: String
515 companyOwner: String
516 contactName: String
517 countryIso: String
518 countryName: String
519 email: String
520 EOrI: Int
521 fax: String
522 houseNumber: Int
523 # Datatype inconsistency. Conflicting types found: Int, String
524 # No type information found for field.
525 # phoneNumber: <Unknown> @relation(name: <Unknown>)
526 stateIso: String
527 stateName: String
528 # Datatype inconsistency. Conflicting types found: Int, String
529 # No type information found for field.
530 # zipCode: <Unknown> @relation(name: <Unknown>)
531}
532
533type TenantShippingProductsCredentials @embedded {
534 accountId: String
535 clientId: String
536 clientSecret: String
537 environment: String
538 grantType: String
539 password: String
540 pickupAccountId: String
541 scope: String
542 shipperAccountNumber: String
543 shippingUrl: String
544 siteId: String
545 soldToAccountId: String
546 tokenUrl: String
547 userName: String
548 username: String
549}
550
551type TenantShippingProductsInvoice @embedded {
552 addDecltext1: String
553 addDecltext2: String
554 dhlInvoiceType: String
555 exporterCode: String
556 exportReason: String
557 exportReasonCode: String
558 otherCharges1: String
559 otherCharges2: String
560 packageRemarks: String
561 receiverReference: String
562 remarks: String
563 signatureImage: String
564 signatureName: String
565 signatureTitle: String
566 useDhlInvoice: String
567}
568
569type TenantShippingProductsPackageDetails @embedded {
570 depth: Int
571 dimensionUnit: String
572 dimensionUOM: String
573 height: Int
574 packageType: String
575 totalWeightUOM: String
576 weightUnit: String
577 width: Int
578}
579
580type TenantShippingProductsPickupAddress @embedded {
581 address: String
582 cellPhone: String
583 city: String
584 companyId: String
585 companyName: String
586 contactName: String
587 countryIso: String
588 countryName: String
589 email: String
590 fax: String
591 phoneNumber: String
592 zipCode: String
593}
594
595type TenantShippingProductsReturnAddress @embedded {
596 address: String
597 city: String
598 companyName: String
599 contactName: String
600 countryIso: String
601 email: String
602 phoneNumber: String
603 stateIso: String
604 zipCode: String
605}
606
607type TenantShippingProductsSenderDetails @embedded {
608 _id: ID! @id
609 address: String
610 cellPhone: String
611 city: String
612 companyId: String
613 companyName: String
614 contactName: String
615 countryIso: String
616 countryName: String
617 email: String
618 fax: String
619 name: String
620 phoneNumber: String
621 zipCode: String
622}
623
624type TenantShippingProductsShipTo @embedded {
625 address: String
626 cellPhone: String
627 city: String
628 companyId: String
629 companyName: String
630 companyOwner: String
631 contactName: String
632 countryIso: String
633 countryName: String
634 email: String
635 EOrI: Int
636 fax: String
637 houseNumber: Int
638 phoneNumber: String
639 stateName: String
640 zipCode: String
641}
642
643type TenantStoreDataMapping @embedded {
644 _id: ID! @id
645 createdDate: Int
646 csvMapName: String
647 # Datatype inconsistency: Sometimes is array, and sometimes not.
648 # Datatype inconsistency. Conflicting types found: String, EmbeddedObject
649 # No type information found for field.
650 # mappedColumns: TenantStoreDataMappingMappedColumns @relation(name: <Unknown>)
651}
652
653type TenantStoreDataMappingMappedColumns @embedded {
654 "address": String @relation(name: <Unknown>)
655 "batchID": String @relation(name: <Unknown>)
656 "channel": String @relation(name: <Unknown>)
657 "city": String @relation(name: <Unknown>)
658 "contactName": String @relation(name: <Unknown>)
659 "countryName": String @relation(name: <Unknown>)
660 "courierName": String @relation(name: <Unknown>)
661 "createdDate": String @relation(name: <Unknown>)
662 "currency": String @relation(name: <Unknown>)
663 "dispatchedDate": String @relation(name: <Unknown>)
664 "quantity": String @relation(name: <Unknown>)
665 "sellerOrderId": String @relation(name: <Unknown>)
666 "sellerSku": String @relation(name: <Unknown>)
667 "shippingStatus": String @relation(name: <Unknown>)
668 "stateName": String @relation(name: <Unknown>)
669 "storeIdentificationNumber": String @relation(name: <Unknown>)
670 "storeName": String @relation(name: <Unknown>)
671 "storePurchasDate": String @relation(name: <Unknown>)
672 "storeShippingName": String @relation(name: <Unknown>)
673 "storeTitle": String @relation(name: <Unknown>)
674 "totalAmount": String @relation(name: <Unknown>)
675 "totalCost": String @relation(name: <Unknown>)
676 "trackingNumber": String @relation(name: <Unknown>)
677 "unitPrice": String @relation(name: <Unknown>)
678 "variation": String @relation(name: <Unknown>)
679 "zipCode": String @relation(name: <Unknown>)
680 _id: ID! @id
681 Billing Address: String @relation(name: <Unknown>)
682 Billing City: String @relation(name: <Unknown>)
683 Billing Country: String @relation(name: <Unknown>)
684 Billing Customer Company: String @relation(name: <Unknown>)
685 Billing Customer Email: String @relation(name: <Unknown>)
686 Billing Customer Name: String @relation(name: <Unknown>)
687 Billing Customer Phone: String @relation(name: <Unknown>)
688 Billing State name: String @relation(name: <Unknown>)
689 Billing Zip Code: String @relation(name: <Unknown>)
690 Channel: String @relation(name: <Unknown>)
691 Currency: String @relation(name: <Unknown>)
692 Currency : String @relation(name: <Unknown>)
693 customer note: String @relation(name: <Unknown>)
694 Customer Note: String @relation(name: <Unknown>)
695 discount: String @relation(name: <Unknown>)
696 discount : String @relation(name: <Unknown>)
697 Eraleast: String @relation(name: <Unknown>)
698 Eraleast : String @relation(name: <Unknown>)
699 Gift Message: String @relation(name: <Unknown>)
700 Latest: String @relation(name: <Unknown>)
701 Latest : String @relation(name: <Unknown>)
702 note: String @relation(name: <Unknown>)
703 Order Number: String @relation(name: <Unknown>)
704 Order Total Weight: String @relation(name: <Unknown>)
705 Quantit: String @relation(name: <Unknown>)
706 Quantity: String @relation(name: <Unknown>)
707 Shipping Zip Code: String @relation(name: <Unknown>)
708 Shipping Address: String @relation(name: <Unknown>)
709 shipping amount: String @relation(name: <Unknown>)
710 Shipping City: String @relation(name: <Unknown>)
711 Shipping Country: String @relation(name: <Unknown>)
712 Shipping Customer Company: String @relation(name: <Unknown>)
713 Shipping Customer Email: String @relation(name: <Unknown>)
714 Shipping Customer Name: String @relation(name: <Unknown>)
715 Shipping Customer Phone: String @relation(name: <Unknown>)
716 Shipping State name: String @relation(name: <Unknown>)
717 SKU: String @relation(name: <Unknown>)
718 Store Name: String @relation(name: <Unknown>)
719 Store Name : String @relation(name: <Unknown>)
720 Store purchase Date: String @relation(name: <Unknown>)
721 tax amount: String @relation(name: <Unknown>)
722 Thank you @helpscout for the amazingness! Rocking my new t-shirt and laptop sticker right now :) Y'all are the best! : String @relation(name: <Unknown>)
723 Value: String @relation(name: <Unknown>)
724 Â Product Description: String @relation(name: <Unknown>)
725 Â Product Title: String @relation(name: <Unknown>)
726}
727
728type TenantStores @embedded {
729 _id: ID! @id
730 accessToken: TenantStoresAccessToken
731 channel: String
732 docCompanyLogo: String
733 docRemarks: String
734 marketPlace: TenantStoresMarketPlace
735 name: String
736 params: TenantStoresParams
737 refreshToken: TenantStoresRefreshToken
738 type: String
739}
740
741type TenantStores_backup @embedded {
742 channel: String
743 key: String
744 mwsToken: String
745 name: String
746 sellerId: String
747 status: String
748 token: String
749}
750
751type TenantStoresAccessToken @embedded {
752 expires: String
753 token: String
754}
755
756type TenantStoresMarketPlace @embedded {
757 globalId: String
758 name: String
759 siteId: Int
760}
761
762type TenantStoresParams @embedded {
763 1: TenantStoresParams1
764 12: TenantStoresParams12
765 1920: TenantStoresParams1920
766 1921: TenantStoresParams1921
767 2: TenantStoresParams2
768 22222: TenantStoresParams22222
769 23: TenantStoresParams23
770 active: Boolean
771 channel: String
772 duration: Int
773 integration: TenantStoresParamsIntegration
774 name: String
775 sellerId: String
776 token: String
777 type: String
778 wwwwww: TenantStoresParamsWwwwww
779}
780
781type TenantStoresParams1 @embedded {
782 duration: Int
783 lastSampleTime: String
784 ordersCount: Int
785 status: String
786}
787
788type TenantStoresParams12 @embedded {
789 duration: Int
790 error: String
791 lastSampleTime: String
792 ordersCount: Int
793 status: String
794}
795
796type TenantStoresParams1920 @embedded {
797 duration: Int
798 error: String
799 lastSampleTime: String
800 ordersCount: Int
801 status: String
802}
803
804type TenantStoresParams1921 @embedded {
805 duration: Int
806 error: String
807 lastSampleTime: String
808 ordersCount: Int
809 status: String
810}
811
812type TenantStoresParams2 @embedded {
813 duration: Int
814 lastSampleTime: String
815 ordersCount: Int
816 status: String
817}
818
819type TenantStoresParams22222 @embedded {
820 duration: Int
821 error: String
822 lastSampleTime: String
823 ordersCount: Int
824 status: String
825}
826
827type TenantStoresParams23 @embedded {
828 duration: Int
829 lastSampleTime: String
830 ordersCount: Int
831 status: String
832}
833
834type TenantStoresParamsIntegration @embedded {
835 duration: Int
836 error: String
837 lastSampleTime: String
838 ordersCount: Int
839 status: String
840}
841
842type TenantStoresParamsWwwwww @embedded {
843 duration: Int
844 error: String
845 lastSampleTime: String
846 ordersCount: Int
847 status: String
848}
849
850type TenantStoresRefreshToken @embedded {
851 expires: String
852 token: String
853}
854
855type TenantUploadingHistory @embedded {
856 _id: ID! @id
857 csvFileName: String
858 errorReport: String
859 ordersFailed: Int
860 ordersImported: Int
861 totalOrders: Int
862 uploadDate: DateTime
863}