OBJECT
Basket
Query: basket, returns Basket For all basket operations, there will be a default, unique API Basket name based on the user name. If a basket ID is not passed in, all operations will be performed on the default stored basket.
link GraphQL Schema definition
- type Basket {
- # Name is the identifier for this basket
- : String
- : ID
- : [BasketLine]
- : [BasketLine]
- : String
- : String
- : Int
- : Price
- : Float
- : Float
- : Price
- : Float
- : Float
- : String
- : Address
- : Address
- : String
- : String
- : String
- : String
- # check now if any products in the basket are bigbox. Regardless of whether
- # bigbox options have been generated for this basket
- : Boolean!
- # if bigbox services has been set on this basket, return the bigbox data,
- # otherwise null.
- # if has_bigbox_lines is true but bigbox is null, use the refreshbigbox mutation
- # to start,
- # and later to refresh, this data.
- : BigBox
- }