Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
03-10-2019 10:21 AM
I need to convert date 8 July 2013 to 7/8/2013 format. Any solution?
Solved! Go to Solution.
03-11-2019 10:25 AM
More specifically the APOC function call would be:
return apoc.date.parse('8 July 2013', 'ms', 'dd MMMM yyyy')
03-11-2019 05:22 AM
use apoc.date.parse/format
.
03-11-2019 10:25 AM
More specifically the APOC function call would be:
return apoc.date.parse('8 July 2013', 'ms', 'dd MMMM yyyy')
03-11-2019 02:06 PM
Thanks Stefan and Andrew for the suggestions. This worked for me:
return apoc.date.format(apoc.date.parse('8 July 2013', 'ms', 'dd MMMM yyyy'), 'ms', 'MM/dd/yyyy')
Result: 07/08/2013
All the sessions of the conference are now available online