Open
Description
opened on Nov 19, 2024
There are six filter operators in DataViews and each one of them comes with a label:
Operator | Label | Description | Example |
---|---|---|---|
is |
"is" | EQUAL TO . The item's field is equal to a single value. |
Author is Admin |
isNot |
"is not" | NOT EQUAL TO . The item's field is not equal to a single value. |
Author is not Admin |
isAny |
"is any" | OR . The item's field is present in a list of values. |
Author is any: Admin, Editor |
isNone |
"is none" | NOT OR . The item's field is not present in a list of values. |
Author is none: Admin, Editor |
isAll |
"is all" | AND . The item's field has all of the values in the list. |
Category is all: Book, Review, Science Fiction |
isNotAll |
"is not all" | NOT AND . The item's field doesn't have all of the values in the list. |
Category is not all: Book, Review, Science Fiction |
This issue is to discuss improvements to the existing labels.
Is there a better copy for them?
For example, would includes
be more user friendly than is any
?
How to handle singular vs plural field names
"Author is ..." works fine because the field name is singular. But what if the field was plural? We'd end up with "Authors is ...".
Activity