Appearance
Return
Using table views
Use views to save filters and reuse the same dataset across your project.
Steps at a glance
- Create a view in
Data & API → → Tables. - Add filters and sorting to match your use case.
- Set access rules so the view is safe to use.
- Use the view in your interface (lists, grids, or a Data Grid).
1) Create a view
- Open
Data & API → → Tablesand select a table. - Open the
Viewssection for that table. - Click
Create viewand give it a name.
2) Configure the view
- Click
Filterand add one or more filter rules (for examplestatusisActive). - Click
Sortand choose how results should be ordered (for examplecreatedAtDesc). - If you need dynamic filters (like a search box), add a
Parameterand bind it in your filter value.
3) Secure the view (recommended)
Before you use the view in your app, check its Access setting:
- Use
Authenticatedif users must be signed in. - Use role-based rules (when available) if only some users should access it.
- Always filter “My items” views by the current user (for example a
Usercolumn linked to the signed-in user).
4) Use the view in your app
Use the view whenever you need a repeatable dataset:
- A list of active items.
- A dashboard table with sorting.
- A filtered “My items” page (when combined with the current user).
Typical ways to use a view:
- In a workflow, run
Fetch table viewand bind the result to your elements. - In a
Data Grid, pick the view as the data source.
Common pitfalls
The view is missing records
- Double-check your filters and make sure they match your actual data.
The view works but users still see data they should not
- Use the view
Accesssettings, and protect your APIs with access checks (who can call the endpoint) when data must be protected.

