Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
10-09-2019 06:47 PM
when i import CSV file into neo4j browser,there is a row called CreationDate. it has a different type of date format. so i use python to convert them into the same format. the python code is below:
however, i want this CreationDate data can be calculate in the neo4j, so when i import the final file into neo4j, use DateTime type but there always errors:
how can i change string type into DateTime type?
or how can i import appropriate format so that i can calculate easily
10-14-2019 01:16 PM
You don't need the brackets around {row.CreationDate}
, as Cypher is interpreting this as a map literal, or as parameter access. Just use row.CreationDate
without brackets.
04-07-2020 06:42 AM
What's worked for me is this:
datetime({epochMillis:apoc.date.parse(row['end date'],'ms', 'dd/MM/yyyy')})
Using a combination of the datetime() function and the apoc.date.parse() function.
All the sessions of the conference are now available online