OBJECT
Product
Represents an importers' product
link GraphQL Schema definition
- type Product implements Object {
- # The Products's INLT ID
- ID! :
- # The client's unique identifier
- ID :
- # Brief description of the product
- String :
- # Product's display name
- String :
- # The 12 numeric characters that represent the universal product number
- String :
- # Additional product notes
- String :
- # Units per box
- Int :
- # Box weight
- Float :
- # Box width
- Float :
- # Box length
- Float :
- # Box height
- Float :
- # Unit system when measuring box height, length, width, and weight
- ProductPackingUnit :
- # An array of product tags
- ProductTag] : [
- # Line items associated with a Product.
- EntryLine!] : [
- # The product's item number
- String! :
- # The importer associated with the product
- Importer :
- # The product's URL on app.inlt.com
- URL :
- DateTime! :
- DateTime! :
- }