Hi! So one recent change is that id() is depreciated in favor of elementid() as of version 5.
But I often want to solve the problem of connecting an arbitrary node to another node
def attach_user_to_node(email_address, node, label = "PARENT"):
with driver.session() as session:
query = """
MATCH (n) WHERE id(n) = $node_id
WITH n
MERGE (u:User {email_address: $email_address})
MERGE (u)-[:%s]->(n)
RETURN u
"""%label
For example, with this kind of code.
You might think: Well just replace that with elementId() so they are known unique to the DB, but this in theory won't work because elementId() is unique to each transaction according to the documentation! (In practice - it works, but I fear it will fail silently!)
As far as I can tell I run all my code in different transactions using the Python driver?
What's the right way to do this?
Keep in mind, the type of the node is not specified and I'm guaranteed it won't get deleted in the middle (which was why I used id() in the first place).
Thanks in advance!