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 RETURN clause accepts a set of expressions to return, as well as whether or not to return only DISTINCT results.
RETURN
DISTINCT
$a = Query::variable("a"); $b = Query::variable("b"); $statement = Query::new() ->returning([$a, $b], true) ->build(); $this->assertSame("RETURN DISTINCT a, b", $statement);