helix-query-from-gremlin
Installation
SKILL.md
Gremlin To HelixDB v3 Requests
Translate Gremlin into the published helix-db = "3.0.0" Rust SDK by turning
imperative step chains into explicit anchors, traversals, predicates, and result
shaping. The builder produces a direct QueryRequest for
client.query(request); do not introduce stored routes, registration, or bundles.
When To Use
Use this skill when the task is to:
- translate a Gremlin traversal into Helix Rust DSL
- port a TinkerPop query into a Helix query
- replace
g.V,hasLabel,has,out,in,both,outE,inE,repeat,emit,dedup,count,range, orlimitwith Helix DSL equivalents - explain how a Gremlin traversal should be expressed in Helix Rust
Do not use this skill as the main guide for Cypher, SQL, or direct raw JSON.