Hi,
How to avoid creating multiple nodes in neo4j if properties are the same?
Currently, I am using create a function to create the nodes but with this, it is creating multiple nodes every time.
query = "CREATE (o:Organization $props) RETURN o"
nodes...