postgraph icon indicating copy to clipboard operation
postgraph copied to clipboard

Add FROM Clause

Open JoshInnis opened this issue 7 months ago • 0 comments

Allow users to alter the Graph they are using midquery using the FROM clause

SELECT * FROM cypher('graph1', $$
MATCH (a)
FROM graph2
MATCH (b) WHERE a.id = b.foreign_key
...
$$) as (...);

Throw error if trying to use an enetity from another graph in a MATCH path, CREATE path, MERGE path.

For this task, don't Allow SET or DELETE, because we need to really modify them to work, so separate them into other tasks.

JoshInnis avatar Nov 25 '23 17:11 JoshInnis