Neo4j-admin import CSV timestamp datatype

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.

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?