In my cosmos db a date field is stored as string like this { "ValidationWeekStartDay": "27-Apr-2020" }
I have to write a query to extract all documents whose ValidationWeekStartDay is greater than current date. How can I achieve this in cosmos db query?
Select * from c wher c.ValidationWeekStartDay > GetCurrentDateTime ()
this does not give me correct result.