@nautical-commerce/graphql-schema 4.12.0 → 4.12.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 +6 -0
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
|
@@ -16135,6 +16135,11 @@ input ProductFilterInput {
|
|
|
16135
16135
|
metadata: MetadataFilterInput
|
|
16136
16136
|
privateMetadata: MetadataFilterInput
|
|
16137
16137
|
subStatus: ProductSubStatusEnum
|
|
16138
|
+
|
|
16139
|
+
"""
|
|
16140
|
+
Match the product's OWN fulfillment_kind column. That column is a waterfall DEFAULT applied to variants that omit a kind, NOT an aggregate over them — explicit variant input wins, so a shipment product can own a digital_file variant. This is therefore not 'products having a variant of this kind'; filter productVariants for that.
|
|
16141
|
+
"""
|
|
16142
|
+
fulfillmentKind: [FulfillmentKind!]
|
|
16138
16143
|
hasWarnings: Boolean
|
|
16139
16144
|
hasCategory: Boolean
|
|
16140
16145
|
slug: [String!]
|
|
@@ -17484,6 +17489,7 @@ input ProductVariantFilterInput {
|
|
|
17484
17489
|
metadata: MetadataFilterInput
|
|
17485
17490
|
privateMetadata: MetadataFilterInput
|
|
17486
17491
|
subStatus: ProductVariantSubStatusEnum
|
|
17492
|
+
fulfillmentKind: [FulfillmentKind!]
|
|
17487
17493
|
createdAt: DateTimeRangeInput
|
|
17488
17494
|
updatedAt: DateTimeRangeInput
|
|
17489
17495
|
isStaff: Boolean
|