Filtering DSL
When you are working with database and use get_filtered_records
method you can use Tabbli filtering DSL for making queries. There are two types of filtering DSL formats:
dictionary based
URL parameters
The list of filtering parameters:
f-<property_name>
- filter by filtered or indexed property (supports a list of values with "OR" logic);nmin-<property_name>
- minimum value for a numeric property;nmax-<property_name>
- maximum value for a numeric property;ffrom-<property_name>
- using with date properties for filtering from specified date;fto-<property_name>
- using with date properties for filtering to specified date.
Example:
Filtering with URL parameters:
Last updated