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