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
I am looking to have a query return Stories that don't have a related item if related item doesn't have specific text in the summary.
Example of what I am trying to do....
(issueFunction in hasLinkType("Relates") AND related issue summary !~ "TEST")
Hi @Sean Naubert,
welcome to the community!
The "issueFunction in" syntax comes with the ScriptRunner app. I'm not an expert myself, but it may be worth checking out the app documentation or reaching out to the vendor.
On somewhat of a meta level:
Unfortunately, the problem that you are describing is trickier than one might think; as a hierarchical query, it would really require some kind of join or subquery, which isn't available in plain Jira/JQL. You'll need extra tooling for that.
A few directions forward:
Hope this helps,
Best,
Hannes
Just to expand on the last point, this is how this would look in the app that my team and I are working on, JXL for Jira. Put simply, you'd create a sheet with all issues that are potentially relevant to you, configure an issue hierarchy based on "relates to" issue links (that's just a couple of clicks), and then use JXL filtering capabilities to narrow down to the issues that you care about:
Once you have your list of issues, you can work on these directly in JXL (much like you'd do in e.g. Excel or Google Sheets), trigger various operations in Jira, or export them for further processing.
Since you've tagged your question for Jira Server: As you may have heard, apps sales have ended for Jira Server. Are you planning to migrate to Data Center or Cloud? I'd strongly recommend that. If you need some more time, JXL is perfectly compatible with Jira Server; it's just that we need to generate a license for you. If the above looks interesting, just let me know, and I'll happily start a free trial for you.
Any questions just let me know!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Sean Naubert This will not work directly to use "!~" in the JQL, you need to save the above filter query and then run the below JQL against that
filter != Your-filter-name
Please check the below Atlassian document for more details
Thanks
Ravina
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.