Query Presets
Query Presets allow you to save and share filters, columns, and sort orders for your Collections. This is useful for reusing common or complex filtering patterns and/or sharing them across your team.
Each Query Preset is saved as a new record in the database under the payload-query-presets
collection. This allows for an endless number of preset configurations, where the users of your app define the presets that are most useful to them, rather than being hard coded into the Payload Config.
Within the Admin Panel, Query Presets are applied to the List View. When enabled, new controls are displayed for users to manage presets. Once saved, these presets can be loaded up at any time and optionally shared with others.
To enable Query Presets on a Collection, use the enableQueryPresets
property in your Collection Config:
Config Options
While not required, you may want to customize the behavior of Query Presets to suit your needs, such as add custom labels or access control rules.
Settings for Query Presets are managed on the queryPresets
property at the root of your Payload Config:
The following options are available for Query Presets:
Option | Description |
---|---|
| Used to define custom collection-level access control that applies to all presets. More details. |
| Used to define custom document-level access control that apply to individual presets. More details. |
| Custom labels to use for the Query Presets collection. |
Access Control
Query Presets are subject to the same Access Control as the rest of Payload. This means you can use the same patterns you are already familiar with to control who can read, update, and delete presets.
Access Control for Query Presets can be customized in two ways:
- Collection Access Control: Applies to all presets. These rules are not controllable by the user and are statically defined in the config.
- Document Access Control: Applies to each individual preset. These rules are controllable by the user and are saved to the document.
Collection Access Control
Collection-level access control applies to all presets within the Query Presets collection. Users cannot control these rules, they are written statically in your config.
To add Collection Access Control, use the queryPresets.access
property in your Payload Config:
This example restricts all Query Presets to users with the role of admin
.
Document Access Control
You can also define access control rules that apply to each specific preset. Users have the ability to define and modify these rules on the fly as they manage presets. These are saved dynamically in the database on each document.
When a user manages a preset, document-level access control options will be available to them in the Admin Panel for each operation.
By default, Payload provides a set of sensible defaults for all Query Presets, but you can customize these rules to suit your needs:
- Only Me: Only the user who created the preset can read, update, and delete it.
- Everyone: All users can read, update, and delete the preset.
- Specific Users: Only select users can read, update, and delete the preset.
Custom Access Control
You can augment the default access control rules with your own custom rules. This can be useful for creating more complex access control patterns that the defaults don't provide, such as for RBAC.
Adding custom access control rules requires:
- A label to display in the dropdown
- A set of fields to conditionally render when that option is selected
- A function that returns the access control rules for that option
To do this, use the queryPresets.constraints
property in your Payload Config.
In this example, we've added a new option called Specific Roles
that allows users to select from a list of roles. When this option is selected, the user will be prompted to select one or more roles from a list of options. The access control rule for this option is that the user operating on the preset must have one of the selected roles.
The following options are available for each constraint:
Option | Description |
---|---|
| The label to display in the dropdown for this constraint. |
| The value to store in the database when this constraint is selected. |
| An array of fields to render when this constraint is selected. |
| A function that determines the access control rules for this constraint. |