Skip to main content

Module query

Module query 

Source
Expand description

Simple Cypher-like query parser

Supports basic patterns:

  • MATCH (n:Label) RETURN n.name
  • MATCH (n:Label {key: “value”}) RETURN n
  • MATCH (a)-[:REL]->(b) RETURN a, b

Structs§

NodePattern

Enums§

Pattern
Query

Functions§

execute
Execute a query against the backend
parse
Parse a simple Cypher-like query