OBJECT
Query
link GraphQL Schema definition
1 type Query { 2 3 # Gets all baskets 4 BasketItem] : [ 35 5 # Gets a basket item on primary key 6 # 7 # Arguments 8 # id: [Not documented] 9 Int!): BasketItem ( : 35 10 # Gets a basket items for a customer by customer identity 11 # 12 # Arguments 13 # id: [Not documented] 14 Int!): [BasketItem] ( : 35 15 Customer] : [ 35 16 # Arguments 17 # id: [Not documented] 18 Int!): Customer ( : 35 19 Inventory] : [ 35 20 # Arguments 21 # id: [Not documented] 22 Int!): Inventory ( : 35 23 Payment] : [ 35 24 # Arguments 25 # id: [Not documented] 26 Int!): Payment ( : 35 27 Product] : [ 35 28 # Arguments 29 # id: [Not documented] 30 Int!): Product ( : 35 31 # This is an extended query which shows a basket for the current logged in 32 # customer along with the products. This view is in accordance with the UX design 33 # and contains delegated fields from the inventory and product database 34 BasketItem!]! : [ 36 37 }
link Required by
This element is not required by anyone