andreac0 opened a new issue, #2296:
URL: https://github.com/apache/age/issues/2296
I'm experiencing an issue with updating existing edges, both with SET and
REMOVE clauses, like:
```pgsql
SELECT * from cypher('graph_db', $$
MATCH (a:Unit)-[r]->(a2:Unit)
WHERE id(r) = 2251799813685248
and id(a) = 1271707596566772
and id(a2) = 1370660530906101
set r.testnew = "hello"
$$) as (update agtype);
```
this result in the creation of an additional edge, of the same type of r,
with the new/updated/removed property, effectively creating a duplicated edge.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]