Hi,
I have created a fulltext index like so:
CALL db.index.fulltext.createNodeIndex("PersonIndex",["Person"],["age"])
the "age" is a numeric property. query on this index not worked.
If we consider age as a string property, then range searching like "age:[20 TO 30]" does not give the correct answer.
What is the best solution for storing numeric properties?