apoc.number.exact.toExact

Function

apoc.number.exact.toExact(number Integer) - returns the exact value of the given number (using Java BigDecimal).

Signature

apoc.number.exact.toExact(number :: INTEGER?) :: (INTEGER?)

Input parameters

Name Type Default

number

INTEGER?

null

Usage Examples

RETURN apoc.number.exact.toExact(1213669989) as output;
Table 1. Results
output

RETURN apoc.number.exact.toExact('1213669989') as output;