Decimal data type?

Is there a data type in Neo4j similar to SQL's decimal type?

From my understanding, Neo only has a FLOAT type, which does not format decimals like we need it (ex, 130.10 may become 130.10000610351562).

We do use round() functions wherever possible. However, we have some use cases where we want to just have our property rounded to 2 decimals (such as NeoDash).

Thank you.

@henry007

does apoc.number.format - APOC Documentation suffice?