Float
Double-precision floating-point scalar type
Format
Usage
type ItemMovement {
quantity: Float!
unitPrice: Float
totalValue: Float
}
mutation {
createItemMovement(input: {
quantity: 10.5
unitPrice: 29.99
}) {
itemMovement {
totalValue # Returns Float
}
}
}Common Float Fields
Precision Considerations
Best Practices
See Also
Last updated
Was this helpful?
