Documentation updates/fixes

This commit is contained in:
eikek
2021-06-16 23:57:58 +02:00
parent 4345ab1876
commit ea614c22a7
10 changed files with 77 additions and 177 deletions

View File

@ -520,9 +520,9 @@ Find items with 2 or more attachments:
attach.count>2
```
Find items with at least one tag invoice or todo:
Find items with at least one tag invoice or todo that are due next:
```
tag:invoice,todo
tag:invoice,todo due>today
```
Find items with at least both tags invoice and todo:
@ -544,3 +544,14 @@ Find items within the last 30 days:
```
date>today;-30d
```
Find items with a custom field `paid` set to any value:
```
f:paid:*
```
Find items that have been paid with more than $100 (using custom
fields `paid` as a date and `usd` as money):
```
f:paid:* f:usd>100
```