From 3a6352e0a72076cfce04e9a39b8f31702f506654 Mon Sep 17 00:00:00 2001 From: Jacopo Scazzosi Date: Wed, 23 Oct 2024 12:44:53 +0200 Subject: [PATCH] adds lt, lte, gt, gte filter operators to README.md --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 2f5af60..c4bddf3 100644 --- a/README.md +++ b/README.md @@ -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(