Hi Community!
I can’t find the Shipping (price) field in the Orders query. I’m reference to this field:
Thanks in advance for your help!
Hi Community!
I can’t find the Shipping (price) field in the Orders query. I’m reference to this field:
Thanks in advance for your help!
In the order query, the price is in shipping_lines:
query {
order(id: "<order id here>") {
request_id
complexity
data {
shipping_lines {
price
}
}
}
}