OBJECT
ProductWithoutVirtual
Product without virtual fields
link GraphQL Schema definition
- type ProductWithoutVirtual {
- # Product is active or not
- : Boolean
- # Product is archived or not
- : Boolean
- # Unique product barcode
- : String @deprecated( reason: "Not used in app" )
- : [Category]
- : Category
- # Product is deleted or not
- : Boolean
- # Product description
- : String
- # Product is visible in eshop or not
- : Boolean
- # Unique product id
- : ID!
- : File
- # Product name
- : String!
- # Product price is open or not
- : Boolean
- # Product is perishable or not
- : Boolean @deprecated( reason: "Not used in app" )
- # Product price
- : Decimal
- # Product price including tax
- : Decimal
- # Product is taxable or not
- : Boolean
- : DateTime
- # Product vat
- : Decimal
- }