@nautical-commerce/graphql-schema 3.8.0 → 3.9.1
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 +12 -4
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
|
@@ -1488,7 +1488,7 @@ type Attribute implements Node & ObjectWithMetadata {
|
|
|
1488
1488
|
inputType: AttributeInputTypeEnum!
|
|
1489
1489
|
|
|
1490
1490
|
"""The values available for this attribute"""
|
|
1491
|
-
values: [AttributeValue!]!
|
|
1491
|
+
values(search: String = null, first: Int = null): [AttributeValue!]!
|
|
1492
1492
|
|
|
1493
1493
|
"""Seller who created this attribute, if any"""
|
|
1494
1494
|
createdBy: Seller
|
|
@@ -13723,6 +13723,11 @@ type Product implements Node & ObjectWithMetadata {
|
|
|
13723
13723
|
"""Returns the items in the list that come after the specified cursor."""
|
|
13724
13724
|
last: Int = null
|
|
13725
13725
|
): ShopifyWebhookTransactionCountableConnection!
|
|
13726
|
+
|
|
13727
|
+
"""
|
|
13728
|
+
Products customers commonly bought alongside this one, ranked by quantity-weighted co-purchase score across the last year of orders. Results are cached per (tenant, product, limit) with a 15-minute TTL.
|
|
13729
|
+
"""
|
|
13730
|
+
recommendedProducts(limit: Int! = 6): [Product!]!
|
|
13726
13731
|
}
|
|
13727
13732
|
|
|
13728
13733
|
"""Available actions for a product"""
|
|
@@ -16460,7 +16465,7 @@ type Query {
|
|
|
16460
16465
|
"""
|
|
16461
16466
|
vendorPayoutList(vendorId: ID = null): SingleVendorPayoutReport
|
|
16462
16467
|
|
|
16463
|
-
"""
|
|
16468
|
+
"""List of active payment gateways that have payouts enabled."""
|
|
16464
16469
|
getPayoutGateways: [PaymentGateway!]!
|
|
16465
16470
|
|
|
16466
16471
|
"""Look up a voucher by ID. Requires MANAGE_DISCOUNTS permission."""
|
|
@@ -16676,7 +16681,7 @@ type Query {
|
|
|
16676
16681
|
last: Int = null
|
|
16677
16682
|
): WebhookJobCountableConnection!
|
|
16678
16683
|
|
|
16679
|
-
"""List Shopify webhook transactions.
|
|
16684
|
+
"""List Shopify webhook transactions."""
|
|
16680
16685
|
shopifyWebhookTransactions(
|
|
16681
16686
|
sellerId: ID = null
|
|
16682
16687
|
filter: ShopifyWebhookTransactionFilterInput = null
|
|
@@ -17013,7 +17018,7 @@ type Query {
|
|
|
17013
17018
|
"""Debug information (SQL queries, exceptions)."""
|
|
17014
17019
|
_debug: DjangoDebug
|
|
17015
17020
|
|
|
17016
|
-
"""List events."""
|
|
17021
|
+
"""List of all events for the given object."""
|
|
17017
17022
|
events(id: ID = null): [Event!]!
|
|
17018
17023
|
|
|
17019
17024
|
"""Get client secret for payment gateway."""
|
|
@@ -18257,6 +18262,8 @@ type Seller implements Node & ObjectWithMetadata {
|
|
|
18257
18262
|
|
|
18258
18263
|
"""Products for this seller"""
|
|
18259
18264
|
products(
|
|
18265
|
+
filter: ProductFilterInput
|
|
18266
|
+
|
|
18260
18267
|
"""Returns the items in the list that come before the specified cursor."""
|
|
18261
18268
|
before: String = null
|
|
18262
18269
|
|
|
@@ -18789,6 +18796,7 @@ input SellerFilterInput {
|
|
|
18789
18796
|
created: DateRangeInput
|
|
18790
18797
|
storefront: Boolean
|
|
18791
18798
|
isMarketplaceSeller: Boolean
|
|
18799
|
+
hasCrossSellProducts: Boolean
|
|
18792
18800
|
metadata: MetadataFilterInput
|
|
18793
18801
|
privateMetadata: MetadataFilterInput
|
|
18794
18802
|
ids: [ID]
|