OBJECT

Query

link GraphQL Schema definition

1type Query {
2
3# Gets all baskets
4baskets: [BasketItem]
35
5# Gets a basket item on primary key
6#
7# Arguments
8# id: [Not documented]
9basket(id: Int!): BasketItem
35
10# Gets a basket items for a customer by customer identity
11#
12# Arguments
13# id: [Not documented]
14basketForCustomer(id: Int!): [BasketItem]
35
15customers: [Customer]
35
16# Arguments
17# id: [Not documented]
18customer(id: Int!): Customer
35
19get: [Inventory]
35
20# Arguments
21# id: [Not documented]
22inventory(id: Int!): Inventory
35
23payments: [Payment]
35
24# Arguments
25# id: [Not documented]
26product(id: Int!): Payment
35
27products: [Product]
35
28# Arguments
29# id: [Not documented]
30product_product(id: 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
34mybasket: [BasketItem!]!
36
37}

link Required by

This element is not required by anyone