Working with large floats

does dgraph supports large floats ( *big.Float in Golang ) ?

if it doesn’t what is the general approach on working with Dgraph and very large floats if one wants to use functions, like finding paths based on the size of a float compared to other floats in the path, etc ?

Thanks

Store large floats as strings in Dgraph and convert them back to big.Float in your application for precise calculations and comparisons.

2 Likes