I have a student node with the below props.
{hopper=[true], updatedDate=[Fri Sep 16 09:28:40 UTC 2022], userId=[9c40uvdqkjjmcv4c7f4u3m7gpv], firstName=[Mounika], lastName=[Mandadi], vLabel=[Student]}
I need to query out all the student nodes whose updatedDate is less than a given date.
Queries I have tried:
g.V().has("Student","updatedDate",gt("Fri Sep 17 09:28:40 UTC
2022")).count()
This havent worked. What is the correct way to query? What index is preferrable for date comparision queries?