I have a strange problem - I have a local neo4j instance v 2.3.8 and a remote server instance of neo4j v 3.1.4
I am in the process of rebuilding my graph on the remote server using the source files. This has been successful so far - I am able to import the csv files successfully on the remote server - I am accessing the remote server through the browser (remote http connection)
With literally the last file, I get the following error message on the remote server but the same works fine in my local neo4j instance:
Value
nullis not supported as key in maps, must be a non-nullable string.
The cypher query is:
Load csv with headers from "srcfile3.csv" as line
WITH line
return line limit 2
The error message seems to be generated from this file in the neo4j code: https://fossies.org/linux/neo4j/community/bolt/src/main/java/org/neo4j/bolt/v1/messaging/Neo4jPack.java, if that helps.