INPUT_OBJECT

BundleCreateInput

link GraphQL Schema definition

1input BundleCreateInput {
2
3product: ProductCreateInput!
4
5type: BundleType!
6
7priceType: BundlePriceType!
8
9# Must be specified for a fixed bundle, for a flexible one it can be null
10#
11# Exactly one input field should be provided
12sizeChart: SizeChartInput
13
14# Must be specified for a fixed bundle, for a flexible one it can be null
15#
16# Exactly one input field should be provided
17sizes: [SizeInput!]
18
19addBundleSections: [BundleSectionCreateInput!]!
20}

link Required by