OBJECT
InvoiceLine
link GraphQL Schema definition
1 type InvoiceLine { 2 : Int! 3 4 : Int! 5 6 : String 7 8 : String 9 10 : String 11 12 : String 13 14 : String 15 16 # Arguments 17 # includingTax: (self-explanatory) 18 (: Boolean! = false): MonetaryValue! 19 20 # Arguments 21 # includingTax: (self-explanatory) 22 (: Boolean! = false): MonetaryValue! 23 24 : MonetaryValue! 25 26 # Cost of goods sold ([wiki](https://en.wikipedia.org/wiki/Cost_of_goods_sold)) 27 : MonetaryValue 28 29 : Float! 30 31 : Float! 32 33 # All elements are always returned 34 : [AppliedTaxRuleValue!]! 35 36 : String 37 38 : String 39 40 # Required permission: InvoiceLine.countryOfOrigin:read 41 : Country 42 43 # Required permission: Product:read 44 : Product 45 46 # Required permission: ProductSize:read 47 : ProductSize 48 49 # Required permission: ProductVariant:read 50 : ProductVariant 51 52 # Required permission: Invoice:read 53 # 54 # Store restrictions apply. 55 : Invoice! 56 57 # Required permission: Order:read 58 # 59 # Store restrictions apply. 60 : OrderLine 61 62 # Required permission: Shipment:read 63 : ShipmentLine 64 65 }