@nautical-commerce/graphql-schema 1.89.0-23-g042278943 → 1.89.0-24-g626dc76f1
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 +26 -7
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -11239,7 +11239,7 @@ type Mutation {
|
|
11239
11239
|
description: String
|
11240
11240
|
|
11241
11241
|
"""
|
11242
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
11242
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/bmp, image/x-bmp, application/gzip-compressed, application/vnd.ms-word, image/tiff, application/acrobat, application/x-tiff, application/acad, application/vnd.oasis.opendocument.text, image/jpg, application/vnd.oasis.opendocument.presentation, image/svg+xml, image/heif-sequence, image/x-dwg, application/gzipped, application/dwg, pplication/vnd.rar, drawing/dwg, image/gif, application/dxf, application/vnd.ms-powerpoint, text/plain, image/x-tiff, application/x-rtf, text/csv, drawing/x-dwg, application/pdf, text/x-csv, application/x-rar, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/x-tif, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-jpg, application/gzip, application/x-pdf, application/x-dwg, application/tiff, application/eps, application/vnd.oasis.opendocument.spreadsheet, image/jpeg, application/x-rar-compressed, image/heif, image/dxf, text/comma-separated-values, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/msword, application/x-csv, text/x-pdf, text/x-comma-separated-values, application/x-tif, image/vnd.dwg, application/x-autocad, application/tif, application/vnd.pdf, application/vnd.ms-excel, image/x-ms-bmp, application/jpg, application/x-zip-compressed, application/x-acad, image/tif, application/x-tar, application/zip, application/postscript, text/pdf, image/heic-sequence, application/excel, image/svg, image/png, application/x-dxf, application/rtf, application/csv, image/x-eps, text/svg, image/x-dxf, text/rtf, image/heic, image/eps, image/webp, application/x-gzip, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/svg+xml, drawing/x-dwf, application/x-eps, text/svg-xml.
|
11243
11243
|
"""
|
11244
11244
|
file: Upload!
|
11245
11245
|
|
@@ -13667,16 +13667,28 @@ type Mutation {
|
|
13667
13667
|
|
13668
13668
|
"""Un-assign attributes from a given product type."""
|
13669
13669
|
attributeUnassign(
|
13670
|
-
"""The IDs of the attributes to
|
13670
|
+
"""The IDs of the attributes to unassign."""
|
13671
13671
|
attributeIds: [ID!]!
|
13672
13672
|
|
13673
|
-
"""ID of the product to which the attribute will be
|
13673
|
+
"""ID of the product to which the attribute will be unassigned."""
|
13674
13674
|
productId: ID
|
13675
13675
|
|
13676
|
-
"""ID of the product type to
|
13677
|
-
productTypeId: ID
|
13676
|
+
"""ID of the product type to unassign the attributes from."""
|
13677
|
+
productTypeId: ID @deprecated(reason: "Use AttributeUnassignFromProductType mutation instead to unassign attributes from product type. This will be removed on September 27, 2025.")
|
13678
13678
|
): AttributeUnassign
|
13679
13679
|
|
13680
|
+
"""Un-assign attributes from a given product type."""
|
13681
|
+
attributeUnassignFromProductType(
|
13682
|
+
"""The IDs of the product attributes to unassign."""
|
13683
|
+
productAttributeIds: [ID!]
|
13684
|
+
|
13685
|
+
"""ID of the product type to unassign the attributes from."""
|
13686
|
+
productTypeId: ID!
|
13687
|
+
|
13688
|
+
"""The IDs of the variant attributes to unassign."""
|
13689
|
+
variantAttributeIds: [ID!]
|
13690
|
+
): AttributeUnassignFromProductType
|
13691
|
+
|
13680
13692
|
"""Updates attribute."""
|
13681
13693
|
attributeUpdate(
|
13682
13694
|
"""ID of an attribute to update."""
|
@@ -20061,13 +20073,20 @@ input AttributeAssignInput {
|
|
20061
20073
|
"""Un-assign attributes from a given product type."""
|
20062
20074
|
type AttributeUnassign {
|
20063
20075
|
"""The updated product type."""
|
20064
|
-
productType: ProductType
|
20076
|
+
productType: ProductType @deprecated(reason: "Use AttributeUnassignFromProductType mutation instead to unassign attributes from product type. This will be removed on September 27, 2025.")
|
20065
20077
|
|
20066
|
-
"""The product to which the attribute was
|
20078
|
+
"""The product to which the attribute was unassigned."""
|
20067
20079
|
product: Product
|
20068
20080
|
productErrors: [ProductError!]!
|
20069
20081
|
}
|
20070
20082
|
|
20083
|
+
"""Un-assign attributes from a given product type."""
|
20084
|
+
type AttributeUnassignFromProductType {
|
20085
|
+
"""The updated product type."""
|
20086
|
+
productType: ProductType
|
20087
|
+
productErrors: [ProductError!]!
|
20088
|
+
}
|
20089
|
+
|
20071
20090
|
"""Updates attribute."""
|
20072
20091
|
type AttributeUpdate {
|
20073
20092
|
attribute: Attribute
|