Skip to main content

BundleCreateInput

No description

input BundleCreateInput {
name: String!
description: String
discount: Float
condition: BundleCondition
price: Float
taxZone: String
addBundleItems: [BundleItemInput!]
}

Fields

BundleCreateInput.name ● String! non-null scalar

The name for this bundle.

BundleCreateInput.description ● String scalar

The description for this bundle.

BundleCreateInput.discount ● Float scalar

The discount percentage to be applied to this bundle.

BundleCreateInput.condition ● BundleCondition enum

The discount condition for this bundle. Discount can be applied for Extra Products (EP) or All Products (ALL).

BundleCreateInput.price ● Float scalar

The bundle prices.

BundleCreateInput.taxZone ● String scalar

The bundle tax zone.

BundleCreateInput.addBundleItems ● [BundleItemInput!] list input

Items for this bundle.

Member Of

bundleCreate mutation