INPUT_OBJECT

BundleUpdateInput

link GraphQL Schema definition

1input BundleUpdateInput {
2
3product: ProductUpdateInput
4
5priceType: BundlePriceType
6
7# Only for a fixed bundle, for a flexible one it can be null
8#
9# Exactly one input field should be provided
10sizes: [SizeInput!]
11
12addBundleSections: [BundleSectionCreateInput!]
13
14updateBundleSections: [BundleSectionUpdateInput!]
15
16deleteBundleSections: [BundleSectionInput!]
17}

link Required by