pub fn parse(source: &str) -> Result<Query, ParseError>Expand description
Parse a BQL query string.
ยงErrors
Returns a ParseError if the query string is malformed, or if
parenthesis nesting exceeds the internal nesting limit (rejected up
front to bound parse time and stack depth).