Hi All,
I was trying to create a filter to fetch issue based on linkedissue details. My filter should be like
issue in linkedissue(type=task and status = closed and summary ~ Deploy)
so basically it should bring out the issue which has linked issue with type=task and status = closed and summary contains deploy.
could you please help me know how to get it in cloud jira
Hi Prabhuram,
Thank you for your question.
I can confirm that ScriptRunner for Jira Cloud can help to achieve your requirement of fetching issues basd on inked issues with the linkedIssuesOf() enhanced search function documented here.
This page will show examples of how you can use this function to search for issuses based on issue links.
Regards,
Kristian
Hello @Prabhuram Kumar
That type of advanced filtering is not available except through apps that you can add to JIRA Cloud, I believe.
One such app is Adapatavist Scriptrunner. It has a function called linkedIssuesOf, and you would use a subquery in that function.
https://docs.adaptavist.com/enhanced-search/jira/cloud/latest/functions/issue-link-functions.html
issue in linkedissueof(type=task and status=closed and summary~deploy)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hai @Trudy Claspill
Thanks for your answer . will check with our jira team on possibility of adding this apps.
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.