OBJECT

BasketItem

This is a basket item. Multiple items form the shopping basket for a customer.

link GraphQL Schema definition

1type BasketItem {
2
3# Unique Id of the basket item
4basketItemId: Int!
19
5# Customer to basket item relation
6customerId: Int!
19
7# Product to basket item relation
8productId: Int!
19
9# Quantity of the product in the basket item
10quantity: Int!
19
11# delegates the name of the product in the basket from product
12name: String
19
13# delegates the description of the product in the basket from product
14description: String
19
15# delegates the unit price of the product
16unitPrice: Float
19
17# delegates the available stock of the product in the basket from the inventory
18inStock: Int
20
21}

link Required by