OBJECT

Product

This is a product

link GraphQL Schema definition

  • type Product {
  • # Product is active or not
  • active: Boolean
  • # Product is archived or not
  • archived: Boolean
  • # Unique product barcode
  • barcode: String @deprecated( reason: "Not used in app" )
  • categories: [Category]
  • category: Category
  • # Product is deleted or not
  • deleted: Boolean
  • # Product description
  • description: String
  • # Product is visible in eshop or not
  • eshopDisplay: Boolean
  • # Unique product id
  • id: ID!
  • image: File
  • # Product is visible on terminal or not
  • isVisible: Boolean
  • # Product name
  • name: String!
  • # Product price is open or not
  • openPrice: Boolean
  • # Product is perishable or not
  • perishable: Boolean @deprecated( reason: "Not used in app" )
  • # Product price
  • price: Decimal
  • # Product price including tax
  • priceInclTax: Decimal
  • # Product is taxable or not
  • taxable: Boolean
  • updatedAt: DateTime
  • # Product vat
  • vat: Decimal
  • }