useDataGrid by using the filters.permanent property. This property sets the permanent value of the filter, which is unchangeable and will not be cleared when the user changes the filter.name field contains the value "Foo".CrudFilters interface in the Refine documentation (https://refine.dev/docs/api-reference/core/interfaceReferences/#crudfilters).Note: you can ask me a follow up question by @ mentioning me again useDataGridfilters.permanentCrudFiltersuseDataGrid({
filters: {
permanent: [
{
field: "name",
operator: "contains",
value: "Foo",
},
],
},
});