Currently, I have a quick filter to show me my task that does this:
assignee = currentUser()
This works ok, but doesn\'t show me tasks that are
Create a filter for all of your subtask from the following JQL:
issuetype in subtaskIssueTypes() and assignee = currentUser()
Then, using Craftforge JQL Functions Plugin, use the following JQL to find their parents:
issue in parentIssuesFromFilter("filter name or its id")