@nautical-commerce/graphql-schema 4.2.1 → 4.2.2
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 +5 -3
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
|
@@ -16080,9 +16080,6 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
|
16080
16080
|
"""Whether to track inventory for this variant"""
|
|
16081
16081
|
trackInventory: Boolean!
|
|
16082
16082
|
|
|
16083
|
-
"""Currency code for pricing"""
|
|
16084
|
-
currency: String!
|
|
16085
|
-
|
|
16086
16083
|
"""Whether to override the default currency"""
|
|
16087
16084
|
overrideCurrency: Boolean!
|
|
16088
16085
|
|
|
@@ -16144,6 +16141,11 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
|
16144
16141
|
"""
|
|
16145
16142
|
timeline(kinds: [TimelineEntryKind!] = null): [TimelineEntry!]!
|
|
16146
16143
|
|
|
16144
|
+
"""
|
|
16145
|
+
Currency code for pricing. Falls back to the parent product's currency when the variant has none of its own.
|
|
16146
|
+
"""
|
|
16147
|
+
currency: String!
|
|
16148
|
+
|
|
16147
16149
|
"""Status of the variant"""
|
|
16148
16150
|
status: ProductVariantStatus!
|
|
16149
16151
|
|