Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion content/collections/docs/conditions.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ The following conditions apply to fields with data stored as strings.
| `contains` | Include if field **contains** value. |
| `doesnt_contain` | Include if field **doesn't contain** value. |
| `in` | Include if field value is **in** the provided array. |
| `not_in` | Include if field value is **not_in** the provided array. |
| `not_in` | Include if field value is **not in** the provided array. |
| `starts_with` | Include if field **starts with** value. |
| `doesnt_start_with` | Include if field **doesn't start** with value. |
| `ends_with` | Include if field **ends with** value. |
Expand All @@ -232,6 +232,15 @@ The following conditions apply to fields with data stored as strings.
| `is_before` | Include if field **is before** date. |
| `is_numberwang` | Include if field **is numberwang**. |

## Array conditions

The following conditions apply to fields with data stored as an array.

| Condition | Description |
| :--- | :--- |
| `overlaps` | Include if any field value **matches** the provided array (has). |
| `doesnt_overlap` | Include if **no** value **matches** the provided array (has not). |

## Taxonomy conditions

[Taxonomy](/taxonomies) conditions are a little bit different. They start with `taxonomy:`, followed by the taxonomy name, an optional modifier argument, and finally the term you're seeking.
Expand Down