@nautical-commerce/graphql-schema 1.94.0-5-g2d78ddbd7 → 1.94.0-7-g8ba1863d2
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 +70 -12
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -1156,20 +1156,45 @@ type Query {
|
|
1156
1156
|
"""Returns a table of all customers for a given tenant"""
|
1157
1157
|
bigqueryCustomers(
|
1158
1158
|
"""The number of rows to return, at most 100."""
|
1159
|
-
first: Int
|
1159
|
+
first: Int = 100
|
1160
1160
|
|
1161
1161
|
"""The number of rows to skip."""
|
1162
|
-
offset: Int
|
1162
|
+
offset: Int = 0
|
1163
1163
|
|
1164
|
-
"""Column to sort by
|
1164
|
+
"""Column to sort by"""
|
1165
1165
|
sortby: String
|
1166
1166
|
): BigQueryCustomerReportType
|
1167
1167
|
|
1168
1168
|
"""Returns a list of payouts for a tenant"""
|
1169
|
-
bigqueryPayouts(
|
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
|
1170
1182
|
|
1171
1183
|
"""Returns a list of order line items for a tenant"""
|
1172
|
-
bigqueryOrderLineItems(
|
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
|
1173
1198
|
|
1174
1199
|
"""Returns net sales by seller for a tenant"""
|
1175
1200
|
bigqueryNetSalesBySeller(sellerId: Int, startDate: Date, endDate: Date): BigQueryNetSalesBySellerReportType
|
@@ -1178,25 +1203,58 @@ type Query {
|
|
1178
1203
|
bigqueryNetSalesByCategory(sellerId: Int, startDate: Date, endDate: Date): BigQueryNetSalesByCategoryReportType
|
1179
1204
|
|
1180
1205
|
"""Returns a list of seller orders for a given tenant and seller"""
|
1181
|
-
bigquerySellerOrders(
|
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
|
1182
1220
|
|
1183
1221
|
"""Returns seller 30-60-90 day sales"""
|
1184
|
-
bigqueryThirtySixtyNinety(
|
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
|
1185
1234
|
|
1186
1235
|
"""Returns a list of seller payouts for a given tenant and seller"""
|
1187
|
-
bigquerySellerPayouts
|
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
|
1188
1246
|
|
1189
1247
|
"""Returns a list of product variants for a given tenant"""
|
1190
1248
|
bigqueryVariantList(
|
1191
1249
|
sellerId: Int
|
1192
1250
|
|
1193
1251
|
"""The number of rows to return, at most 100."""
|
1194
|
-
first: Int
|
1252
|
+
first: Int = 100
|
1195
1253
|
|
1196
1254
|
"""The number of rows to skip."""
|
1197
|
-
offset: Int
|
1255
|
+
offset: Int = 0
|
1198
1256
|
|
1199
|
-
"""Column to sort by
|
1257
|
+
"""Column to sort by"""
|
1200
1258
|
sortby: String
|
1201
1259
|
): BigQueryVariantListReportType
|
1202
1260
|
insightsTopPerformingProducts(
|
@@ -11767,7 +11825,7 @@ type Mutation {
|
|
11767
11825
|
description: String
|
11768
11826
|
|
11769
11827
|
"""
|
11770
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/
|
11828
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/x-bmp, application/vnd.ms-excel, application/x-jpg, application/x-tiff, image/tiff, pplication/vnd.rar, application/x-eps, application/dwg, drawing/x-dwg, application/tiff, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/jpg, application/x-autocad, image/gif, application/x-csv, image/x-ms-bmp, application/eps, text/svg-xml, image/png, application/acad, application/x-rtf, text/x-csv, image/dxf, drawing/dwg, image/heif-sequence, image/jpeg, application/x-acad, application/x-pdf, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/x-pdf, image/x-tif, image/vnd.dwg, image/x-tiff, application/x-tif, application/dxf, application/csv, application/svg+xml, image/x-dwg, application/zip, image/heic-sequence, image/svg, application/jpg, application/x-dwg, application/acrobat, application/postscript, application/vnd.ms-word, application/x-rar-compressed, text/rtf, text/x-comma-separated-values, application/x-gzip, application/gzip, application/tif, application/x-zip-compressed, application/x-dxf, text/pdf, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/rtf, application/vnd.pdf, image/eps, application/gzip-compressed, drawing/x-dwf, image/heic, text/comma-separated-values, image/heif, image/svg+xml, text/svg, text/plain, application/vnd.ms-powerpoint, application/gzipped, application/x-tar, application/msword, application/excel, application/vnd.oasis.opendocument.spreadsheet, application/pdf, application/vnd.oasis.opendocument.presentation, image/webp, image/tif, image/x-eps, application/vnd.oasis.opendocument.text, image/bmp, image/x-dxf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, text/csv, application/x-rar.
|
11771
11829
|
"""
|
11772
11830
|
file: Upload!
|
11773
11831
|
|