obsidian-todoist-plugin
obsidian-todoist-plugin copied to clipboard
Applying user-defined filters to the filter parameter
I have a number of user-defined filters within ToDoist itself.
Is it possible to use these rather than having to duplicate the logic in ToDoist and again within the plugin?
Example:
I have a filter called 'SOD: Work' which is made up of the following query 'today & @start-of-day-work'
The plugin errors when using this markdown
{
"name": "SoD: Work",
"filter": "SoD: Work"
}
but works when I use this
{
"name": "SoD: Work",
"filter": "today & @start-of-day-work"
}