OBJECT

Product

link GraphQL Schema definition

  • type Product {
  • created_at: String
  • id: ID!
  • # The name of the product
  • name: String
  • # The price of the product
  • price: String
  • # The available amount of the product
  • remaining_quantity: String
  • # Tax description
  • tax_description: String
  • # Tax rate
  • tax_rate: String
  • # If product has tax rate
  • taxable: Boolean
  • # Indicates if the product has unlimited amount
  • unlimited_quantity: Boolean
  • # Owner of the product
  • user: User
  • }