diff --git a/README.md b/README.md index 5ec22bd..7e57877 100644 --- a/README.md +++ b/README.md @@ -384,12 +384,8 @@ Filter operators must be whitelisted per column in `PaginateConfig`. const config: PaginateConfig = { // ... filterableColumns: { - // Whitelist operators individually - id: [FilterOperator.EQ, FilterSuffix.NOT], - 'toys.name': [FilterOperator.IN], - - // Whitelist all operators on a single column - age: true, + id: [FilterOperator.EQ, FilterSuffix.NOT], // Enable individual operators + age: true, // Enable all operators on a single column }, } ```