I want to writed a query that will display all the issues that are related through a JIRA relations ship e.g. "splits from" or "related" so that i can create a confluence view showing it.
e.g. issue I-123 is related to I-224 and I-229 I want the query to be based on I-123 but retreivew the other two issues.
Hello @Daniel Park
Please see here
Find issues that are linked to a particular issue via a particular type of link:issue in linkedIssues(ABC-123,"is duplicated by")
IN your case , replace "is duplicated by" by "splits from"
I am trying to pull the defects which are linked Issues
project = FSR AND issuetype in (Defect, Bug) and issue in linkedIssues("issuekey, is related to")
but I am not getting the report which I am looking. could help me on this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I got the answer:
project = FSR AND issuetype in (Bug, Defect) AND issueFunction in hasLinks("is related to")
Thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sorry similar question - I have 1 parent JIRA ABC-1 and I have 5 other JIRAs related to ABC-1 - I want to see a list of all JIRAs related to ABC-1 - tried var JQL and can't seem to get it to work. Any suggestions?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It's ok I figured it out and found the right JQL thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Lillian, could you post your solution? I am trying to solve a similar issue. I want to go backwards though - find ABC-1 in relation to any of the other 5 issues.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Lillian
Can provide the query you used? I'm looking for a similar way to display epics that are related inward/outward
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am looking for a similar query. I would like to find all ATEAM and MATI issuetypes that are linked to one another, regardless of the linked relationship type (blocks, relates to, affects products, etc). Is there a way we can query for this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.