PARSE_0002 — unbalanced-parentheses

Error Code: PARSE_0002

Message: Parentheses are unbalanced in the query

Problematic query:

(a AND b OR c

Recommended query:

(a AND b) OR c

Typical fix: Check the parentheses in the query

Back to: Lint