@nautical-commerce/graphql-schema 1.66.0-5-ga832f7f09 → 1.66.0-7-gdd9a0e711
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 +62 -414
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -641,9 +641,6 @@ type Query {
|
|
641
641
|
"""
|
642
642
|
identifier: ID
|
643
643
|
|
644
|
-
"""Microsite ID to filter by"""
|
645
|
-
microsite: ID
|
646
|
-
|
647
644
|
"""Return the elements in the list that come before the specified cursor."""
|
648
645
|
before: String
|
649
646
|
|
@@ -1471,42 +1468,6 @@ type Query {
|
|
1471
1468
|
"""Return all nautical configuration items"""
|
1472
1469
|
nauticalConfigurationList: [NauticalConfiguration!]
|
1473
1470
|
|
1474
|
-
"""Look up a microsite by ID or slug"""
|
1475
|
-
microsite(
|
1476
|
-
"""ID of the microsite."""
|
1477
|
-
id: ID
|
1478
|
-
|
1479
|
-
"""Slug of the microsite"""
|
1480
|
-
slug: String
|
1481
|
-
): Microsite @deprecated(reason: "Microsites will be removed on January 2, 2025.")
|
1482
|
-
|
1483
|
-
"""List of microsites"""
|
1484
|
-
microsites(
|
1485
|
-
"""Filtering options for microsites"""
|
1486
|
-
filter: MicrositeFilterInput
|
1487
|
-
|
1488
|
-
"""Sort microsites"""
|
1489
|
-
sortBy: MicrositeSortingInput
|
1490
|
-
|
1491
|
-
"""Return the elements in the list that come before the specified cursor."""
|
1492
|
-
before: String
|
1493
|
-
|
1494
|
-
"""Return the elements in the list that come after the specified cursor."""
|
1495
|
-
after: String
|
1496
|
-
|
1497
|
-
"""Return the first n elements from the list."""
|
1498
|
-
first: Int
|
1499
|
-
|
1500
|
-
"""Return the last n elements from the list."""
|
1501
|
-
last: Int
|
1502
|
-
): MicrositeCountableConnection @deprecated(reason: "Microsites will be removed on January 2, 2025.")
|
1503
|
-
|
1504
|
-
"""Look up microsite by vendor ID"""
|
1505
|
-
vendorMicrosite(
|
1506
|
-
"""ID of vendor to fetch microsite for."""
|
1507
|
-
id: ID!
|
1508
|
-
): Microsite @deprecated(reason: "Microsites will be removed on January 2, 2025.")
|
1509
|
-
|
1510
1471
|
"""Look up a navigation menu by ID or name."""
|
1511
1472
|
menu(
|
1512
1473
|
"""ID of the menu."""
|
@@ -3134,7 +3095,7 @@ type Product implements Node & ObjectWithMetadata {
|
|
3134
3095
|
isAvailableForPurchase: Boolean
|
3135
3096
|
|
3136
3097
|
"""
|
3137
|
-
Product sort order in the specific collection
|
3098
|
+
Product sort order in the specific collection. Make sense only as a part of the parent 'collection(s)' queries.
|
3138
3099
|
"""
|
3139
3100
|
sortOrder: Int
|
3140
3101
|
|
@@ -3239,9 +3200,6 @@ type Seller implements Node & ObjectWithMetadata {
|
|
3239
3200
|
"""Date seller acknowledged their existing agreement."""
|
3240
3201
|
agreementAcknowledged: DateTime
|
3241
3202
|
canUseInStorefront: Boolean
|
3242
|
-
|
3243
|
-
"""Microsite of the seller."""
|
3244
|
-
microsite: Microsite
|
3245
3203
|
pk: Int
|
3246
3204
|
externalPayoutStatus: Boolean
|
3247
3205
|
externalPayoutSchedule: String
|
@@ -4620,7 +4578,6 @@ input AttributeFilterInput {
|
|
4620
4578
|
inCollection: ID
|
4621
4579
|
inProductSearch: String
|
4622
4580
|
inVariantSearch: String
|
4623
|
-
inMicrosite: ID
|
4624
4581
|
inCategory: ID
|
4625
4582
|
|
4626
4583
|
"""
|
@@ -4909,8 +4866,6 @@ enum WebhookEventTypeEnum {
|
|
4909
4866
|
INVOICE_DELETED
|
4910
4867
|
INVOICE_REQUESTED
|
4911
4868
|
INVOICE_SENT
|
4912
|
-
MICROSITE_CREATED
|
4913
|
-
MICROSITE_UPDATED
|
4914
4869
|
NAUTICAL_ORDER_CANCELLED
|
4915
4870
|
NAUTICAL_ORDER_CREATED
|
4916
4871
|
NAUTICAL_ORDER_FULFILLED
|
@@ -7191,61 +7146,6 @@ type WarehouseCountableEdge {
|
|
7191
7146
|
cursor: String!
|
7192
7147
|
}
|
7193
7148
|
|
7194
|
-
"""Represents a microsite of products."""
|
7195
|
-
type Microsite implements Node & ObjectWithMetadata {
|
7196
|
-
"""The ID of the object"""
|
7197
|
-
id: ID!
|
7198
|
-
publicationDate: Date
|
7199
|
-
description: String!
|
7200
|
-
descriptionHtml: String!
|
7201
|
-
seoTitle: String
|
7202
|
-
seoDescription: String
|
7203
|
-
name: String!
|
7204
|
-
slug: String!
|
7205
|
-
footerText: String
|
7206
|
-
seller: Seller
|
7207
|
-
|
7208
|
-
"""
|
7209
|
-
List of private metadata items.Requires proper staff permissions to access.
|
7210
|
-
"""
|
7211
|
-
privateMetadata: [MetadataItem!]!
|
7212
|
-
|
7213
|
-
"""List of public metadata items. Can be accessed without permissions."""
|
7214
|
-
metadata: [MetadataItem!]!
|
7215
|
-
|
7216
|
-
"""List of products in this microsite."""
|
7217
|
-
products(
|
7218
|
-
"""Filtering options for products."""
|
7219
|
-
filter: ProductFilterInput
|
7220
|
-
|
7221
|
-
"""Sort products."""
|
7222
|
-
sortBy: ProductOrder
|
7223
|
-
|
7224
|
-
"""Return the elements in the list that come before the specified cursor."""
|
7225
|
-
before: String
|
7226
|
-
|
7227
|
-
"""Return the elements in the list that come after the specified cursor."""
|
7228
|
-
after: String
|
7229
|
-
|
7230
|
-
"""Return the first n elements from the list."""
|
7231
|
-
first: Int
|
7232
|
-
|
7233
|
-
"""Return the last n elements from the list."""
|
7234
|
-
last: Int
|
7235
|
-
): ProductCountableConnection
|
7236
|
-
bannerImage(
|
7237
|
-
"""Size of the image."""
|
7238
|
-
size: Int
|
7239
|
-
): Image
|
7240
|
-
logoImage(
|
7241
|
-
"""Size of the image."""
|
7242
|
-
size: Int
|
7243
|
-
): Image
|
7244
|
-
|
7245
|
-
"""Whether the microsite is published."""
|
7246
|
-
isPublished: Boolean!
|
7247
|
-
}
|
7248
|
-
|
7249
7149
|
"""Document"""
|
7250
7150
|
type Document {
|
7251
7151
|
"""Global ID of the Document."""
|
@@ -8160,8 +8060,6 @@ enum WebhookSampleEventTypeEnum {
|
|
8160
8060
|
INVOICE_DELETED
|
8161
8061
|
INVOICE_REQUESTED
|
8162
8062
|
INVOICE_SENT
|
8163
|
-
MICROSITE_CREATED
|
8164
|
-
MICROSITE_UPDATED
|
8165
8063
|
NAUTICAL_ORDER_CANCELLED
|
8166
8064
|
NAUTICAL_ORDER_CREATED
|
8167
8065
|
NAUTICAL_ORDER_FULFILLED
|
@@ -10920,58 +10818,6 @@ type NauticalConfiguration {
|
|
10920
10818
|
configurationValueString: String
|
10921
10819
|
}
|
10922
10820
|
|
10923
|
-
type MicrositeCountableConnection {
|
10924
|
-
"""Pagination data for this connection."""
|
10925
|
-
pageInfo: PageInfo!
|
10926
|
-
edges: [MicrositeCountableEdge!]!
|
10927
|
-
|
10928
|
-
"""A total count of items in the collection."""
|
10929
|
-
totalCount: Int
|
10930
|
-
}
|
10931
|
-
|
10932
|
-
type MicrositeCountableEdge {
|
10933
|
-
"""The item at the end of the edge."""
|
10934
|
-
node: Microsite!
|
10935
|
-
|
10936
|
-
"""A cursor for use in pagination."""
|
10937
|
-
cursor: String!
|
10938
|
-
}
|
10939
|
-
|
10940
|
-
input MicrositeFilterInput {
|
10941
|
-
published: MicrositePublished
|
10942
|
-
search: String
|
10943
|
-
ids: [ID]
|
10944
|
-
metadata: MetadataFilterInput
|
10945
|
-
privateMetadata: MetadataFilterInput
|
10946
|
-
}
|
10947
|
-
|
10948
|
-
enum MicrositePublished {
|
10949
|
-
PUBLISHED
|
10950
|
-
HIDDEN
|
10951
|
-
}
|
10952
|
-
|
10953
|
-
input MicrositeSortingInput {
|
10954
|
-
"""Specifies the direction in which to sort products."""
|
10955
|
-
direction: OrderDirection!
|
10956
|
-
|
10957
|
-
"""Sort microsites by the selected field."""
|
10958
|
-
field: MicrositeSortField!
|
10959
|
-
}
|
10960
|
-
|
10961
|
-
enum MicrositeSortField {
|
10962
|
-
"""Sort microsites by name."""
|
10963
|
-
NAME
|
10964
|
-
|
10965
|
-
"""Sort microsites by availability."""
|
10966
|
-
AVAILABILITY
|
10967
|
-
|
10968
|
-
"""Sort microsites by product count."""
|
10969
|
-
PRODUCT_COUNT
|
10970
|
-
|
10971
|
-
"""Sort microsites by publication date."""
|
10972
|
-
PUBLICATION_DATE
|
10973
|
-
}
|
10974
|
-
|
10975
10821
|
"""
|
10976
10822
|
Represents a single menu - an object that is used to help navigate through the store.
|
10977
10823
|
"""
|
@@ -13293,7 +13139,7 @@ enum StaffMemberStatus {
|
|
13293
13139
|
DEACTIVATED
|
13294
13140
|
}
|
13295
13141
|
|
13296
|
-
union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | App | Collection |
|
13142
|
+
union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | App | Collection | ProductImage | ProductStatusLog | Group | CatalogImportProcess | CatalogImportProcessLogRecord
|
13297
13143
|
|
13298
13144
|
scalar _Any
|
13299
13145
|
|
@@ -13327,7 +13173,7 @@ type Mutation {
|
|
13327
13173
|
description: String
|
13328
13174
|
|
13329
13175
|
"""
|
13330
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13176
|
+
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-dxf, application/vnd.oasis.opendocument.spreadsheet, application/rtf, text/x-comma-separated-values, application/x-jpg, application/vnd.pdf, drawing/x-dwg, application/x-rtf, text/pdf, image/gif, application/tif, application/vnd.oasis.opendocument.text, image/eps, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/jpeg, image/heic, application/x-eps, image/x-eps, application/vnd.ms-excel, text/x-pdf, application/x-tiff, text/plain, image/x-ms-bmp, application/jpg, image/svg+xml, text/comma-separated-values, image/x-tiff, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/vnd.dwg, image/png, text/svg-xml, text/rtf, application/tiff, application/zip, application/x-acad, image/heif-sequence, drawing/x-dwf, application/acad, application/acrobat, application/x-gzip, application/x-dwg, application/x-autocad, image/x-bmp, text/csv, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/postscript, application/vnd.ms-word, drawing/dwg, application/pdf, application/dxf, application/x-dxf, application/csv, image/jpg, application/x-csv, application/vnd.oasis.opendocument.presentation, application/dwg, application/gzip, application/svg+xml, application/x-zip-compressed, image/x-dwg, image/heif, image/tiff, image/x-tif, pplication/vnd.rar, image/heic-sequence, application/gzipped, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/svg, application/x-tar, application/gzip-compressed, text/x-csv, application/x-tif, application/x-rar-compressed, application/x-rar, image/svg, image/dxf, application/x-pdf, image/tif, application/excel, application/vnd.ms-powerpoint, application/eps, image/webp, application/msword.
|
13331
13177
|
"""
|
13332
13178
|
file: Upload!
|
13333
13179
|
|
@@ -13595,69 +13441,6 @@ type Mutation {
|
|
13595
13441
|
wishlistId: ID
|
13596
13442
|
): WishlistRemoveProductVariant
|
13597
13443
|
|
13598
|
-
"""Adds products to a microsite."""
|
13599
|
-
micrositeAddProducts(
|
13600
|
-
"""ID of a microsite."""
|
13601
|
-
micrositeId: ID!
|
13602
|
-
|
13603
|
-
"""List of product IDs."""
|
13604
|
-
products: [ID!]!
|
13605
|
-
): MicrositeAddProducts @deprecated(reason: "Microsites will be removed on January 2, 2025.")
|
13606
|
-
|
13607
|
-
"""Creates a new microsite."""
|
13608
|
-
micrositeCreate(
|
13609
|
-
"""Fields required to create a microsite."""
|
13610
|
-
input: MicrositeCreateInput!
|
13611
|
-
): MicrositeCreate @deprecated(reason: "Microsites will be removed on January 2, 2025.")
|
13612
|
-
|
13613
|
-
"""Deletes a microsite."""
|
13614
|
-
micrositeDelete(
|
13615
|
-
"""ID of a microsite to delete."""
|
13616
|
-
id: ID!
|
13617
|
-
): MicrositeDelete @deprecated(reason: "Microsites will be removed on January 2, 2025.")
|
13618
|
-
|
13619
|
-
"""Reorder the products of a microsite."""
|
13620
|
-
micrositeReorderProducts(
|
13621
|
-
"""ID of a microsite."""
|
13622
|
-
micrositeId: ID!
|
13623
|
-
|
13624
|
-
"""The microsite products position operations."""
|
13625
|
-
moves: [MoveProductInput!]!
|
13626
|
-
): MicrositeReorderProducts @deprecated(reason: "Microsites will be removed on January 2, 2025.")
|
13627
|
-
|
13628
|
-
"""Deletes microsites."""
|
13629
|
-
micrositeBulkDelete(
|
13630
|
-
"""List of microsite IDs to delete."""
|
13631
|
-
ids: [ID!]!
|
13632
|
-
): MicrositeBulkDelete @deprecated(reason: "Microsites will be removed on January 2, 2025.")
|
13633
|
-
|
13634
|
-
"""Publish microsites."""
|
13635
|
-
micrositeBulkPublish(
|
13636
|
-
"""List of microsites IDs to (un)publish."""
|
13637
|
-
ids: [ID!]!
|
13638
|
-
|
13639
|
-
"""Determine if microsites will be published or not."""
|
13640
|
-
isPublished: Boolean!
|
13641
|
-
): MicrositeBulkPublish @deprecated(reason: "Microsites will be removed on January 2, 2025.")
|
13642
|
-
|
13643
|
-
"""Remove products from a microsite."""
|
13644
|
-
micrositeRemoveProducts(
|
13645
|
-
"""ID of a microsite."""
|
13646
|
-
micrositeId: ID!
|
13647
|
-
|
13648
|
-
"""List of product IDs."""
|
13649
|
-
products: [ID!]!
|
13650
|
-
): MicrositeRemoveProducts @deprecated(reason: "Microsites will be removed on January 2, 2025.")
|
13651
|
-
|
13652
|
-
"""Updates a microsite."""
|
13653
|
-
micrositeUpdate(
|
13654
|
-
"""ID of a microsite to update."""
|
13655
|
-
id: ID!
|
13656
|
-
|
13657
|
-
"""Fields required to update a microsite."""
|
13658
|
-
input: MicrositeInput!
|
13659
|
-
): MicrositeUpdate @deprecated(reason: "Microsites will be removed on January 2, 2025.")
|
13660
|
-
|
13661
13444
|
"""Creates a new agreement."""
|
13662
13445
|
agreementCreate(
|
13663
13446
|
"""Fields required to create a agreement."""
|
@@ -17193,200 +16976,6 @@ type WishlistRemoveProductVariant {
|
|
17193
16976
|
wishlistErrors: [WishlistError!]!
|
17194
16977
|
}
|
17195
16978
|
|
17196
|
-
"""Adds products to a microsite."""
|
17197
|
-
type MicrositeAddProducts {
|
17198
|
-
"""Microsite to which products will be added."""
|
17199
|
-
microsite: Microsite
|
17200
|
-
micrositeErrors: [ProductError!]!
|
17201
|
-
}
|
17202
|
-
|
17203
|
-
type ProductError {
|
17204
|
-
"""
|
17205
|
-
Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field.
|
17206
|
-
"""
|
17207
|
-
field: String
|
17208
|
-
|
17209
|
-
"""The error message."""
|
17210
|
-
message: String!
|
17211
|
-
|
17212
|
-
"""The error code."""
|
17213
|
-
code: ProductErrorCode!
|
17214
|
-
|
17215
|
-
"""List of attributes IDs which causes the error."""
|
17216
|
-
attributes: [ID!]
|
17217
|
-
}
|
17218
|
-
|
17219
|
-
"""An enumeration."""
|
17220
|
-
enum ProductErrorCode {
|
17221
|
-
ALREADY_EXISTS
|
17222
|
-
ATTRIBUTE_ALREADY_ASSIGNED
|
17223
|
-
ATTRIBUTE_CANNOT_BE_ASSIGNED
|
17224
|
-
ATTRIBUTE_VARIANTS_DISABLED
|
17225
|
-
DUPLICATED_INPUT_ITEM
|
17226
|
-
GRAPHQL_ERROR
|
17227
|
-
INVALID
|
17228
|
-
INVALID_PHONE
|
17229
|
-
NOT_PRODUCTS_IMAGE
|
17230
|
-
NOT_PRODUCTS_VARIANT
|
17231
|
-
NOT_FOUND
|
17232
|
-
REQUIRED
|
17233
|
-
UNIQUE
|
17234
|
-
VARIANT_NO_DIGITAL_CONTENT
|
17235
|
-
VARIANT_IN_ACTIVE_ORDER
|
17236
|
-
CATEGORY_CANNOT_BE_ASSIGNED
|
17237
|
-
CATEGORY_CANNOT_BE_DELETED
|
17238
|
-
COLLECTION_CANNOT_BE_CHANGED
|
17239
|
-
COLLECTION_ALLOWED_FOR_PRODUCTS_ONLY
|
17240
|
-
COLLECTION_ALLOWED_FOR_VARIANTS_ONLY
|
17241
|
-
INVENTORY_FIELD_CANNOT_BE_EDITED
|
17242
|
-
}
|
17243
|
-
|
17244
|
-
"""Creates a new microsite."""
|
17245
|
-
type MicrositeCreate {
|
17246
|
-
micrositeErrors: [ProductError!]!
|
17247
|
-
microsite: Microsite
|
17248
|
-
}
|
17249
|
-
|
17250
|
-
input MicrositeCreateInput {
|
17251
|
-
"""Informs whether a microsite is published."""
|
17252
|
-
isPublished: Boolean
|
17253
|
-
|
17254
|
-
"""Name of the microsite."""
|
17255
|
-
name: String
|
17256
|
-
|
17257
|
-
"""Text to appear in footer of microsite."""
|
17258
|
-
footerText: String
|
17259
|
-
|
17260
|
-
"""Slug of the microsite."""
|
17261
|
-
slug: String
|
17262
|
-
|
17263
|
-
"""Description of the microsite (plaintext, deprecated for input)."""
|
17264
|
-
description: String
|
17265
|
-
|
17266
|
-
"""Description of the microsite (HTML)."""
|
17267
|
-
descriptionHtml: String
|
17268
|
-
|
17269
|
-
"""Banner image file."""
|
17270
|
-
bannerImage: Upload
|
17271
|
-
|
17272
|
-
"""Alt text for an image."""
|
17273
|
-
bannerImageAlt: String
|
17274
|
-
|
17275
|
-
"""Logo image file."""
|
17276
|
-
logoImage: Upload
|
17277
|
-
|
17278
|
-
"""Alt text for an image."""
|
17279
|
-
logoImageAlt: String
|
17280
|
-
|
17281
|
-
"""Search engine optimization fields."""
|
17282
|
-
seo: SeoInput
|
17283
|
-
|
17284
|
-
"""Publication date. ISO 8601 standard."""
|
17285
|
-
publicationDate: Date
|
17286
|
-
|
17287
|
-
"""List of products to be added to the microsite."""
|
17288
|
-
products: [ID!]
|
17289
|
-
|
17290
|
-
"""Vendor that microsite belongs to"""
|
17291
|
-
vendor: ID!
|
17292
|
-
}
|
17293
|
-
|
17294
|
-
input SeoInput {
|
17295
|
-
"""SEO title."""
|
17296
|
-
title: String
|
17297
|
-
|
17298
|
-
"""SEO description."""
|
17299
|
-
description: String
|
17300
|
-
}
|
17301
|
-
|
17302
|
-
"""Deletes a microsite."""
|
17303
|
-
type MicrositeDelete {
|
17304
|
-
micrositeErrors: [ProductError!]!
|
17305
|
-
microsite: Microsite
|
17306
|
-
}
|
17307
|
-
|
17308
|
-
"""Reorder the products of a microsite."""
|
17309
|
-
type MicrositeReorderProducts {
|
17310
|
-
"""Microsite from which products are reordered."""
|
17311
|
-
microsite: Microsite
|
17312
|
-
micrositeErrors: [ProductError!]!
|
17313
|
-
}
|
17314
|
-
|
17315
|
-
input MoveProductInput {
|
17316
|
-
"""The ID of the product to move."""
|
17317
|
-
productId: ID!
|
17318
|
-
|
17319
|
-
"""
|
17320
|
-
The relative sorting position of the product (from -inf to +inf) starting from the first given product's actual position.1 moves the item one position forward, -1 moves the item one position backward, 0 leaves the item unchanged.
|
17321
|
-
"""
|
17322
|
-
sortOrder: Int
|
17323
|
-
}
|
17324
|
-
|
17325
|
-
"""Deletes microsites."""
|
17326
|
-
type MicrositeBulkDelete {
|
17327
|
-
"""Returns how many objects were affected."""
|
17328
|
-
count: Int!
|
17329
|
-
micrositeErrors: [ProductError!]!
|
17330
|
-
}
|
17331
|
-
|
17332
|
-
"""Publish microsites."""
|
17333
|
-
type MicrositeBulkPublish {
|
17334
|
-
"""Returns how many objects were affected."""
|
17335
|
-
count: Int!
|
17336
|
-
micrositeErrors: [ProductError!]!
|
17337
|
-
}
|
17338
|
-
|
17339
|
-
"""Remove products from a microsite."""
|
17340
|
-
type MicrositeRemoveProducts {
|
17341
|
-
"""Microsite from which products will be removed."""
|
17342
|
-
microsite: Microsite
|
17343
|
-
micrositeErrors: [ProductError!]!
|
17344
|
-
}
|
17345
|
-
|
17346
|
-
"""Updates a microsite."""
|
17347
|
-
type MicrositeUpdate {
|
17348
|
-
micrositeErrors: [ProductError!]!
|
17349
|
-
microsite: Microsite
|
17350
|
-
}
|
17351
|
-
|
17352
|
-
input MicrositeInput {
|
17353
|
-
"""Informs whether a microsite is published."""
|
17354
|
-
isPublished: Boolean
|
17355
|
-
|
17356
|
-
"""Name of the microsite."""
|
17357
|
-
name: String
|
17358
|
-
|
17359
|
-
"""Text to appear in footer of microsite."""
|
17360
|
-
footerText: String
|
17361
|
-
|
17362
|
-
"""Slug of the microsite."""
|
17363
|
-
slug: String
|
17364
|
-
|
17365
|
-
"""Description of the microsite (plaintext, deprecated for input)."""
|
17366
|
-
description: String
|
17367
|
-
|
17368
|
-
"""Description of the microsite (HTML)."""
|
17369
|
-
descriptionHtml: String
|
17370
|
-
|
17371
|
-
"""Banner image file."""
|
17372
|
-
bannerImage: Upload
|
17373
|
-
|
17374
|
-
"""Alt text for an image."""
|
17375
|
-
bannerImageAlt: String
|
17376
|
-
|
17377
|
-
"""Logo image file."""
|
17378
|
-
logoImage: Upload
|
17379
|
-
|
17380
|
-
"""Alt text for an image."""
|
17381
|
-
logoImageAlt: String
|
17382
|
-
|
17383
|
-
"""Search engine optimization fields."""
|
17384
|
-
seo: SeoInput
|
17385
|
-
|
17386
|
-
"""Publication date. ISO 8601 standard."""
|
17387
|
-
publicationDate: Date
|
17388
|
-
}
|
17389
|
-
|
17390
16979
|
"""Creates a new agreement."""
|
17391
16980
|
type AgreementCreate {
|
17392
16981
|
agreementErrors: [AgreementError!]!
|
@@ -17458,6 +17047,14 @@ input AgreementInput {
|
|
17458
17047
|
markupCommissionValue: Decimal
|
17459
17048
|
}
|
17460
17049
|
|
17050
|
+
input SeoInput {
|
17051
|
+
"""SEO title."""
|
17052
|
+
title: String
|
17053
|
+
|
17054
|
+
"""SEO description."""
|
17055
|
+
description: String
|
17056
|
+
}
|
17057
|
+
|
17461
17058
|
"""Deletes a agreement."""
|
17462
17059
|
type AgreementDelete {
|
17463
17060
|
agreementErrors: [AgreementError!]!
|
@@ -19227,6 +18824,47 @@ type CategoryCreate {
|
|
19227
18824
|
category: Category
|
19228
18825
|
}
|
19229
18826
|
|
18827
|
+
type ProductError {
|
18828
|
+
"""
|
18829
|
+
Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field.
|
18830
|
+
"""
|
18831
|
+
field: String
|
18832
|
+
|
18833
|
+
"""The error message."""
|
18834
|
+
message: String!
|
18835
|
+
|
18836
|
+
"""The error code."""
|
18837
|
+
code: ProductErrorCode!
|
18838
|
+
|
18839
|
+
"""List of attributes IDs which causes the error."""
|
18840
|
+
attributes: [ID!]
|
18841
|
+
}
|
18842
|
+
|
18843
|
+
"""An enumeration."""
|
18844
|
+
enum ProductErrorCode {
|
18845
|
+
ALREADY_EXISTS
|
18846
|
+
ATTRIBUTE_ALREADY_ASSIGNED
|
18847
|
+
ATTRIBUTE_CANNOT_BE_ASSIGNED
|
18848
|
+
ATTRIBUTE_VARIANTS_DISABLED
|
18849
|
+
DUPLICATED_INPUT_ITEM
|
18850
|
+
GRAPHQL_ERROR
|
18851
|
+
INVALID
|
18852
|
+
INVALID_PHONE
|
18853
|
+
NOT_PRODUCTS_IMAGE
|
18854
|
+
NOT_PRODUCTS_VARIANT
|
18855
|
+
NOT_FOUND
|
18856
|
+
REQUIRED
|
18857
|
+
UNIQUE
|
18858
|
+
VARIANT_NO_DIGITAL_CONTENT
|
18859
|
+
VARIANT_IN_ACTIVE_ORDER
|
18860
|
+
CATEGORY_CANNOT_BE_ASSIGNED
|
18861
|
+
CATEGORY_CANNOT_BE_DELETED
|
18862
|
+
COLLECTION_CANNOT_BE_CHANGED
|
18863
|
+
COLLECTION_ALLOWED_FOR_PRODUCTS_ONLY
|
18864
|
+
COLLECTION_ALLOWED_FOR_VARIANTS_ONLY
|
18865
|
+
INVENTORY_FIELD_CANNOT_BE_EDITED
|
18866
|
+
}
|
18867
|
+
|
19230
18868
|
input CategoryInput {
|
19231
18869
|
"""Category description (plaintext, deprecated as input)."""
|
19232
18870
|
description: String
|
@@ -19393,6 +19031,16 @@ type CollectionReorderProducts {
|
|
19393
19031
|
productErrors: [ProductError!]!
|
19394
19032
|
}
|
19395
19033
|
|
19034
|
+
input MoveProductInput {
|
19035
|
+
"""The ID of the product to move."""
|
19036
|
+
productId: ID!
|
19037
|
+
|
19038
|
+
"""
|
19039
|
+
The relative sorting position of the product (from -inf to +inf) starting from the first given product's actual position.1 moves the item one position forward, -1 moves the item one position backward, 0 leaves the item unchanged.
|
19040
|
+
"""
|
19041
|
+
sortOrder: Int
|
19042
|
+
}
|
19043
|
+
|
19396
19044
|
"""Deletes collections."""
|
19397
19045
|
type CollectionBulkDelete {
|
19398
19046
|
"""Returns how many objects were affected."""
|