Library to create Anki search queries.
Note that this crate does not actually execute the searches. It only creates search queries as strings. These strings could be entered directly into the application by the user, or paired with an AnkiConnect request. (See also my wrapper crate)
The following code:
and!(
prop!(due == 0),
is_learn(),
not!(introduced(1)),
).to_string();Generates the following query string:
prop:due=0 is:learn -introduced:1
This crate is not exhaustive and there are some search features missing. Pull requests are welcome to fill in the rest of the gaps.
- Some searching features are missing
- Quality of life improvements