@nautical-commerce/graphql-schema 1.93.0 → 1.94.0-10-gb701520e4
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/nautical/schema.graphql +574 -2
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -1132,6 +1132,131 @@ type Query {
|
|
1132
1132
|
"""Return the last n elements from the list."""
|
1133
1133
|
last: Int
|
1134
1134
|
): EmailEventCountableConnection
|
1135
|
+
|
1136
|
+
"""Get orders for tenant with optional date filtering"""
|
1137
|
+
bigqueryTenantOrders(
|
1138
|
+
"""Start date for filtering orders"""
|
1139
|
+
startDate: Date
|
1140
|
+
|
1141
|
+
"""End date for filtering orders"""
|
1142
|
+
endDate: Date
|
1143
|
+
|
1144
|
+
"""Grouping for the report, e.g., DAILY, WEEKLY, MONTHLY"""
|
1145
|
+
grouping: String = "MONTHLY"
|
1146
|
+
): BigQueryDailyOrderCountsReportType
|
1147
|
+
bigquerySalesPerDay(
|
1148
|
+
startDate: Date
|
1149
|
+
endDate: Date
|
1150
|
+
|
1151
|
+
"""Grouping for the report, e.g., DAILY, WEEKLY, MONTHLY"""
|
1152
|
+
grouping: String = "MONTHLY"
|
1153
|
+
): BigQuerySalesPerDayReportType
|
1154
|
+
bigqueryOrdersByStatus(startDate: Date, endDate: Date): BigQueryOrdersByStatusReportType
|
1155
|
+
|
1156
|
+
"""Returns a table of all customers for a given tenant"""
|
1157
|
+
bigqueryCustomers(
|
1158
|
+
"""The number of rows to return, at most 100."""
|
1159
|
+
first: Int = 100
|
1160
|
+
|
1161
|
+
"""The number of rows to skip."""
|
1162
|
+
offset: Int = 0
|
1163
|
+
|
1164
|
+
"""Column to sort by"""
|
1165
|
+
sortby: String
|
1166
|
+
): BigQueryCustomerReportType
|
1167
|
+
|
1168
|
+
"""Returns a list of payouts for a tenant"""
|
1169
|
+
bigqueryPayouts(
|
1170
|
+
startDate: Date
|
1171
|
+
endDate: Date
|
1172
|
+
|
1173
|
+
"""The number of rows to return, at most 100."""
|
1174
|
+
first: Int = 100
|
1175
|
+
|
1176
|
+
"""The number of rows to skip."""
|
1177
|
+
offset: Int = 0
|
1178
|
+
|
1179
|
+
"""Column to sort by"""
|
1180
|
+
sortby: String
|
1181
|
+
): BigQueryPayoutReportType
|
1182
|
+
|
1183
|
+
"""Returns a list of order line items for a tenant"""
|
1184
|
+
bigqueryOrderLineItems(
|
1185
|
+
sellerId: Int
|
1186
|
+
startDate: Date
|
1187
|
+
endDate: Date
|
1188
|
+
|
1189
|
+
"""The number of rows to return, at most 100."""
|
1190
|
+
first: Int = 100
|
1191
|
+
|
1192
|
+
"""The number of rows to skip."""
|
1193
|
+
offset: Int = 0
|
1194
|
+
|
1195
|
+
"""Column to sort by"""
|
1196
|
+
sortby: String
|
1197
|
+
): BigQueryOrdersBySellerReportType
|
1198
|
+
|
1199
|
+
"""Returns net sales by seller for a tenant"""
|
1200
|
+
bigqueryNetSalesBySeller(sellerId: Int, startDate: Date, endDate: Date): BigQueryNetSalesBySellerReportType
|
1201
|
+
|
1202
|
+
"""Returns net sales by category for a tenant"""
|
1203
|
+
bigqueryNetSalesByCategory(sellerId: Int, startDate: Date, endDate: Date): BigQueryNetSalesByCategoryReportType
|
1204
|
+
|
1205
|
+
"""Returns a list of seller orders for a given tenant and seller"""
|
1206
|
+
bigquerySellerOrders(
|
1207
|
+
sellerId: Int!
|
1208
|
+
startDate: Date
|
1209
|
+
endDate: Date
|
1210
|
+
|
1211
|
+
"""The number of rows to return, at most 100."""
|
1212
|
+
first: Int = 100
|
1213
|
+
|
1214
|
+
"""The number of rows to skip."""
|
1215
|
+
offset: Int = 0
|
1216
|
+
|
1217
|
+
"""Column to sort by"""
|
1218
|
+
sortby: String
|
1219
|
+
): BigQuerySellerOrdersReportType
|
1220
|
+
|
1221
|
+
"""Returns seller 30-60-90 day sales"""
|
1222
|
+
bigqueryThirtySixtyNinety(
|
1223
|
+
sellerId: Int
|
1224
|
+
|
1225
|
+
"""The number of rows to return, at most 100."""
|
1226
|
+
first: Int = 100
|
1227
|
+
|
1228
|
+
"""The number of rows to skip."""
|
1229
|
+
offset: Int = 0
|
1230
|
+
|
1231
|
+
"""Column to sort by"""
|
1232
|
+
sortby: String
|
1233
|
+
): BigQueryThirtySixtyNinetyReportType
|
1234
|
+
|
1235
|
+
"""Returns a list of seller payouts for a given tenant and seller"""
|
1236
|
+
bigquerySellerPayouts(
|
1237
|
+
"""The number of rows to return, at most 100."""
|
1238
|
+
first: Int = 100
|
1239
|
+
|
1240
|
+
"""The number of rows to skip."""
|
1241
|
+
offset: Int = 0
|
1242
|
+
|
1243
|
+
"""Column to sort by"""
|
1244
|
+
sortby: String
|
1245
|
+
): BigQuerySellerPayoutReportType
|
1246
|
+
|
1247
|
+
"""Returns a list of product variants for a given tenant"""
|
1248
|
+
bigqueryVariantList(
|
1249
|
+
sellerId: Int
|
1250
|
+
|
1251
|
+
"""The number of rows to return, at most 100."""
|
1252
|
+
first: Int = 100
|
1253
|
+
|
1254
|
+
"""The number of rows to skip."""
|
1255
|
+
offset: Int = 0
|
1256
|
+
|
1257
|
+
"""Column to sort by"""
|
1258
|
+
sortby: String
|
1259
|
+
): BigQueryVariantListReportType
|
1135
1260
|
insightsTopPerformingProducts(
|
1136
1261
|
"""Beginning of the period to filter results"""
|
1137
1262
|
startDate: Date!
|
@@ -8779,6 +8904,7 @@ input SellerFilterInput {
|
|
8779
8904
|
metadata: MetadataFilterInput
|
8780
8905
|
privateMetadata: MetadataFilterInput
|
8781
8906
|
isMarketplaceSeller: Boolean
|
8907
|
+
ids: [ID]
|
8782
8908
|
}
|
8783
8909
|
|
8784
8910
|
enum SellerStatusFilter {
|
@@ -10196,6 +10322,449 @@ enum EmailEventSortField {
|
|
10196
10322
|
DATE
|
10197
10323
|
}
|
10198
10324
|
|
10325
|
+
type BigQueryDailyOrderCountsReportType {
|
10326
|
+
"""Category of the metric."""
|
10327
|
+
category: String!
|
10328
|
+
|
10329
|
+
"""Title of the metric."""
|
10330
|
+
title: String!
|
10331
|
+
|
10332
|
+
"""
|
10333
|
+
Description of main columns in report and summary. Note: report and summary can contain additional columns.
|
10334
|
+
"""
|
10335
|
+
columns: [ColumnObjectType!]
|
10336
|
+
|
10337
|
+
"""Info about applied filters."""
|
10338
|
+
filters: [FilterObjectType!]
|
10339
|
+
|
10340
|
+
"""Summary metrics for the daily order count report"""
|
10341
|
+
summary: JSONString
|
10342
|
+
|
10343
|
+
"""Daily aggregated order counts"""
|
10344
|
+
report: [DailyOrderCountReportType!]!
|
10345
|
+
}
|
10346
|
+
|
10347
|
+
type DailyOrderCountReportType {
|
10348
|
+
"""Date of the orders"""
|
10349
|
+
orderDate: Date!
|
10350
|
+
|
10351
|
+
"""Number of orders on that date"""
|
10352
|
+
orderCount: Int!
|
10353
|
+
}
|
10354
|
+
|
10355
|
+
type BigQuerySalesPerDayReportType {
|
10356
|
+
"""Category of the metric."""
|
10357
|
+
category: String!
|
10358
|
+
|
10359
|
+
"""Title of the metric."""
|
10360
|
+
title: String!
|
10361
|
+
|
10362
|
+
"""
|
10363
|
+
Description of main columns in report and summary. Note: report and summary can contain additional columns.
|
10364
|
+
"""
|
10365
|
+
columns: [ColumnObjectType!]
|
10366
|
+
|
10367
|
+
"""Info about applied filters."""
|
10368
|
+
filters: [FilterObjectType!]
|
10369
|
+
|
10370
|
+
"""Summary metrics for the sales per day report"""
|
10371
|
+
summary: JSONString
|
10372
|
+
|
10373
|
+
"""Daily aggregated sales data"""
|
10374
|
+
report: [SalesPerDayType!]!
|
10375
|
+
}
|
10376
|
+
|
10377
|
+
type SalesPerDayType {
|
10378
|
+
saleDate: Date
|
10379
|
+
totalSales: Float
|
10380
|
+
}
|
10381
|
+
|
10382
|
+
type BigQueryOrdersByStatusReportType {
|
10383
|
+
"""Category of the metric."""
|
10384
|
+
category: String!
|
10385
|
+
|
10386
|
+
"""Title of the metric."""
|
10387
|
+
title: String!
|
10388
|
+
|
10389
|
+
"""
|
10390
|
+
Description of main columns in report and summary. Note: report and summary can contain additional columns.
|
10391
|
+
"""
|
10392
|
+
columns: [ColumnObjectType!]
|
10393
|
+
|
10394
|
+
"""Info about applied filters."""
|
10395
|
+
filters: [FilterObjectType!]
|
10396
|
+
|
10397
|
+
"""Summary metrics for the orders by status report"""
|
10398
|
+
summary: JSONString
|
10399
|
+
|
10400
|
+
"""Aggregated order counts by status"""
|
10401
|
+
report: [OrdersByStatusType!]!
|
10402
|
+
}
|
10403
|
+
|
10404
|
+
type OrdersByStatusType {
|
10405
|
+
status: String
|
10406
|
+
count: Int
|
10407
|
+
}
|
10408
|
+
|
10409
|
+
type BigQueryCustomerReportType {
|
10410
|
+
"""Category of the metric."""
|
10411
|
+
category: String!
|
10412
|
+
|
10413
|
+
"""Title of the metric."""
|
10414
|
+
title: String!
|
10415
|
+
|
10416
|
+
"""
|
10417
|
+
Description of main columns in report and summary. Note: report and summary can contain additional columns.
|
10418
|
+
"""
|
10419
|
+
columns: [ColumnObjectType!]
|
10420
|
+
|
10421
|
+
"""Info about applied filters."""
|
10422
|
+
filters: [FilterObjectType!]
|
10423
|
+
|
10424
|
+
"""Summary stats across all customers"""
|
10425
|
+
summary: JSONString
|
10426
|
+
|
10427
|
+
"""All customer records for a tenant"""
|
10428
|
+
report: [CustomerReportRowType!]
|
10429
|
+
}
|
10430
|
+
|
10431
|
+
type CustomerReportRowType {
|
10432
|
+
firstName: String
|
10433
|
+
lastName: String
|
10434
|
+
companyName: String
|
10435
|
+
email: String
|
10436
|
+
dateJoined: DateTime
|
10437
|
+
lastLogin: DateTime
|
10438
|
+
streetAddress1: String
|
10439
|
+
streetAddress2: String
|
10440
|
+
city: String
|
10441
|
+
countryArea: String
|
10442
|
+
country: String
|
10443
|
+
postalCode: String
|
10444
|
+
totalOrderAmount: Float
|
10445
|
+
totalOrderCount: Int
|
10446
|
+
}
|
10447
|
+
|
10448
|
+
type BigQueryPayoutReportType {
|
10449
|
+
"""Category of the metric."""
|
10450
|
+
category: String!
|
10451
|
+
|
10452
|
+
"""Title of the metric."""
|
10453
|
+
title: String!
|
10454
|
+
|
10455
|
+
"""
|
10456
|
+
Description of main columns in report and summary. Note: report and summary can contain additional columns.
|
10457
|
+
"""
|
10458
|
+
columns: [ColumnObjectType!]
|
10459
|
+
|
10460
|
+
"""Info about applied filters."""
|
10461
|
+
filters: [FilterObjectType!]
|
10462
|
+
|
10463
|
+
"""Summary metrics across all payouts"""
|
10464
|
+
summary: JSONString
|
10465
|
+
|
10466
|
+
"""List of payout records"""
|
10467
|
+
report: [PayoutReportRowType!]
|
10468
|
+
}
|
10469
|
+
|
10470
|
+
type PayoutReportRowType {
|
10471
|
+
"""Payout ID"""
|
10472
|
+
id: String!
|
10473
|
+
created: DateTime!
|
10474
|
+
endDate: Date!
|
10475
|
+
status: String!
|
10476
|
+
name: String
|
10477
|
+
currency: String
|
10478
|
+
sellerCount: Int
|
10479
|
+
sales: Float
|
10480
|
+
discounts: Float
|
10481
|
+
shipping: Float
|
10482
|
+
commission: Float
|
10483
|
+
fees: Float
|
10484
|
+
refunds: Float
|
10485
|
+
adjustments: Float
|
10486
|
+
payout: Float
|
10487
|
+
}
|
10488
|
+
|
10489
|
+
type BigQueryOrdersBySellerReportType {
|
10490
|
+
"""Category of the metric."""
|
10491
|
+
category: String!
|
10492
|
+
|
10493
|
+
"""Title of the metric."""
|
10494
|
+
title: String!
|
10495
|
+
|
10496
|
+
"""
|
10497
|
+
Description of main columns in report and summary. Note: report and summary can contain additional columns.
|
10498
|
+
"""
|
10499
|
+
columns: [ColumnObjectType!]
|
10500
|
+
|
10501
|
+
"""Info about applied filters."""
|
10502
|
+
filters: [FilterObjectType!]
|
10503
|
+
|
10504
|
+
"""Summary metrics across all orders by seller"""
|
10505
|
+
summary: JSONString
|
10506
|
+
|
10507
|
+
"""List of order line records grouped by seller"""
|
10508
|
+
report: [OrderLineReportRowType!]
|
10509
|
+
}
|
10510
|
+
|
10511
|
+
type OrderLineReportRowType {
|
10512
|
+
tenantId: String!
|
10513
|
+
mpoOrderId: String!
|
10514
|
+
created: DateTime!
|
10515
|
+
updated: DateTime!
|
10516
|
+
orderLineId: String
|
10517
|
+
sellerId: String
|
10518
|
+
sellerName: String
|
10519
|
+
sellerOrderNumber: Int
|
10520
|
+
category: String
|
10521
|
+
variantName: String
|
10522
|
+
productName: String
|
10523
|
+
quantity: Int
|
10524
|
+
quantityFulfilled: Int
|
10525
|
+
quantityDeclined: Int
|
10526
|
+
currency: String
|
10527
|
+
unitPriceNetAmount: Float
|
10528
|
+
unitPriceGrossAmount: Float
|
10529
|
+
unitPriceTaxes: Float
|
10530
|
+
totalPriceGrossAmount: Float
|
10531
|
+
totalPriceNetAmount: Float
|
10532
|
+
totalPriceTaxes: Float
|
10533
|
+
brand: String
|
10534
|
+
variantSku: String
|
10535
|
+
}
|
10536
|
+
|
10537
|
+
type BigQueryNetSalesBySellerReportType {
|
10538
|
+
"""Category of the metric."""
|
10539
|
+
category: String!
|
10540
|
+
|
10541
|
+
"""Title of the metric."""
|
10542
|
+
title: String!
|
10543
|
+
|
10544
|
+
"""
|
10545
|
+
Description of main columns in report and summary. Note: report and summary can contain additional columns.
|
10546
|
+
"""
|
10547
|
+
columns: [ColumnObjectType!]
|
10548
|
+
|
10549
|
+
"""Info about applied filters."""
|
10550
|
+
filters: [FilterObjectType!]
|
10551
|
+
|
10552
|
+
"""Summary metrics across all net sales by seller"""
|
10553
|
+
summary: JSONString
|
10554
|
+
|
10555
|
+
"""List of net sales records grouped by seller"""
|
10556
|
+
report: [NetSalesBySellerType!]
|
10557
|
+
}
|
10558
|
+
|
10559
|
+
type NetSalesBySellerType {
|
10560
|
+
sellerId: String
|
10561
|
+
sellerName: String
|
10562
|
+
orderCount: Int
|
10563
|
+
totalSales: Float
|
10564
|
+
}
|
10565
|
+
|
10566
|
+
type BigQueryNetSalesByCategoryReportType {
|
10567
|
+
"""Category of the metric."""
|
10568
|
+
category: String!
|
10569
|
+
|
10570
|
+
"""Title of the metric."""
|
10571
|
+
title: String!
|
10572
|
+
|
10573
|
+
"""
|
10574
|
+
Description of main columns in report and summary. Note: report and summary can contain additional columns.
|
10575
|
+
"""
|
10576
|
+
columns: [ColumnObjectType!]
|
10577
|
+
|
10578
|
+
"""Info about applied filters."""
|
10579
|
+
filters: [FilterObjectType!]
|
10580
|
+
|
10581
|
+
"""Summary metrics across all net sales by category"""
|
10582
|
+
summary: JSONString
|
10583
|
+
|
10584
|
+
"""List of net sales records grouped by category"""
|
10585
|
+
report: [NetSalesByCategoryType!]
|
10586
|
+
}
|
10587
|
+
|
10588
|
+
type NetSalesByCategoryType {
|
10589
|
+
category: String
|
10590
|
+
totalSales: Float
|
10591
|
+
}
|
10592
|
+
|
10593
|
+
type BigQuerySellerOrdersReportType {
|
10594
|
+
"""Category of the metric."""
|
10595
|
+
category: String!
|
10596
|
+
|
10597
|
+
"""Title of the metric."""
|
10598
|
+
title: String!
|
10599
|
+
|
10600
|
+
"""
|
10601
|
+
Description of main columns in report and summary. Note: report and summary can contain additional columns.
|
10602
|
+
"""
|
10603
|
+
columns: [ColumnObjectType!]
|
10604
|
+
|
10605
|
+
"""Info about applied filters."""
|
10606
|
+
filters: [FilterObjectType!]
|
10607
|
+
summary: JSONString
|
10608
|
+
|
10609
|
+
"""List of seller order records"""
|
10610
|
+
report: [SellerOrderReportRowType!]
|
10611
|
+
}
|
10612
|
+
|
10613
|
+
type SellerOrderReportRowType {
|
10614
|
+
sellerOrderNumber: String!
|
10615
|
+
sellerName: String!
|
10616
|
+
mpoOrderNumber: String!
|
10617
|
+
created: DateTime
|
10618
|
+
updated: DateTime
|
10619
|
+
status: String
|
10620
|
+
subStatus: String
|
10621
|
+
firstName: String
|
10622
|
+
lastName: String
|
10623
|
+
companyName: String
|
10624
|
+
stateProv: String
|
10625
|
+
country: String
|
10626
|
+
totalNetAmount: Float
|
10627
|
+
totalGrossAmount: Float
|
10628
|
+
totalTaxes: Float
|
10629
|
+
shippingGrossAmount: Float
|
10630
|
+
shippingNetAmount: Float
|
10631
|
+
shippingTaxes: Float
|
10632
|
+
currency: String
|
10633
|
+
}
|
10634
|
+
|
10635
|
+
type BigQueryThirtySixtyNinetyReportType {
|
10636
|
+
"""Category of the metric."""
|
10637
|
+
category: String!
|
10638
|
+
|
10639
|
+
"""Title of the metric."""
|
10640
|
+
title: String!
|
10641
|
+
|
10642
|
+
"""
|
10643
|
+
Description of main columns in report and summary. Note: report and summary can contain additional columns.
|
10644
|
+
"""
|
10645
|
+
columns: [ColumnObjectType!]
|
10646
|
+
|
10647
|
+
"""Info about applied filters."""
|
10648
|
+
filters: [FilterObjectType!]
|
10649
|
+
summary: JSONString
|
10650
|
+
|
10651
|
+
"""List of Variant 30-60-90 Day Sales"""
|
10652
|
+
report: [ThirtySixtyNinetySellerReportRowType!]
|
10653
|
+
}
|
10654
|
+
|
10655
|
+
type ThirtySixtyNinetySellerReportRowType {
|
10656
|
+
tenantId: String
|
10657
|
+
variantId: String
|
10658
|
+
productName: String
|
10659
|
+
variantName: String
|
10660
|
+
brand: String
|
10661
|
+
variantSku: String
|
10662
|
+
variantStatus: String
|
10663
|
+
variantSubstatus: String
|
10664
|
+
sellerName: String
|
10665
|
+
sellerId: String
|
10666
|
+
currentquantity: Int
|
10667
|
+
currentquantityallocated: Int
|
10668
|
+
currentquantityavailable: Int
|
10669
|
+
sales0to30quantityordered: Int
|
10670
|
+
sales0to30quantityfulfilled: Int
|
10671
|
+
sales0to30quantitydeclined: Int
|
10672
|
+
sales0to30amount: Float
|
10673
|
+
sales31to60quantityordered: Int
|
10674
|
+
sales31to60quantityfulfilled: Int
|
10675
|
+
sales31to60quantitydeclined: Int
|
10676
|
+
sales31to60amount: Float
|
10677
|
+
sales61to90quantityordered: Int
|
10678
|
+
sales61to90quantityfulfilled: Int
|
10679
|
+
sales61to90quantitydeclined: Int
|
10680
|
+
sales61to90amount: Float
|
10681
|
+
}
|
10682
|
+
|
10683
|
+
type BigQuerySellerPayoutReportType {
|
10684
|
+
"""Category of the metric."""
|
10685
|
+
category: String!
|
10686
|
+
|
10687
|
+
"""Title of the metric."""
|
10688
|
+
title: String!
|
10689
|
+
|
10690
|
+
"""
|
10691
|
+
Description of main columns in report and summary. Note: report and summary can contain additional columns.
|
10692
|
+
"""
|
10693
|
+
columns: [ColumnObjectType!]
|
10694
|
+
|
10695
|
+
"""Info about applied filters."""
|
10696
|
+
filters: [FilterObjectType!]
|
10697
|
+
summary: JSONString
|
10698
|
+
|
10699
|
+
"""List of seller payout records"""
|
10700
|
+
report: [SellerPayoutRowType!]
|
10701
|
+
}
|
10702
|
+
|
10703
|
+
type SellerPayoutRowType {
|
10704
|
+
tenantId: String!
|
10705
|
+
sellerId: String!
|
10706
|
+
id: String!
|
10707
|
+
payoutId: String!
|
10708
|
+
created: DateTime!
|
10709
|
+
included: Boolean
|
10710
|
+
status: String
|
10711
|
+
currency: String
|
10712
|
+
sales: Float
|
10713
|
+
discounts: Float
|
10714
|
+
shipping: Float
|
10715
|
+
commission: Float
|
10716
|
+
fees: Float
|
10717
|
+
refunds: Float
|
10718
|
+
adjustments: Float
|
10719
|
+
payout: Float
|
10720
|
+
}
|
10721
|
+
|
10722
|
+
type BigQueryVariantListReportType {
|
10723
|
+
"""Category of the metric."""
|
10724
|
+
category: String!
|
10725
|
+
|
10726
|
+
"""Title of the metric."""
|
10727
|
+
title: String!
|
10728
|
+
|
10729
|
+
"""
|
10730
|
+
Description of main columns in report and summary. Note: report and summary can contain additional columns.
|
10731
|
+
"""
|
10732
|
+
columns: [ColumnObjectType!]
|
10733
|
+
|
10734
|
+
"""Info about applied filters."""
|
10735
|
+
filters: [FilterObjectType!]
|
10736
|
+
summary: JSONString
|
10737
|
+
|
10738
|
+
"""List of product variants"""
|
10739
|
+
report: [VariantListType!]
|
10740
|
+
}
|
10741
|
+
|
10742
|
+
type VariantListType {
|
10743
|
+
productId: String
|
10744
|
+
productName: String
|
10745
|
+
variantId: String
|
10746
|
+
variantName: String
|
10747
|
+
variantSku: String
|
10748
|
+
category: String
|
10749
|
+
created: DateTime
|
10750
|
+
updated: DateTime
|
10751
|
+
status: String
|
10752
|
+
substatus: String
|
10753
|
+
price: Float
|
10754
|
+
cost: Float
|
10755
|
+
currency: String
|
10756
|
+
trackInventory: Boolean
|
10757
|
+
allowBackorders: Boolean
|
10758
|
+
weight: Float
|
10759
|
+
isPublished: Boolean
|
10760
|
+
sellerName: String
|
10761
|
+
warehouseName: String
|
10762
|
+
quantity: Int
|
10763
|
+
quantityAllocated: Int
|
10764
|
+
quantityAvailable: Int
|
10765
|
+
sellerId: String
|
10766
|
+
}
|
10767
|
+
|
10199
10768
|
type InReportTopPerformingProductsType {
|
10200
10769
|
"""Category of the metric."""
|
10201
10770
|
category: String!
|
@@ -11257,7 +11826,7 @@ type Mutation {
|
|
11257
11826
|
description: String
|
11258
11827
|
|
11259
11828
|
"""
|
11260
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/tiff,
|
11829
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/tiff, text/csv, image/x-bmp, image/vnd.dwg, application/msword, image/jpeg, application/vnd.oasis.opendocument.presentation, text/comma-separated-values, application/x-jpg, application/dxf, image/x-eps, image/jpg, application/svg+xml, image/x-dxf, application/vnd.oasis.opendocument.text, application/x-rar-compressed, image/svg, application/csv, image/heic-sequence, text/pdf, application/x-csv, application/x-zip-compressed, drawing/x-dwf, image/png, application/tiff, drawing/x-dwg, application/vnd.pdf, application/acrobat, application/acad, application/rtf, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/dxf, application/x-tar, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/gzipped, text/svg, image/x-dwg, image/heif, image/heic, text/x-pdf, application/x-pdf, drawing/dwg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/gif, application/vnd.ms-excel, image/bmp, application/gzip-compressed, application/eps, text/svg-xml, application/x-rtf, image/x-ms-bmp, application/vnd.ms-word, application/x-gzip, application/dwg, application/jpg, text/plain, application/pdf, image/x-tiff, application/x-dxf, text/x-comma-separated-values, image/x-tif, application/x-eps, application/vnd.ms-powerpoint, image/heif-sequence, image/eps, image/tif, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/postscript, text/x-csv, application/tif, application/excel, application/x-autocad, application/vnd.oasis.opendocument.spreadsheet, application/zip, pplication/vnd.rar, application/x-tiff, image/svg+xml, application/x-dwg, application/gzip, image/webp, application/x-acad, application/x-tif, application/x-rar, text/rtf.
|
11261
11830
|
"""
|
11262
11831
|
file: Upload!
|
11263
11832
|
|
@@ -19578,7 +20147,10 @@ input ExportProductsInput {
|
|
19578
20147
|
ids: [ID!]
|
19579
20148
|
|
19580
20149
|
"""Input with info about fields which should be exported."""
|
19581
|
-
exportInfo: ExportInfoInput
|
20150
|
+
exportInfo: ExportInfoInput @deprecated(reason: "This will be removed on October 8, 2025.")
|
20151
|
+
|
20152
|
+
"""List of product fields witch should be exported."""
|
20153
|
+
fields: [ProductFieldEnum!]
|
19582
20154
|
|
19583
20155
|
"""Type of exported file."""
|
19584
20156
|
fileType: FileTypesEnum!
|