Hey community!
Can you please help with query to find stories from X project that has dependency with stories from Y project
Hi @Anna Trubka
if you're open to solutions from the Atlassian Marketplace, this would now be easy to do using the app that my team and I are working on, JXL for Jira.
JXL is a full-fledged spreadsheet/table view for your issues that allows viewing, inline-editing, sorting, and filtering by all your issue fields, much like you’d do in e.g. Excel or Google Sheets. It also comes with a number of advanced features, including support for (configurable) issue hierarchies, issue grouping by any issue field(s), sum-ups, or conditional formatting - as well as the ability to perform text filtering (with logical operators) on all issue fields and columns.
This is how it looks in action:
Here, I'm filtering down to all issues that have an issue link to project JPD. For more complex use cases, you could also use regular expressions.
Once you've narrowed down your list of issues, you can work on your issues directly in JXL, trigger various operations in Jira, or export your issues with just one click.
Any questions just let me know,
Best,
Hannes
Hi @Anna Trubka
I’m Maurício, a support engineer at Appfire and I’m here to help you.
Unfortunately, using JQL of Jira, you’ll not be able to do it dynamically.
In the app where my team works, JQL Search Extensions for Jira, you can use this query to find all the stories from project x that are linked to stories from project y:
issue in linkedIssuesOfQuery("project=yyy and type = story") AND project=xxx and type = story
Please contact our support if you have any other questions about this query.
We’ll be happy to help you!
Best regards,
Maurício
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Welcome to the Atlassian Community !!
May I know do you have linking between 2 stories which are dependent to each other?
Thanks,
Sachin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If they are linked using issue link type then using JQL you can filter out those issue
You need to use script runner plugin where issueFunction is there through that you can get the issue which has specific type of link
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.