Global Filters
Configuring a global filter in Umbraco UI Builder, the backoffice UI builder for Umbraco.
If you want to work with a subset of data within a given collection then this is where the global filters come in handy. These allow you to define a filter to apply to all queries for a given collection.
Sets the filter where clause expression. Expression must be a
boolean
expression.// Example
collectionConfig.SetFilter(p => p.Current);
Last modified 1mo ago