I have found that I need to specify predicate types as int in my schema or else numbers get stored as type float
:
MyNumericalProperty: int @index(int) .
I have facets that are also numbers, and in the JSON returned from dgraph they appear like so:
"MyProperty|MyPropertyFacet":1.000000
Is there a way to add this to the schema as an int?