@nautical-commerce/graphql-schema 1.81.0-32-gcae3736c9 → 1.81.0-34-gb5a469375
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 +64 -1
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -1701,6 +1701,33 @@ type Query {
|
|
1701
1701
|
contentType: CustomFieldTemplateEnum
|
1702
1702
|
): CustomFieldTemplate
|
1703
1703
|
|
1704
|
+
"""List of all attribute values"""
|
1705
|
+
attributeValues(
|
1706
|
+
"""Filtering options for attribute values."""
|
1707
|
+
filter: AttributeValueFilterInput
|
1708
|
+
|
1709
|
+
"""Sorting options for attribute values."""
|
1710
|
+
sortBy: AttributeValueSortingInput
|
1711
|
+
|
1712
|
+
"""Return the elements in the list that come before the specified cursor."""
|
1713
|
+
before: String
|
1714
|
+
|
1715
|
+
"""Return the elements in the list that come after the specified cursor."""
|
1716
|
+
after: String
|
1717
|
+
|
1718
|
+
"""Return the first n elements from the list."""
|
1719
|
+
first: Int
|
1720
|
+
|
1721
|
+
"""Return the last n elements from the list."""
|
1722
|
+
last: Int
|
1723
|
+
): AttributeValueCountableConnection
|
1724
|
+
|
1725
|
+
"""Look up an attribute value by ID."""
|
1726
|
+
attributeValue(
|
1727
|
+
"""ID of the attribute value."""
|
1728
|
+
id: ID!
|
1729
|
+
): AttributeValue
|
1730
|
+
|
1704
1731
|
"""List of the apps."""
|
1705
1732
|
apps(
|
1706
1733
|
"""Filtering options for apps."""
|
@@ -11929,6 +11956,42 @@ enum CustomFieldTemplateEnum {
|
|
11929
11956
|
FULFILLMENT
|
11930
11957
|
}
|
11931
11958
|
|
11959
|
+
type AttributeValueCountableConnection {
|
11960
|
+
"""Pagination data for this connection."""
|
11961
|
+
pageInfo: PageInfo!
|
11962
|
+
edges: [AttributeValueCountableEdge!]!
|
11963
|
+
|
11964
|
+
"""A total count of items in the collection."""
|
11965
|
+
totalCount: Int
|
11966
|
+
}
|
11967
|
+
|
11968
|
+
type AttributeValueCountableEdge {
|
11969
|
+
"""The item at the end of the edge."""
|
11970
|
+
node: AttributeValue!
|
11971
|
+
|
11972
|
+
"""A cursor for use in pagination."""
|
11973
|
+
cursor: String!
|
11974
|
+
}
|
11975
|
+
|
11976
|
+
input AttributeValueFilterInput {
|
11977
|
+
attributeIds: [ID]
|
11978
|
+
search: String
|
11979
|
+
}
|
11980
|
+
|
11981
|
+
input AttributeValueSortingInput {
|
11982
|
+
"""Specifies the direction in which to sort products."""
|
11983
|
+
direction: OrderDirection!
|
11984
|
+
|
11985
|
+
"""Sort attribute_values by the selected field."""
|
11986
|
+
field: AttributeValueSortField!
|
11987
|
+
}
|
11988
|
+
|
11989
|
+
enum AttributeValueSortField {
|
11990
|
+
SORT_ORDER
|
11991
|
+
NAME
|
11992
|
+
SLUG
|
11993
|
+
}
|
11994
|
+
|
11932
11995
|
type AppCountableConnection {
|
11933
11996
|
"""Pagination data for this connection."""
|
11934
11997
|
pageInfo: PageInfo!
|
@@ -12132,7 +12195,7 @@ type Mutation {
|
|
12132
12195
|
description: String
|
12133
12196
|
|
12134
12197
|
"""
|
12135
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/
|
12198
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/tiff, application/acad, application/dwg, image/jpg, drawing/dwg, image/heif-sequence, image/vnd.dwg, application/x-autocad, application/vnd.oasis.opendocument.presentation, application/x-pdf, application/vnd.oasis.opendocument.text, application/gzip, application/vnd.ms-word, application/vnd.ms-excel, image/heic-sequence, image/x-tif, application/jpg, application/dxf, image/gif, application/x-tiff, image/dxf, application/svg+xml, image/x-dwg, text/pdf, image/eps, image/x-dxf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, text/svg, application/pdf, text/x-comma-separated-values, application/postscript, application/x-zip-compressed, application/x-rar-compressed, application/rtf, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/zip, application/acrobat, application/vnd.pdf, image/heif, application/vnd.ms-powerpoint, pplication/vnd.rar, application/x-jpg, application/gzip-compressed, application/excel, image/x-tiff, application/tif, drawing/x-dwg, image/x-eps, image/heic, application/x-acad, text/comma-separated-values, application/x-dxf, drawing/x-dwf, application/vnd.oasis.opendocument.spreadsheet, image/x-ms-bmp, text/rtf, application/msword, image/x-bmp, image/bmp, image/tif, application/x-dwg, application/vnd.openxmlformats-officedocument.presentationml.slideshow, text/csv, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/webp, image/png, application/x-tar, application/x-tif, image/jpeg, text/x-pdf, text/plain, application/x-rtf, image/svg+xml, image/svg, application/x-csv, application/tiff, text/x-csv, application/x-rar, application/eps, application/gzipped, application/x-eps, application/csv, text/svg-xml, application/x-gzip.
|
12136
12199
|
"""
|
12137
12200
|
file: Upload!
|
12138
12201
|
|