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).
I've the same question. My application is in financial setting, and I definitely need decimal type (cannot do rounding, need data to be preserved exactly as computed).