HelixQL
Query Structure
Display inline code and code blocks
Basic Query Syntax
HelixQL is built to be declarative query language that uses a functional syntax to traverse the graph and vector data.
Example Query Syntax:
Components:
QUERY
: Keyword to start a query definitionQueryName
: Identifier for the queryparameters
: Input parameters in parenthesesType
: Type of the parameter (e.g.String
,I32
,F64
,Boolean
,[Type]
or schema Node/Edge)=>
: Separates query header from body<-
: Assignment operatorRETURN
: Specifies output values
See next page for traversal_expression…