I created a csv file for importing relationship. My file contains duplicate rows. How could i ignore duplicate rows while creating relationship using neo4j-import? My aim is to achieve merge functionality rather than create, while importing.
neo4j-admin import
cannot filter duplicate relationships. Therefore pre-process your csv with the usual suspects sort
, uniq
on the cmd line.
Thank for the reply:slightly_smiling_face: