From 0aec3dbf333a7c43b700bddefa3f9adb1fd70ab5 Mon Sep 17 00:00:00 2001 From: Emma Short Date: Tue, 11 Jun 2024 00:30:21 -0700 Subject: [PATCH] Update ttcQuery --- ttcQuery.md | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/ttcQuery.md b/ttcQuery.md index c7c83c5..e7dee3a 100644 --- a/ttcQuery.md +++ b/ttcQuery.md @@ -18,16 +18,18 @@ Select: `[]` - Providing a number selects the ordinal item in the list - Providing a comparator selects items that match the comparator - Selectors can be separated by either commas for "and" or slashes for "or", but not both + Comparators: - `=` is similar to - `==` is exactly the same - `>` greater than - `<` less than - `>=` greater than or equal to - `<=` less than or equal to - `!!` is true/exists - `!` is not - `/` or, allows matching one or more comparators at the same time +- `=` is similar to +- `==` is exactly the same +- `>` greater than +- `<` less than +- `>=` greater than or equal to +- `<=` less than or equal to +- `!!` is true/exists +- `!` is not +- `/` or, allows matching one or more comparators at the same time + Combiner: `()` - Will only select items that match all of the selectors - Selectors can be separated by either commas for "and" or slashes for "or", but not both