You mean crazy shit like this?
```
{"type": "eval", "expr": "new Date().getMinutes()", "as": "minute", "display": false},
{"type": "data", "bind": "$.minute", "label": "Current minute: "},
{"type": "hr"},
{
"type": "if",
"condition": "$.minute % 2 == 1",
"then": [
{"type": "text", "value": "Minute is ODD - querying notes..."},
{"type": "query", "filter": {"kinds": [1], "limit": 3}, "as": "notes", "children": [
{"type": "foreach", "items": "$.notes", "as": "note", "template": {
"type": "container", "children": [
{"type": "text", "bind": "$.note.content"}
]
}}
]}
],
"else": [
{"type": "text", "value": "Minute is EVEN - showing different content"},
{"type": "text", "value": "Refresh on an odd minute to see notes!"}
]
}
```
View quoted note →