Web Links
Web Links JQL Keywords
RemoteLinkUrl
Searches for issues that contain a remote link with a specific URL.
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
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.
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
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.
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Example:
remoteLinkApplicationName = "Werare Docs"
finds issues that link to Werare’s documentation platform.
RemoteLinkApplicationType
Similar to remoteLinkApplicationName but matches the application’s identifier.
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
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.
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Example:
remoteLinkHost = "https://werare.net"
finds issues that link to https://werare.net .
RemoteLinkQuery
Matches the query part of the remote link URL.
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
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.
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
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.
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
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.
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
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.
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Example:
remoteLinkRelationship = "mentioned in"
finds issues that were mentioned in Werare Docs.
RemoteLinksCount
Searches for issues that contain a specific number of remote links.
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Example:
remoteLinksCount > 3
finds issues with more than three remote links.