I’m trying to create a filter showing only cards that are in the outline and contain tasks to be completed. This is not working:
{
"type": "group",
"op": "and",
"filters": [
{
"type": "visibility",
"op": "equals",
"arg": -1,
"name": "Priority",
"inv": null,
"case_sensitive": null
},
{
"type": "perms",
"op": "can",
"arg": 16,
"name": null,
"inv": null,
"case_sensitive": null
},
{
"type": "markup",
"op": "contains",
"arg": "- [ ]",
"name": null,
"inv": null,
"case_sensitive": null
}
]
}
What am I doing wrong here?