Query Syntax
The Athena Query Language closely resembles SQL-like languages, making it intuitive for developers familiar with MySQL, Postgres, or MsSQL.
A query string consists of several optional components. If you submit an empty query or omit the query altogether, the response will contain all items accessible to the authenticated user.
The components of a query include expressions, keywords, and functions. The parser intelligently interprets your intentions, disregarding the casing in identifiers, keywords, functions, and operators.
An example query may look like:
branch.code = "60" AND department.isActive = true SORT(id, DESC)