Interface
LineItemProducts is an interface, implemented by the following types:
Available queries
Associated query | Returns multiple results |
---|---|
LineItemProducts | ✔️, but doesn't use the edge structure |
Available fields
Label | Type | Notes | Null |
---|---|---|---|
id | integer | The product or service's id | |
label | string | The product or service's label | |
type | string | The product or service's type (ex : "variant" or "service") |
Example of a query
query{
LineItemProducts{
id
label
type
... on variantType {
barcode
}
... on serviceType {
deposit
}
}
}