We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The MERGE accepts a pattern to merge, and optionally a clause to execute when the pattern is created and/or when it is matched.
MERGE
$a = Query::node("a"); $statement = Query::new() ->merge($a) ->build(); $this->assertSame("MERGE (:a)", $statement);