You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -1822,7 +1822,6 @@ The next table lists all available operators:
1822
1822
| `greaterThanOrEqual` | The result is numerically greater than or equal to a single value. | Age is greater than or equal to: 65 |
1823
1823
| `inThePast` | The result is within the last N units (days, weeks, months, or years) from now. | Orders in the past: 7 days |
1824
1824
| `isAll` | The result includes all values in the list. | Category includes all: Book, Review, Science Fiction |
1825
-
| `isNotAll` | The result does not include all values in the list. | Category is not all: Book, Review, Science Fiction |
1826
1825
| `isAny` | The result includes some values in the list. | Author includes: Admin, Editor |
1827
1826
| `isNone` | The result does not include some values in the list. | Author excludes: Admin, Editor |
1828
1827
| `is` | The result is equal to a single value. | Author is: Admin |
@@ -1835,23 +1834,23 @@ The next table lists all available operators:
1835
1834
| `over` | The result is older than N units (days, weeks, months, or years) from now. | Orders over: 7 days ago |
1836
1835
| `startsWith` | The result starts with the given substring. | Title starts with: Mar |
1837
1836
1838
-
Some operators are single-selection: `is`, `isNot`, `on`, `notOn`, `lessThan`, `greaterThan`, `lessThanOrEqual`, `greaterThanOrEqual`, `before`, `after`, `beforeInc`, `afterInc`, `contains`, `notContains`, and `startsWith`. Others are multi-selection: `isAny`, `isNone`, `isAll`, and `isNotAll`. A filter cannot mix single-selection & multi-selection operators; if a single-selection operator is present in the list of valid operators, the multi-selection ones will be discarded, and the filter won't allow selecting more than one item.
1837
+
Some operators are single-selection: `is`, `isNot`, `on`, `notOn`, `lessThan`, `greaterThan`, `lessThanOrEqual`, `greaterThanOrEqual`, `before`, `after`, `beforeInc`, `afterInc`, `contains`, `notContains`, and `startsWith`. Others are multi-selection: `isAny`, `isNone`, `isAll`. A filter cannot mix single-selection & multi-selection operators; if a single-selection operator is present in the list of valid operators, the multi-selection ones will be discarded, and the filter won't allow selecting more than one item.
0 commit comments