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 ( 36 AllocationFilter, : 37 AllocationSort!] = [id_ASC], : [ 38 Int, : 39 Int = 1 : 40 ): [Allocation!]! 41 42 }