-1

Does someone have complete solution how to parse this date: 2017-11-28T23:00:00Z?

1 Answers1

0

Currently, the only format that does not need to be parsed manually is the one that includes milliseconds: 2017-11-28T23:00:00.000Z.

In your specific case, use parseDate(your-date-field; YYYY-MM-DDTHH:mm:ssZ).
The date/time parsing tokens are explained here.

Midimix
  • 281
  • 1
  • 2
  • 3