I am writing an app using django 1.4.5 and neo4django (github version). I have created a model
e.g.
class FloatValues(models.NodeModel):
a_float_value = models.StringProperty()
It looks like there is no a float property in neo4django, so I am thinking that I should either use a StringProperty or use an IntArrayProperty.
What is the best way to store a float value? (besides implementing a FloatProperty)