Bundle
No description
type Bundle implements IBundle {
id: Float!
comboId: Float @deprecated
name: String!
description: String
discount: Float
condition: BundleCondition
price: BundlePrice
items: [BundleItem!]
}
Fields
Bundle.id ● Float! non-null scalar
The bundles primary identifier
Bundle.comboId ● Float deprecated scalar
DEPRECATED
The comboId is deprecated and will be removed in the future. Please use the id field instead.
[DEPRECATED] The bundles identifier for Propeller internal use
Bundle.name ● String! non-null scalar
The name for this bundle.
Bundle.description ● String scalar
The description for this bundle.
Bundle.discount ● Float scalar
The discount percentage this bundle.
Bundle.condition ● BundleCondition enum
The discount condition for this bundle. Discount can be applied for Extra Products (EP) or All Products (ALL).
Bundle.price ● BundlePrice object
The bundle prices.
Bundle.items ● [BundleItem!] list object
Items for this bundle.
Interfaces
IBundle interface
Returned By
bundle query ● bundleCreate mutation ● bundles query ● bundleUpdate mutation
Member Of
CartMainItem object ● Product object