grim icon indicating copy to clipboard operation
grim copied to clipboard

Filter path collections on properties

Open ebran opened this issue 4 years ago • 0 comments

When navigating paths, allow for filtering nodes/edges on properties. One suggestion for how this may work:

var pc = g
  .navigate("Person", nodeFilter={"name": "Alice"})
  .step("KNOWS", "Person", relFilter={"since": 2012}, nodeFilter={"name": "Bob"})
  .step("KNOWS, "Person", relFilter={"since": 2008}, nodeFilter={"name": "Charlie"})

ebran avatar Mar 09 '20 20:03 ebran