Skip to content

Commit

Permalink
adds lt, lte, gt, gte filter operators to README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jacoscaz committed Oct 23, 2024
1 parent b4dd3a2 commit 3a6352e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,16 @@ foo($=bar) matches tasks with tag "foo" ending with "bar"
foo(*=bar*) matches tasks with tag "foo" matching the pattern "bar*"
```

Additionally, the following operators may be used to filter tasks based on the
lexicographical ordering of tag values:

```
foo(>=bar) matches tasks with tag "foo" greater than or equal to "bar"
foo(<=bar) matches tasks with tag "foo" lower than or equal to "bar"
foo(>bar) matches tasks with tag "foo" greater than "bar"
foo(<bar) matches tasks with tag "foo" lower than "bar"
```

Filtering expressions can be combined:

```
Expand Down

0 comments on commit 3a6352e

Please sign in to comment.