Skip to content

Instantly share code, notes, and snippets.

@spmallette
Created March 16, 2023 17:44
Show Gist options
  • Save spmallette/5a2b8013eeeb9d7c951ea0ff2b716f0f to your computer and use it in GitHub Desktop.
Save spmallette/5a2b8013eeeb9d7c951ea0ff2b716f0f to your computer and use it in GitHub Desktop.
gremlin> g.V().has('age',between(29, 32)).elementMap()
==>[id:1,label:person,name:marko,age:29]
gremlin> g.V().has('age',between(29, 33)).elementMap()
==>[id:1,label:person,name:marko,age:29]
==>[id:4,label:person,name:josh,age:32]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment