inventoryItem.measurement.weight decimal precision

I’m using the following GraphQL query to retrieve the weight:

inventoryItem {
  measurement {
    weight {
      unit
      value
    }
  }
}

In the response, I noticed that the weight value with the lb (pound) unit is always rounded to two decimal places, even though the original data contains more decimal places.

How can I retrieve the weight value with its full precision?

“I think this is currently not possible because Shopify defines the data type for this field as Float.”