I went through documentation here, that describes linkedIssuesOfRemote function. and I am wondering if there is a way to make issue search based on the Text of Web Link of jira issue ?
Thank you !
Hi @Oresta Tymchyshyn ,
Welcome to Atlassian Community!
You were in the right documentation, you will need Scriptrunner app and then you would be able to use the issueFunction to search for issues that have the text as you want.
issueFunction in linkedIssuesOfRemote("I want*")
I recommend you to restrict to only the project you need are looking for instead looking in all issues.
Thank you @Italo Qualisoni [e-Core]
Worked for me!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
issueFunction in linkedIssuesOfRemote("I want*")
is not working in JIRA Cloud. Is there any thought how to fix it?
Please see this error below
Your JQL includes the [linkedIssuesOfRemote] function from the [Adaptavist Scriptrunner] app for Jira Server. This function works differently in Jira Cloud. Refer to https://docs.adaptavist.com/sr4jc/latest/features/scriptrunner-jql-keywords-functions for details or contact the app provider.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Alternatively you can also use remoteLinkedIssuesOf() provided by JQL Booster Pack
issue INremoteLinkedIssuesOf(
"I want*"
)
Regards
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.