Shipping in Orders

Hi Community!

I can’t find the Shipping (price) field in the Orders query. I’m reference to this field:
image
image

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
      }
    }
  }
}