Show next actions, but not notes

I’m trying to search for next actions using project *//not @done[0]. However, I often have notes about a project just under the project name so I get the note showing up.

How can I get a filter of all projects with their next actions (first task) ignoring notes if there are any?

I think this will do it:

project *//@type task and not @done[0]
2 Likes

That works! Thank you!

1 Like