I need to insert date value in a node. Something like creation date for another node. But in cayley, we could only insert string datatype. I may use the toString()
and save the date as string. But, while retrieving, I need to filter by giving a date range. How would I possibly do this?
BTW, I'm using gremlin programming language to retrieve.
Perhaps you can store the dates as unix time-stamps? That way, even if you do a string comparison you'll get the correct results.