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

  • type QueryRoot {
  • # Arguments
  • # customerAccessToken: The customer access token
  • customer(customerAccessToken: String!): Customer
  • # Arguments
  • # id: [Not documented]
  • node(id: ID!): Node
  • # Arguments
  • # ids: [Not documented]
  • nodes(ids: [ID!]!): [Node]!
  • shop: Shop!
  • }

link Require by

This element is not required by anyone