Bundle
No description
type Bundle {
id: String!
name: String
description: String
discount: Float
condition: BundleCondition
price: BundlePrice
items: [BundleItem!]
createdAt: DateTime
createdBy: Int
lastModifiedAt: DateTime
lastModifiedBy: Int
}
Fields
Bundle.id
● String!
non-null scalar
Bundle primary identifier
Bundle.name
● String
scalar
Bundle name
Bundle.description
● String
scalar
Bundle description
Bundle.discount
● Float
scalar
Bundle discount amount
Bundle.condition
● BundleCondition
enum
Discount condition for this bundle. Discount can be applied for Extra Products (EP) or All Products (ALL).
Bundle.price
● BundlePrice
object
Bundle price
Bundle.items
● [BundleItem!]
list object
Items in the bundle.
Bundle.createdAt
● DateTime
scalar
Bundle creation date [default: now]
Bundle.createdBy
● Int
scalar
Bundle creator
Bundle.lastModifiedAt
● DateTime
scalar
Last modified date
Bundle.lastModifiedBy
● Int
scalar
Last modified by
Returned By
bundle
query ● bundleCreate
mutation ● bundleUpdate
mutation
Member Of
BundlesResponse
object ● CartMainItem
object ● Product
object