load csv方法

  • LOAD CSV 用于将数据从CSV文件导入 Neo4j 数据库。LOAD CSV 支持本地和远程 URL。本地路径是相对于 Neo4j 安装文件夹解析的。

  • Neo4j 将所有导入的值读取为string类型,因此您需要转换任何非string类型的值

    toInteger():将值转换为integer。 toFloat():将值转换为float(例如,用于金额)。 datetime():将值转换为DateTime。