apoc.number.exact.toExact
Function
apoc.number.exact.toExact(number Integer)
- returns the exact value of the given number (using Java BigDecimal).
Usage Examples
RETURN apoc.number.exact.toExact(1213669989) as output;
output |
---|
RETURN apoc.number.exact.toExact('1213669989') as output; |
Was this page helpful?