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?
