Reputation: 10592
I have a date:
2016-04-13T09:57:21-04
Unless I am incorrect, this is a valid ISO format, but I am getting cast errors with Mongoose:
"Cast to date failed for value \"2016-04-13T09:57:21-04\" at path \"timestamp\""
I looked over some other SO posts, and from my understanding, valid ISO formats should work.
Am I missing something here?
Upvotes: 1
Views: 1134
Reputation: 533
You need to convert this string to Date object first. Mongoose expects Date instead of string.
Upvotes: 2