Hi. I'm trying to find the right query for this problem, if such a query exists.
Scenario
Example
Project = ABC AND [Custom Field] = XYZ OR sub-tasks of (Project = ABC AND [Custom Field] = XYZ)
Is this possible?
Hello @Mike Lee
Jira does not natively support nesting filters in that manner.
You can get the subtasks of issues, but you must provide the actual issue keys for the parent issues.
This can be done with third party apps, though. Are you will to consider getting such an app or do you already have one that extends the issue searching capabilities?
hi @Mike Lee
JQL
(Project = ABC AND [Custom Field] = XYZ) OR issueFunction in subtasksOf('Project = ABC AND [Custom Field] = XYZ')
works for me
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You need to include with your answer that it requires a third party app, and state which app you are using.
"issueFunction" is not a native Jira Cloud feature. It is supplied by a third party app.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thanks for information
it's possible. we use several third party plugins/addons
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.