apoc.number.exact.toExact

Details

Syntax

apoc.number.exact.toExact(number)

Description

Returns the exact value of the given number (using Java BigDecimal).

Arguments

Name

Type

Description

number

INTEGER

An integer to receive the exact value of.

Returns

INTEGER

Usage Examples

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

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