INTERFACE
OrderLine
link GraphQL Schema definition
1 interface OrderLine { 2 : Int!  3 4 : String!  5 6 : String!  7 8 : Boolean!  9 10 : String  11 12 : String  13 14 : String  15 16 : String  17 18 : String  19 20 #   If set, it holds the absolute url where this item can be seen 21 : String  22 23 : String  24 25 #   The current quantity for the order line, excluding cancelled units 26 : Int!  27 28 : Int!  29 30 : Int!  31 32 #   Original price taken from the pricelist, might include or exclude taxes depending on the param 33 #  34 # Arguments 35 #   includingTax: (self-explanatory) 36 (: Boolean! = true): MonetaryValue!  37 38 # Arguments 39 #   includingTax: (self-explanatory) 40 (: Boolean! = true): MonetaryValue!  41 42 : Float!  43 44 : Float!  45 46 # Arguments 47 #   includingTax: (self-explanatory) 48 (: Boolean! = true): MonetaryValue!  49 50 : OrderLineCampaign  51 52 #   Required permission: Brand:read 53 #  54 #   Store restrictions apply. 55 : Brand  56 57 #   Required permission: Category:read 58 #  59 #   Store restrictions apply. 60 : Category  61 62 #   Required permission: Collection:read 63 : Collection  64 65 #   Required permission: DeliveryWindow:read 66 #  67 #   Store restrictions apply. 68 : DeliveryWindow  69 70 #   Required permission: Display:read 71 #  72 #   Store restrictions apply. 73 : Display  74 75 #   Required permission: Display:read 76 #  77 #   Store restrictions apply. 78 : DisplayItem  79 80 #   Required permission: Folder:read 81 : Folder  82 83 #   Required permission: Invoice:read 84 #  85 #   All elements are always returned 86 : [InvoiceLine!]!  87 88 #   Required permission: none 89 #  90 #   Store restrictions apply. 91 : Order!  92 93 #   Required permission: Product:read 94 : Product  95 96 #   Required permission: ProductVariant:read 97 : ProductVariant  98 99 #   Required permission: none 100 : ProductSize  101 102 #   Required permission: TaxRule:read 103 : TaxGroup  104 105 #   Required permission: Allocation:read 106 #  107 #   Limit is optional 108 #  109 # Arguments 110 #   where: (self-explanatory) 111 #   sort: (self-explanatory) 112 #   limit: (self-explanatory) 113 #   page: (self-explanatory) 114 (: AllocationFilter, : [AllocationSort!] = [id_ASC], : Int, : Int = 1): [Allocation!]!  115 116 : String  117 118 }