Skip to content

Updating visuals

If you see any images containing outdated UI, please bear with us.

We are updating all content as quickly as possible to mirror our new UI.

Return

Using table views

Use views to save filters and reuse the same dataset across your project.

Steps at a glance

  1. Create a view in Data & API → → Tables.
  2. Add filters and sorting to match your use case.
  3. Set access rules so the view is safe to use.
  4. Use the view in your interface (lists, grids, or a Data Grid).

1) Create a view

  1. Open Data & API → → Tables and select a table.
  2. Open the Views section for that table.
  3. Click Create view and give it a name.

2) Configure the view

  • Click Filter and add one or more filter rules (for example status is Active).
  • Click Sort and choose how results should be ordered (for example createdAt Desc).
  • If you need dynamic filters (like a search box), add a Parameter and bind it in your filter value.

Before you use the view in your app, check its Access setting:

  • Use Authenticated if 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 User column 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 view and 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 Access settings, and protect your APIs with access checks (who can call the endpoint) when data must be protected.