Add catalog option sets

This commit is contained in:
Ruslan Bakiev
2026-04-09 17:10:52 +07:00
parent 2cd8d0b612
commit 0103c3fb8a
4 changed files with 130 additions and 15 deletions

View File

@@ -257,6 +257,12 @@ type CatalogProductTypeSetting {
customLengthStepM: Int
allowCustomSleeveBrand: Boolean!
allowCustomLabel: Boolean!
widthOptionsMm: [Int!]!
lengthOptionsM: [Int!]!
thicknessOptionsMicron: [Int!]!
sleeveOptions: [String!]!
colorOptions: [String!]!
labelOptions: [String!]!
}
type CartItem {
@@ -512,6 +518,12 @@ input UpsertCatalogProductTypeSettingInput {
customLengthStepM: Int
allowCustomSleeveBrand: Boolean!
allowCustomLabel: Boolean!
widthOptionsMm: [Int!]!
lengthOptionsM: [Int!]!
thicknessOptionsMicron: [Int!]!
sleeveOptions: [String!]!
colorOptions: [String!]!
labelOptions: [String!]!
}
input ReadyOrderItemInput {