Hi all,
I'm trying to work with the joplin.data API to retrieve all ToDos from Joplin but ignoring certain folders. To achieve this, I have tried to use a query, but it doesn't change the results at all. It currently looks like
query:
is_todo = 1 AND parent_id NOT IN ("${Array.from(ignoredFolderIds).join('","')}"),`
Since I haven't found any documentation on the query, I feel rather lost. Does anybody has experience with this?
PS: I want to filter the result from the API since it seems easier on the ressources. Is this impression correct?