helix-query-from-cypher
Installation
SKILL.md
Cypher To HelixDB v3 Requests
Translate Cypher into the published helix-db = "3.0.0" Rust SDK by mapping
patterns into explicit anchors, traversals, predicates, and return shaping. The
resulting builder or #[query] function produces a direct QueryRequest for
client.query(request); do not introduce stored routes or registration.
When To Use
Use this skill when the task is to:
- translate a Cypher query into Helix Rust DSL
- port a Neo4j query into a Helix query
- replace
MATCH,OPTIONAL MATCH,WHERE,RETURN,DISTINCT,ORDER BY,LIMIT,MERGE,CASE,UNWIND,FOREACH, orDETACH DELETEwith Helix DSL equivalents - explain how a Cypher graph pattern should be expressed in Helix Rust
Do not use this skill as the main guide for Gremlin, SQL, or direct raw JSON.