I want to use neo4j-admin to import a larger quantity of CSV based data. In which way do I need to structure the header files to support the type timestamp in one of the files which are created?
My timestamp column looks like this:
2021-02-01 00:00:00
2020-12-29 16:14:00
Neo4j timestamp is a simple integer. ( UNIX timestamp )
If you want to use your format your with the date functions and DateTime type.
Cypher provides functions allowing for the creation and manipulation of values for each temporal type -- _Date_, _Time_, _LocalTime_, _DateTime_, and _LocalDateTime_.
1 Like
However, this is all cypher based. I was looking for a solution that is directly operating on the bulk import toll of neo4j-admin.
Do I understand correctly that passing mycolumn:timestamp
- and the value as unixtimestamp (longs) should work?