Info |
---|
The instructions on this page describe how to execute a JQL search using JQL Search Extensions. |
Table of Contents | ||||||
---|---|---|---|---|---|---|
|
Web Links JQL
AliasesKeywords
Info |
---|
Web Links used to be called Remote Links in the previous versions of Jira |
RemoteLinkUrl
Search for issues which 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
EXAMPLES
Find issues which contain both URLs:
Code Block |
---|
remoteLinkUrl in ("http://digitaltoucan.com/our-products/jql-search-extensions/", "https://google.com") |
RemoteLinkUrlPartialMatch
Like It's similar to remoteLinkUrl but supports partial match. All the slashes are replaced with spaces. Words 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
EXAMPLES
Find issues which that contain digitaltoucan
in the URL.
Code Block |
---|
remoteLinkUrlPartialMatch ~ digitaltoucan |
RemoteLinkApplicationName
Search for issues which 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
EXAMPLES
Find issues which that link to confluence:
Code Block |
---|
remoteLinkApplicationName="Confluence" |
RemoteLinkApplicationType
Similar 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
EXAMPLES
Find issues which that link to confluence:Confluence.
Code Block |
---|
remoteLinkApplicationType="com.atlassian.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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
EXAMPLES
Find issues which that link to jqlsearchextensions.atlassian.net
:.
Code Block |
---|
remoteLinkHost="jqlsearchextensions.atlassian.net" |
RemoteLinkQuery
Matches the query part of the remote link.
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
EXAMPLES
Find issues which link to URLs like http://host.com/path?pageId=1234
.
Code Block |
---|
remoteLinkQuery="pageId=1234" |
RemoteLinkPath
Matches the path part of the remote link.
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
EXAMPLES
Find issues which link to URLs like http://host.com/path?pageId=1234
.
Code Block |
---|
remoteLinkPath="/path" |
RemoteLinkTitle
Find issues with a remote link title.
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
EXAMPLES
Find issues with the title My Page
Code Block |
---|
remoteLinkTitle="My Page" |
RemoteLinkTitlePartialMatch
Find issues that contain text in the remote link title. Words 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
EXAMPLES
Find issues which that contain Digital Toucan in the remote link title:
Code Block |
---|
remoteLinkTitlePartialMatch ~ "Digital Toucan" |
RemoteLinkRelationship
Find issues with a remote link of a particular type.
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
EXAMPLES
Find issues with that were mentioned in Confluence.
Code Block |
---|
remoteLinkRelationship="mentioned in" |
RemoteLinksCount
Search for issues that contain a particular number of remote links.
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
EXAMPLES
Find issues with more than 5 remote links:
Code Block |
---|
remoteLinksCount > 5 |