I've got a flow that queries an Oracle DB and returns a datetime stamp, I'm then formatting it using a template node for ingestion into a Tulip Table node.
For some reason the template node is deciding that it should change the format of the stamp:
Input:
msg.completeDate: "2021-04-24T04:00:00.000Z"
Template node contents:
{
"sfhqp_date_completed": "{{completeDate}}"
}
Output from the template node:
sfhqp_date_completed: "Sat Apr 24 2021 00:00:00 GMT-0400 (Eastern Daylight Time)"
Why is the template node changing the timestamp format?
I can't share too much for company reasons but if needed I can create a minimal reproducer in a separate flow but hopefully that's not needed.