We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MATCH (p:person) WHERE id(p) in [0,1,3] RETURN p.name
marko
vadas
MATCH (p:person) WHERE id(p) in {ids} RETURN p.name
within
Full test case for org.opencypher.gremlin.queries.ParameterTest:
org.opencypher.gremlin.queries.ParameterTest
@Test public void matchWithin() { List<Map<String, Object>> results = submitAndGet( "MATCH (p:person) WHERE id(p) in {ids} RETURN p.name", singletonMap("ids", asList(0L, 1L, 3L)) ); assertThat(results) .extracting("p.name") .containsExactly("marko", "vadas"); }
The text was updated successfully, but these errors were encountered:
Optimization: GroupStepFilter to handle within (#331)
4b70694
- resolves #329 Signed-off-by: Dwitry [email protected]
No branches or pull requests
MATCH (p:person) WHERE id(p) in [0,1,3] RETURN p.name
returnsmarko
,vadas
MATCH (p:person) WHERE id(p) in {ids} RETURN p.name
returns no recordswithin
#331Full test case for
org.opencypher.gremlin.queries.ParameterTest
:The text was updated successfully, but these errors were encountered: