Skip to content

Product

The product

Fields

created_at · ISO8601DateTime! · required · The date and time when the product was created
cursor · Cursor! · required · Pagination cursor
id · ID! · required · The unique identifier of the product
name · String! · required · The name of the product
price · String! · required · The price of the product
remaining_quantity · String! · required · The available amount of the product
tax_description · String · Tax description
tax_rate · String · Tax rate
taxable · Boolean · If product has tax rate
unlimited_quantity · Boolean! · required · Indicates if the product has unlimited amount
user · User · Owner of the product

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
}