Avala’s query language lets you filter dataset items, annotations, and export results using structured expressions. Use it in the search bar, export filters, and theDocumentation Index
Fetch the complete documentation index at: https://avala.ai/docs/llms.txt
Use this file to discover all available pages before exploring further.
filter_query_string parameter in the Exports API.
Operators
| Operator | Description | Example |
|---|---|---|
= | Equal to | annotation.label = "car" |
!= | Not equal to | annotation.label != "unknown" |
> | Greater than | annotation.attribute.confidence > 0.9 |
< | Less than | annotation.attribute.confidence < 0.5 |
>= | Greater than or equal to | annotation.attribute.area >= 100 |
<= | Less than or equal to | annotation.attribute.area <= 500 |
Logical Operators
Combine multiple conditions withAND, OR, and NOT. Use parentheses to control grouping.
| Operator | Description | Example |
|---|---|---|
AND | Both conditions must be true | annotation.label = "car" AND annotation.attribute.occluded = "false" |
OR | Either condition must be true | annotation.label = "car" OR annotation.label = "truck" |
NOT | Negates a condition | NOT annotation.label = "unknown" |
( ) | Groups conditions | (annotation.label = "car" OR annotation.label = "truck") AND annotation.attribute.truncated = "false" |
Annotation Queries
Filter by annotation properties.By Label
By Attribute
Query annotation attributes using dot notation:By Annotation Type
Metadata Queries
Filter items by custom metadata fields attached to dataset items. Use themetadata. prefix followed by the field name:
Metadata field names are case-sensitive and must match the exact field name used when the metadata was uploaded.