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 String : 34 35 String : 36 37 # Required permission: InvoiceLine.countryOfOrigin:read 38 Country : 39 40 # Required permission: Product:read 41 Product : 42 43 # Required permission: ProductSize:read 44 ProductSize : 45 46 # Required permission: ProductVariant:read 47 ProductVariant : 48 49 # Required permission: Invoice:read 50 # 51 # Store restrictions apply. 52 Invoice! : 53 54 # Required permission: Order:read 55 OrderLine : 56 57 # Required permission: Shipment:read 58 ShipmentLine : 59 60 }