You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello,
I'm search a JQL expression. that find every EPIC with a special value. And all Tasks, that assigned to this Epics.
The special EPIC Attribute is named "DTCS" and the value i search is "yes" (Checkbox)
I start with
type = Epic AND DTCS = Yes
This found the needed Epics - but how i can determine the issues linked to this epic in only one JQL
(type = Epic AND Workstream = Yes) and (type=task and "Epic Link" has DTCS=yes )
you can use JQL Search Extensions for Jira & reports and it will help you to get the required results.
following query will get all issues and even their subtaks where DTCS = Yes
issue in allIssuesInEpic("DTCS = Yes")
Hi Frank,
Sadly you cannot achieve the desired search using standard features on Jira as @Stephen Wright _Elabor8_ already pointed out, you must go for a third-party app instead. Using i.e. JQL Booster Pack you can type the following:
1) Search for desired Epics
type = Epic AND DTCS = Yes
2) Use the above query as a subquery of the issuesInEpics() function, as below:
issue IN issuesInEpics(' type = Epic AND DTCS = Yes ')
(*) Note that this is just an exaMple, you must tune above query to fit your needs
Using this app you can also query other issues relations, check:
References:
Hope this helps you to create awesome queries <3
Kind regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thats sound good. and the extension is for free. so i have requested the installation by the datacenter admin for my JAAS Instance. I will send the results as soon as it installed
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This isn't possible using standard JQL - when searching for issues within an Epic (via Epic Link) it's only one specific Epic you can search by.
Now you could in theory:
^ This is a little clunky though, as you'd have to add to the list of keys each time a new Epic is created where DTCS is checked. You could keep a track of this using a filter also to check each day - i.e issuetype = Epic and DTCS = Yes ORDER BY createdDate DESC - but it's still not ideal.
Alternative:
The alternative is to get an app which provides more powerful JQL functions - such as ScriptRunner or JQL Booster Pack which allow you to have sub-queries within your search functions.
Both of these have a function "issuesinEpics" - for example using ScriptRunner, you could use:
issueFunction in issuesInEpics("DTCS = Yes")
^ This would give you a list of all issues which are within any Epic where DTCS is checked. It's a much simpler, more automated method of the above.
Ste
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.