...
Web Links JQL Keywords
RemoteLinkUrl
Searches for issues that contain a remote link with a specific URL.
Example:
remoteLinkUrl in ("https://werare.net/", "https://calendly.com/info-werare/30min?month=2024-09")
finds issues that contain either of the specified URLs.
RemoteLinkUrlPartialMatch
Similar to remoteLinkUrl but supports partial matches. All slashes are replaced with spaces, and word matches may vary depending on your Jira word stemming configuration.
Example:
remoteLinkUrlPartialMatch ~ "werare"
finds issues that contain “werare” in the URL.
RemoteLinkApplicationName
Searches for issues that contain a remote link to a specific application, such as Werare Docs.
Example:
remoteLinkApplicationName = "Werare Docs"
finds issues that link to Werare’s documentation platform.
RemoteLinkApplicationType
Similar to remoteLinkApplicationName but matches the application’s identifier.
Example:
remoteLinkApplicationType = "com.werare.docs"
finds issues that link to Werare Docs using its application identifier.
RemoteLinkHost
Matches the host part of the remote link URL.
Example:
remoteLinkHost = "https://werare.net"
finds issues that link to https://werare.net .
RemoteLinkQuery
Matches the query part of the remote link URL.
Example:
remoteLinkQuery = "articleId=5678"
finds issues that link to URLs like https://werare.net/help?articleId=5678.
RemoteLinkPath
Matches the path part of the remote link URL.
Example:
remoteLinkPath = "/help"
finds issues that link to URLs like https://werare.net/help?articleId=5678.
RemoteLinkTitle
Finds issues with a specific remote link title.
Example:
remoteLinkTitle = "Werare Product Overview"
finds issues that have a remote link titled “Werare Product Overview”.
RemoteLinkTitlePartialMatch
Finds issues that contain specific text in the remote link title. Word matches may vary depending on your Jira word stemming configuration.
Example:
remoteLinkTitlePartialMatch ~ "Werare Solutions"
finds issues that contain “Werare Solutions” in the remote link title.
RemoteLinkRelationship
Finds issues with a remote link of a particular relationship type.
Example:
remoteLinkRelationship = "mentioned in"
finds issues that were mentioned in Werare Docs.
RemoteLinksCount
Searches for issues that contain a specific number of remote links.
Example:
remoteLinksCount > 3
finds issues with more than three remote links.