Web links
The examples on this page describe how to build a JQL search using JQL Search Extensions.
On this page: |
---|
Web links JQL keywords
Web links were called Remote links in previous versions of Jira.
RemoteLinkUrl
Find issues that contain the remote link with the URL.
Supported operators
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Example
Find issues that contain both URLs.
remoteLinkUrl in ("http://digitaltoucan.com/our-products/jql-search-extensions/", "https://google.com")
RemoteLinkUrlPartialMatch
This keyword is similar to remoteLinkUrl
but supports partial match. All the slashes are replaced with spaces. Word match will differ depending on your word stemming configuration in Jira.
Supported operators
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Example
Find issues that contain appfire
in the URL.
remoteLinkUrlPartialMatch ~ appfire
RemoteLinkApplicationName
Find issues that contain the remote link to an application like Confluence.
Supported operators
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Example
Find issues that link to confluence:
remoteLinkApplicationName="Confluence"
RemoteLinkApplicationType
It is similar to remoteLinkApplicationName
but matches the application identifier.
Supported operators
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Example
Find issues that link to Confluence.
RemoteLinkHost
Matches the host part of the remote link.
Supported operators
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Example
Find issues that link to jqlsearchextensions.atlassian.net
.
RemoteLinkQuery
Matches the query part of the remote link.
Supported operators