OBJECT
BasketItem
This is a basket item. Multiple items form the shopping basket for a customer.
link GraphQL Schema definition
1 type BasketItem { 2 3 # Unique Id of the basket item 4 : Int! 19 5 # Customer to basket item relation 6 : Int! 19 7 # Product to basket item relation 8 : Int! 19 9 # Quantity of the product in the basket item 10 : Int! 19 11 # delegates the name of the product in the basket from product 12 : String 19 13 # delegates the description of the product in the basket from product 14 : String 19 15 # delegates the unit price of the product 16 : Float 19 17 # delegates the available stock of the product in the basket from the inventory 18 : Int 20 21 }