Product
The product
Fields
tax_description
· String
· Tax description Used By
Definition
"""The product"""type Product { """ The date and time when the product was created """ created_at: ISO8601DateTime!
""" Pagination cursor """ cursor: Cursor!
""" The unique identifier of the product """ 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}