OBJECT

QueryRoot

The schema’s entry-point for queries. This acts as the public, top-level API from which all queries must start.

link GraphQL Schema definition

1type QueryRoot {
2
3# Arguments
4# customerAccessToken: The customer access token
5customer(customerAccessToken: String!): Customer
6
7node(id: ID!): Node
8
9nodes(ids: [ID!]!): [Node]!
10
11shop: Shop!
12
13}

link Required by

This element is not required by anyone