如何把neo4j社区版里的所有关系以三元组的形式导出
希望能够获得图关系里面的所有三元关系组,但是一直找不到能够把数据库中数据导出的成功方法
5 回复
需要使用APOC:
CALL apoc.export.csv.query(
'MATCH (n)-[r]->(m) RETURN n,r,m',
'export/query.txt',
{quotes:'none',useTypes:true}
)
YIELD file,nodes,relationships,properties,time
,rows,batchSize,batches,done,data
RETURN file,nodes,relationships,properties,time
,rows,batchSize,batches,done,data
@graphway Invalid input ‘‘’: expected whitespace, comment, an expression or ‘)’ (line 2, column 1 (offset: 28)) "‘MATCH (n)-[r]->(m) RETURN n,r,m’," ^ 会报错啊大佬