From 1ec59beb8bad8e37efbede411df915e577c1949e Mon Sep 17 00:00:00 2001 From: Thomas Trompette Date: Fri, 19 Jun 2026 12:58:50 +0200 Subject: [PATCH] docs(user-guide): remove unsupported Between operator for Number filters (#21838) ## What The [Filters & Sorting user guide](https://docs.twenty.com/user-guide/views-pipelines/capabilities/filters-and-sorting) lists a **Between** operator for **Number** fields, but it does not exist in the product and we do not plan to implement it. This removes it from the operators table. | Field Type | Before | After | |---|---|---| | Number | Equals, Greater than, Less than, **Between**, Is empty | Equals, Greater than, Less than, Is empty | The **Date** row is intentionally left untouched. ## Why Avoids documenting a capability that does not exist (the same gap that prompted #20932). Closing the external PR that attempted to add it for numbers; the docs should reflect what we actually ship. ## Notes - Only the canonical English source is edited; localized copies under `packages/twenty-docs/l/*` are regenerated by the existing i18n docs-translation workflow. Review in cubic --- .../views-pipelines/capabilities/filters-and-sorting.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/twenty-docs/user-guide/views-pipelines/capabilities/filters-and-sorting.mdx b/packages/twenty-docs/user-guide/views-pipelines/capabilities/filters-and-sorting.mdx index ae66bdd20f..e8db71caaa 100644 --- a/packages/twenty-docs/user-guide/views-pipelines/capabilities/filters-and-sorting.mdx +++ b/packages/twenty-docs/user-guide/views-pipelines/capabilities/filters-and-sorting.mdx @@ -20,7 +20,7 @@ Filters help you focus on specific records by showing only those that match your | Field Type | Available Operators | |------------|---------------------| | Text | Equals, Contains, Starts with, Ends with, Is empty | -| Number | Equals, Greater than, Less than, Between, Is empty | +| Number | Equals, Greater than, Less than, Is empty | | Date | Equals, Before, After, Between, Is empty | | Select | Equals, Is any of, Is empty | | Checkbox | Is true, Is false |