OBJECT
ShipmentLine
link GraphQL Schema definition
1 type ShipmentLine { 2 Int! : 3 4 Int! : 5 6 Int! : 7 8 Int! : 9 10 # Arguments 11 # includingTax: (self-explanatory) 12 Boolean! = true): MonetaryValue! ( : 13 14 # Arguments 15 # includingTax: (self-explanatory) 16 Boolean! = true): MonetaryValue! ( : 17 18 # Required permission: Order:read 19 OrderLine! : 20 21 # Required permission: Invoice:read 22 # 23 # All elements are always returned 24 InvoiceLine!]! : [ 25 26 # Required permission: Allocation:read 27 # 28 # Limit is optional 29 # 30 # Arguments 31 # where: (self-explanatory) 32 # sort: (self-explanatory) 33 # limit: (self-explanatory) 34 # page: (self-explanatory) 35 AllocationFilter, : [AllocationSort!] = [id_ASC], : Int, : Int = 1): [Allocation!]! ( : 36 37 }