OBJECT

ShipmentLine

link GraphQL Schema definition

1type ShipmentLine {
2id: Int!
3
4quantity: Int!
5
6returnedQuantity: Int!
7
8invoicedQuantity: Int!
9
10# Arguments
11# includingTax: (self-explanatory)
12lineValue(includingTax: Boolean! = true): MonetaryValue!
13
14# Arguments
15# includingTax: (self-explanatory)
16unitPrice(includingTax: Boolean! = true): MonetaryValue!
17
18# Required permission: Order:read
19#
20# Store restrictions apply.
21orderLine: OrderLine!
22
23# Required permission: Invoice:read
24#
25# All elements are always returned
26invoiceLines: [InvoiceLine!]!
27
28# Required permission: Allocation:read
29#
30# Limit is optional
31#
32# Arguments
33# where: (self-explanatory)
34# sort: (self-explanatory)
35# limit: (self-explanatory)
36# page: (self-explanatory)
37allocations(where: AllocationFilter, sort: [AllocationSort!] = [id_ASC], limit: Int, page: Int = 1): [Allocation!]!
38
39# All elements are always returned
40appliedTaxRules: [AppliedTaxRuleValue!]!
41
42}