Appearance
Views
Views let you create reusable “saved lists” of records from a table, with filters, sorting, and optional parameters (dynamic inputs).
They’re useful when you want to show different parts of the same table (for example “My orders”, “Pending approvals”, “Last 30 days”) without rebuilding the logic each time.
Example use cases
- Admin review queue: restrict by role and filter for a specific status (e.g., pending)
- My items (per user): securely retrieve data belonging to the user signed in
- Recent activity: get all records that were created in the last 30 days, sorted by the most recent first
Creating a view
Views are created on top of a table.
To create a view:
- Go to
Database & APIs→Tables. - Select the table you want to create a view for.
- At the top of the table, click
New view. - (Optional) Rename the view by clicking its name.
WeWeb will create your new view and open it so you can start setting up Filters, Sort, and Parameters.
CREATING TABLES
Having a table is a prerequisite to creating views. If you are unsure what a table is or how to create one, you can learn more in the tables documentation→
Configuring a view
Once you have created a view, you are able to customise exactly how that view is filtered and sorted.
Filters
To configure filters, click Filter above the table to open the filter modal:
From here, you can add one or more rules:
- Choose the column you want to filter on.
- Choose the condition (for example “Is”, “Contains”, “Is after”, “Is empty”).
- Choose the value for the rule.
- You can type a fixed value, or bind it to a view
Parameterto make it dynamic.
- You can type a fixed value, or bind it to a view
DYNAMIC FILTERS
The ability to make filters dynamic is what makes them truly powerful.
To make a filter dynamic, you need to utilize Parameters
You also are able to apply more advanced filters, such as
Combining multiple conditions with And/Or logic
Example:
status is activeAndcreatedAt is after 1 Nov 2025Grouping related rules with
Add condition groupExample: Group “Text search” with
name Contains searchOrdescription Contains search, then at the root addAnd status is activeNesting groups (e.g., an
Andgroup inside anOrgroup) for complex logicExample:
(status is active And (type is Pro Or type is Enterprise))Toggling a filter to only be applied if there is a valid value
Example: Bind the value to the
searchparameter and set the rule to “apply only if value exists”; whensearchis empty the rule is skipped
Date and time filters
If your table has date or date/time columns, the filter modal includes conditions designed for dates (for example “Is before”, “Is after”, “Is between”, and relative options like “Last 7 days” when available).
Use these for “Recent activity” style views.
Filtering using relationships (linked tables)
If your table has relationship columns (linked rows), you can filter based on fields inside the linked table.
For example, in an Orders view you might filter on the linked Customer record’s email.
Typical flow:
- In the filter modal, choose the relationship column (for example
Customer). - Choose a field from the linked table (for example
email). - Pick a condition and value (for example “Contains” →
@weweb.io).
If your filter UI shows a scope selector, you can also “enter” a relationship scope first, then add filters inside that linked table scope.
Sorting
To configure sorting, click the Sort button above the table to open the sort modal:
From here, you can define how rows should be ordered by:
- Selecting the column you want to sort by
- Choose the order with the direction control (
AscorDesc)
You can then apply however many additional sorts you like by pressing Add sort:
Parameters
Parameters allow you to pass dynamic values into your views, allowing you to then pass these values onto your filters and sorting to make them truly dynamic.
To create parameters, click the Parameters button above the table.
To add a parameter:
- Click
Add parameter - Enter the
Parameter name - Choose a
Parameter type:Text,Number, orBoolean - (Optional) Set a
Default valueformula - Click
Save
Using Parameters
To use a parameter in filters and sorting:
- Bind the value used for a filter or sort
- Set it to use the newly created parameter
[INSET IMAGE OF PARAMETER IN BINDING WINDOW]
Now, whenever you use the Fetch table view action in a workflow from the interface, you will be able to define what you wish to pass in for the values of the view's parameters.
Practical examples:
- Text search: create parameter
search(Text), then filter:name Contains searchordescription Contains search - Price filter: set parameter
minPrice(Number), then filter:price greater than minPrice
[CREATE VIDEO GUIDE ON THESE EXAMPLES ^]
Securing your views
When you are creating a view, it is crucial that you ensure your users are only able to retrieve data that they are allowed to retrieve.
For example, an admin should be able to see all records, and a user should only be able to see records that belong to them.
There are multiple ways to secure your views depending on your requirements:
Securing based on authentication
If you wish to restrict access to a view simply depending on whether or not somone is signed in, then you can use the Access select.
Here you can easily restrict access to a view to only authenticated users (AKA users who are signed in)
Securing based on a specific role
[NEEDS ACCESS CHECK CONTENT]
Securing data to a specific user
To make it so that a user is only able to retrieve data that belongs to them, you need to:
- Create a column of type
User
- Link the appropriate records to their given user
- Set up a filter to get record linked to the current
This ensures the view only returns records that are linked to the user retrieving the data.
Relationships (linked rows)
Relationship columns let a view “reach into” linked tables. This is useful for:
- Filtering by fields on a linked record.
- Showing extra fields from the linked record (not just its ID).
Showing fields from a linked record (Columns panel)
In the view columns panel, relationship sections are typically grouped as:
References(Links from your table to another table)Referenced by(Tables that link back to your table)
To include data from a linked record, open the Columns panel and turn on the relationship using the toggle next to its name. Once it’s enabled, the relationship expands and shows a Columns section where you can pick which fields from the linked table should be included in the view results (or select all).
Next to an enabled relationship, you’ll also see a gear icon. This opens the relationship Settings, where you can:
- Set a
Display name (alias)to rename the relationship in this view. - Choose a
Join type:Left: Keeps rows even when the linked record is empty.Inner: Removes rows where the linked record is empty.
Nested relationships
You can configure relationships multiple levels deep (for example Order → Customer → Company) and apply filters to fields at each level.
Using a view in the interface
The flow of using a view in the interface is as follows:
- In a workflow, use a
Fetch table viewaction to get the data of your desired view. If you have any parameters set up, you will be able to define what should be passed to those parameters.
- When the
Fetch table viewaction has ran, you will then be able to access the data of the view from the binding menu.
- With the data of the view now available, you can use it in the interface. Meaning, you could bind it to a repeating list of items to display the data.
Continue learning
Once you have your tables created and are using views to appropriately display the data, the next core step will likely be setting up secure logic using backend workflows.

