I am trying to extract the records of those JIRA tickets from a particular project which has linked issue's and issue type should be BUG or DEFECT.
Tried something like this:
Project = FNT AND "Development Stream" in ("Onl", "Sub") AND issue in linkedIssues("") order by created DESC
However, didn't worked. Can anyone please provide some help here?
Hello @Anny S
Welcome to the community.
linkedissues() works with an issuekey and link type (optionnel parameter ) :
project = "ABC" and issue in linkedIssues("ABC-123",blocks)
https://support.atlassian.com/jira-software-cloud/docs/advanced-search-reference-jql-functions/
Hi Mohamed,
Thanks for your response!
I tried with this method as suggested and it worked for me. However, I want to extract the records from multiple linkedissue's approx. count from #350.
Is there any way to specify the issuekey for multiple key numbers or if we can specify issuekey type in a way to filter this out?
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.