Skip to main content

parse

Function parse 

Source
pub fn parse(input: &str) -> Result<QueryNode, QueryParseError>
Expand description

Parse a query string into a QueryNode.

This is the only public entry point. Implements the v0.2.0 grammar top-down via recursive descent: or_expr at the outermost level, and_expr one level in, clause at the leaves.