OBJECT

Query

link GraphQL Schema definition

  • type Query {
  • # Arguments
  • # first: Limits number of fetched elements.
  • # page: The offset from which elements are returned.
  • products(first: Int, page: Int): ProductPaginator
  • # Arguments
  • # id: [Not documented]
  • product(id: ID!): Product
  • # Arguments
  • # first: Limits number of fetched elements.
  • # page: The offset from which elements are returned.
  • variants(first: Int, page: Int): VariantPaginator
  • # Arguments
  • # id: [Not documented]
  • variant(id: ID!): Variant
  • # Arguments
  • # first: Limits number of fetched elements.
  • # page: The offset from which elements are returned.
  • customers(first: Int, page: Int): CustomerPaginator
  • # Arguments
  • # id: [Not documented]
  • customer(id: ID!): Customer
  • # Arguments
  • # first: Limits number of fetched elements.
  • # page: The offset from which elements are returned.
  • waitlists(first: Int, page: Int): WaitlistItemPaginator
  • # Arguments
  • # first: Limits number of fetched elements.
  • # page: The offset from which elements are returned.
  • collections(first: Int, page: Int): CollectionPaginator
  • # Arguments
  • # id: [Not documented]
  • collection(id: ID!): Collection
  • }

link Require by

This element is not required by anyone