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
Trying to build a JQL to find EPICs that have component = “EPIC Schedule” AND a Label=”Afloat” that are missing certain “linked” Stories (basically Issues in Epic) that have the following criteria: "summary !~ 'Submit COP'" (missing a story with “Submit COP” not is the Summary)
There are currently:
a. 288 EPICs with component= “EPIC Schedule”
b. 49 EPICS with component= “EPIC Schedule” and Label =”Afloat” and using the Story criteria of NOT having “Submit COP” anywhere in the Summary. But for some reason the query seems to still give me EPICs with the stories that DO have a "summary ~ 'Submit COP'" using the following JQL I built:
project = BAISEA AND issuetype = Epic AND component = "EPIC Schedule" AND labels = Afloat AND issueFunction in epicsOf("summary !~ 'Submit COP'")
I have also attempted to try JQL, also with NO success:
project = "BA ISEA" AND issuetype = Epic AND component in ("EPIC Schedule", "SE Logistics") AND labels = Afloat AND issueFunction in hasLinkType("Epic-Story Link") AND issueFunction in epicsOf("summary !~ 'Submit COP'")
I attempted to use the “issuesinepic”, but i get an error that it doesn’t exist or that I don’t have permission to use it.
This seems to work for me:
project = ABC AND issuetype = Epic AND component = "EPIC Schedule" AND labels = Afloat AND issueFunction in hasLinkType("Epic-Story Link") AND issueFunction not in epicsOf("summary ~ 'Submit COP'")
Ste
Stephen,
Awesome, thank you the JQL worked!
I was able to now build more detailed JQLs for other metrics I have been attempting to extract.
r/Tom Wilson
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No worries!
If this did help, could you accept the answer? :)
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.