Skip to content

REMOVE clause

Marijn van Wezel edited this page Nov 15, 2021 · 5 revisions

The REMOVE clause accepts a list of expressions to remove.

Examples

$n = Query::variable("n")->withLabels(["foo"]);

$statement = Query::new()
	->remove($n)
	->build();

$this->assertSame("REMOVE n:foo", $statement);
Clone this wiki locally