OBJECT

Inventory

Record to handle multi-store inventory.

link GraphQL Schema definition

  • type Inventory implements Node {
  • # It is used to identify the quantity available.
  • countOnHand: Int!
  • id: ID!
  • # Used to identify if infinite inventory is enabled
  • infiniteQuantity: Boolean!
  • price: Money
  • salePrice: Money
  • # Seller associated in the multi-store membership.
  • seller: Seller!
  • }