I am trying to set a board. This will contain all tasks/stories that are in epics that have a certain label.
To test it out I used the following 2 queries:
project = "CMSS" and type = story and "Epic Link" in ('CMSS-2077')
=> This finds 2 rows
project = "CMSS" and type = story and issueFunction in issuesInEpics("key in (CMSS-2077)")
=> this finds 0 rows and does not give an error message.
The function "subtasksOf" works properly.
What could be wrong here ?