@nautical-commerce/graphql-schema 1.88.0-3-g03b552cc1 → 1.88.0-5-g4666f0d36
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 +63 -2
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -11355,7 +11355,7 @@ type Mutation {
|
|
11355
11355
|
description: String
|
11356
11356
|
|
11357
11357
|
"""
|
11358
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
11358
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: drawing/x-dwf, image/x-eps, image/vnd.dwg, image/x-dxf, application/excel, application/postscript, image/x-bmp, image/tif, application/x-gzip, application/x-acad, image/jpg, application/vnd.oasis.opendocument.spreadsheet, application/x-rar-compressed, drawing/dwg, image/svg+xml, image/x-dwg, text/plain, application/eps, text/comma-separated-values, text/csv, application/msword, image/eps, text/x-csv, application/tif, application/x-tar, application/jpg, application/x-dwg, image/svg, drawing/x-dwg, application/csv, image/jpeg, image/heif-sequence, image/heic, application/x-pdf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, text/rtf, application/gzip-compressed, application/x-tif, application/x-jpg, application/dwg, text/x-comma-separated-values, application/vnd.ms-powerpoint, application/tiff, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-rtf, application/x-rar, application/rtf, image/x-tiff, application/x-dxf, application/dxf, application/vnd.pdf, application/x-autocad, image/heic-sequence, application/acad, text/pdf, application/x-eps, application/x-zip-compressed, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.oasis.opendocument.presentation, application/vnd.ms-word, application/gzip, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/svg-xml, application/svg+xml, image/webp, text/svg, application/acrobat, text/x-pdf, application/gzipped, application/zip, application/vnd.oasis.opendocument.text, pplication/vnd.rar, application/pdf, application/vnd.ms-excel, image/png, image/gif, image/tiff, image/bmp, application/x-csv, image/x-tif, image/x-ms-bmp, application/x-tiff, image/heif, image/dxf.
|
11359
11359
|
"""
|
11360
11360
|
file: Upload!
|
11361
11361
|
|
@@ -19825,21 +19825,82 @@ input ExportInfoInput {
|
|
19825
19825
|
}
|
19826
19826
|
|
19827
19827
|
enum ProductFieldEnum {
|
19828
|
+
"""ID"""
|
19829
|
+
ID
|
19830
|
+
|
19831
|
+
"""Name"""
|
19828
19832
|
NAME
|
19833
|
+
|
19834
|
+
"""Description"""
|
19829
19835
|
DESCRIPTION
|
19836
|
+
|
19837
|
+
"""Product type"""
|
19830
19838
|
PRODUCT_TYPE
|
19839
|
+
|
19840
|
+
"""Product template"""
|
19841
|
+
PRODUCT_TEMPLATE
|
19842
|
+
|
19843
|
+
"""Seller"""
|
19844
|
+
SELLER
|
19845
|
+
|
19846
|
+
"""Category"""
|
19831
19847
|
CATEGORY
|
19848
|
+
|
19849
|
+
"""Visible"""
|
19832
19850
|
VISIBLE
|
19851
|
+
|
19852
|
+
"""Available for purchase"""
|
19833
19853
|
AVAILABLE_FOR_PURCHASE
|
19854
|
+
|
19855
|
+
"""Searchable"""
|
19834
19856
|
SEARCHABLE
|
19857
|
+
|
19858
|
+
"""Product weight"""
|
19835
19859
|
PRODUCT_WEIGHT
|
19860
|
+
|
19861
|
+
"""Product dimensions"""
|
19862
|
+
PRODUCT_DIMENSIONS
|
19863
|
+
|
19864
|
+
"""Collections"""
|
19836
19865
|
COLLECTIONS
|
19866
|
+
|
19867
|
+
"""Charge taxes"""
|
19837
19868
|
CHARGE_TAXES
|
19869
|
+
|
19870
|
+
"""Product images"""
|
19838
19871
|
PRODUCT_IMAGES
|
19872
|
+
|
19873
|
+
"""URL handle"""
|
19874
|
+
URL_HANDLE
|
19875
|
+
|
19876
|
+
"""SEO title"""
|
19877
|
+
SEO_TITLE
|
19878
|
+
|
19879
|
+
"""SEO description"""
|
19880
|
+
SEO_DESCRIPTION
|
19881
|
+
|
19882
|
+
"""Variant name"""
|
19883
|
+
VARIANT_NAME
|
19884
|
+
|
19885
|
+
"""Variant SKU"""
|
19839
19886
|
VARIANT_SKU
|
19887
|
+
|
19888
|
+
"""Variant price"""
|
19840
19889
|
VARIANT_PRICE
|
19841
|
-
|
19890
|
+
|
19891
|
+
"""Variant cost price"""
|
19892
|
+
VARIANT_COST_PRICE
|
19893
|
+
|
19894
|
+
"""Variant currency"""
|
19895
|
+
VARIANT_CURRENCY
|
19896
|
+
|
19897
|
+
"""Variant weight"""
|
19842
19898
|
VARIANT_WEIGHT
|
19899
|
+
|
19900
|
+
"""Variant dimensions"""
|
19901
|
+
VARIANT_DIMENSIONS
|
19902
|
+
|
19903
|
+
"""Variant images"""
|
19843
19904
|
VARIANT_IMAGES
|
19844
19905
|
}
|
19845
19906
|
|