Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get specific assignee of a story, subtask with a specific summary in JIRA?

Tags:

jql

I am using JIRA version v8.5.9, where I am running the following query in its search option.

issuetype = "Sub task" AND assigned == 'xyz' and summary = '16.4'

Where xyz is a user. Basically what I am trying to achieve is: I am looking for all stories, sub-tasks whose assignee is xyz user along with its summary should contain 16.4 in it. When I am running this query it's not giving me any results. Any help is greatly appreciated.

like image 409
IT hero Avatar asked Oct 18 '25 03:10

IT hero


2 Answers

With your shown attempts, could you please try following query.

(issuetype = "Story" OR issuetype = "Sub task") AND  assignee = 'xyz' AND summary ~ "16.4"

Explanation:

  • First thing first you need to use OR condition for having stories and sub tasks both to be catch here.
  • Then you need to use ~ operator to search for string, since you mentioned you could have other than 16.4 string then we can't use = here.
like image 65
RavinderSingh13 Avatar answered Oct 20 '25 18:10

RavinderSingh13


Try using the contains ~ operator:

issuetype = "Sub task" AND assigned == 'xyz' and summary ~ '*16.4*'
like image 27
Tim Biegeleisen Avatar answered Oct 20 '25 17:10

Tim Biegeleisen



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!