Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Section


Column
width10%



Column
width20%


Div
alignleft



Column
width5%




Column
width70%


Div
alignright



 
 



Column
width10%



...

Column
width65%


Tip
iconfalse

Getting Started

Step 1: Install the app

Step 2: Run a search!



Projects

Panel
bgColor#fcfcfc

movedIssues(projectKey)

Finds issues which moved from the project in argument. For instance: 

Code Block
themeMidnight
project = SEARCHSERVER AND issue in movedIssues("SEARCHCLOUD")

Will find all issues which are in project SEARCHSERVER and moved from project SEARCHCLOUD. 

Fields

Panel
bgColor#fcfcfc

fieldMatch(jql-subquery, field-name, regexp)

FieldMatch can be used to find issues with field matching the regular expression in the argument. For instance:

Code Block
themeMidnight
issue in fieldMatch("project = SEARCH", "description", "find issues mat*")

Will find all issues with description field matching the regular expression find issues mat*

The asterisk * matches any alphanumeric characters. It is also possible to use all regular expression constructs, such as

Code Block
themeMidnight
issue in fieldMatch("project = SEARCH", "description", "find issu[a-z]{2} mat*") 
issue in fieldMatch("project = SEARCH", "my custom field", "f[a-z]{5}

This function can be used with any system or custom field.

For documentation of of regular expression constructs, please follow this link 


fieldsHaveSameValue(jql-subquery, field-name1, field-name2,...,field-name-x)

FieldsHaveSameValue can be used to find issues with fields having the same value. For instance: 

Code Block
themeMidnight
issue in fieldsHaveSameValue("version", "my-custom-field-with-version")

It is possible to use multiple fields in the expression, such as below: 

Code Block
themeMidnight
issue in fieldsHaveSameValue("version", "my-custom-field-with-version", "one-more-field-with-version")

It is also possible to add JQL subquery to the expression. It will narrow the search only to those issues which match the subquery (in the example below, are in the project DEMO and have the same value of fields version and my-custom-field-with-version).

Code Block
themeMidnight
issue in fieldsHaveSameValue("project = SEARCH", "version", "my-custom-field-with-version")

In case fields contain multiple values (for instance, there are many values of field version) the function will expect all values to be equal (but doesn't expect the same order). 

Attachments

Panel
bgColor#fcfcfc

AttachedAfter

AttachedAfter can be used to find issues with attachments added after particular date. Expected date format is yyyy-MM-dd (year dash month dash day of the month) or dd-MM-YYYY

Code Block
themeMidnight
issue in attachedAfter("2018-05-26")


AttachedBefore

AttachedBefore can be used to find issues with attachments added before particular date. Expected date format is yyyy-MM-dd (year dash month dash day of the month) or dd-MM-YYYY

Code Block
themeMidnight
issue in attachedBefore("2018-05-26")


AttachedBetween

AttachedBetween can be used to find issues with attachments added between particular dates. Expected date format is yyyy-MM-dd (year dash month dash day of the month) or dd-MM-YYYY

Code Block
themeMidnight
issue in attachedBetween("2018-05-26", "2018-07-01")


AttachedOnDate

AttachedOnDate can be used to find issues with attachments added on particular dates. Expected date format is yyyy-MM-dd (year dash month dash day of the month) or dd-MM-YYYY

Code Block
themeMidnight
issue in attachedOnDate("2018-05-26")


AttachedByUser

AttachedByUser can be used to find issues with attachments added by a particular user (username is expected)

Code Block
themeMidnight
issue in attachedByUser("filip")


This function can be used together with membersOf to find issues attached by users who are members of a particular group.

Code Block
themeMidnight
issue in attachedByUser("membersOf(employees)")


AttachmentExtension

AttachmentExtension can be used to find issues with attachments with particular extension.

Code Block
themeMidnight
issue in attachmentExtension("pdf")


AttachmentName

AttachmentName can used to find issues with attachments with particular name.

Code Block
themeMidnight
issue in attachedName("documentation")


AttachmentsCountEqualTo

AttachmentsCountEqualTo can be used to find issues with particular number of attachments.

Code Block
themeMidnight
issue in attachmentsCountEqualTo(2)


AttachmentsCountGreaterThan

AttachmentsCountGreaterThan can be used to find issues with number of attachments greater than provided number

Code Block
themeMidnight
issue in attachmentsCountGreaterThan(1)


AttachmentsCountLessThan

AttachmentsCountLessThan can be used to find issues with number of attachments lesser than provided number

Code Block
themeMidnight
issue in attachmentsCountLessThan(2)



Comments

Panel
bgColor#fcfcfc

CommentedAfter

CommentedAfter can be used to find issues with comments added after particular date. Expected date format is yyyy-MM-dd (year dash month dash day of the month) or dd-MM-YYYY

Code Block
themeMidnight
issue in commentedAfter("2018-05-26")


CommentedBefore

CommentedBefore can be used to find issues with comments added before particular date. Expected date format is yyyy-MM-dd (year dash month dash day of the month) or dd-MM-YYYY

Code Block
themeMidnight
issue in commentedBefore("2018-05-26")


CommentedBetween

CommentedBetween can be used to find issues with comments added between particular dates. Expected date format is yyyy-MM-dd (year dash month dash day of the month) or dd-MM-YYYY

Code Block
themeMidnight
issue in commentedBetween("2018-05-26", "2018-07-01")


CommentedOnDate

CommentedOnDate can be used to find issues with comments added on particular dates. Expected date format is yyyy-MM-dd (year dash month dash day of the month) or dd-MM-YYYY

Code Block
themeMidnight
issue in commentedOnDate("2018-05-26")


CommentedByUser

CommentedByUser can be used to find issues with comments added by a particular user (username is expected)

Code Block
themeMidnight
issue in commentedByUser("filip")

This function can be used together with membersOf to find issues commented by users who are members of a particular group.

Code Block
themeMidnight
issue in commentedByUser("membersOf(employees)")


CommentsCountEqualTo

CommentsCountEqualTo can be used to find issues with particular number of comments.

Code Block
themeMidnight
issue in commentsCountEqualTo(2)


CommentsCountGreaterThan

CommentsCountGreaterThan can be used to find issues with number of comments greater than provided number

Code Block
themeMidnight
issue in commentsCountGreaterThan(2)


CommentsCountLessThan

CommentsCountLessThan can be used to find issues with number of comments lesser than provided number

Code Block
themeMidnight
issue in commentsCountLessThan(2)



Versions

Panel
bgColor#fcfcfc

AffectedVersionsArchivedCountLessThan

FixVersionsArchivedCountLessThan

AffectedVersionsArchivedCountLessThan and FixVersionsArchivedCountLessThan can be used to find issues with number of archived versions less than provided number.

Code Block
themeMidnight
affectedVersionsArchivedCountLessThan(2) OR fixVersionsArchivedCountLessThan(2)


AffectedVersionsArchivedCountEqualTo

FixVersionsArchivedCountEqualTo

AffectedVersionsArchivedCountEqualTo and FixVersionsArchivedCountEqualTo can be used to find issues with number of archived versions equal to provided number.

Code Block
themeMidnight
affectedVersionsArchivedCountEqualTo(2) OR fixVersionsArchivedCountEqualTo(2)


AffectedVersionsArchivedCountGreaterThan

FixVersionsArchivedCountGreaterThan

AffectedVersionsArchivedCountGreaterThan and FixVersionsArchivedCountGreaterThan can be used to find issues with number of archived versions greater than provided number.

Code Block
themeMidnight
affectedVersionsArchivedCountGreaterThan(2) OR fixVersionsArchivedCountGreaterThan(2)


AffectedVersionsCountLessThan

FixVersionsCountLessThan

AffectedVersionsCountLessThan and FixVersionsCountLessThan can be used to find issues with number of versions less than provided number.

Code Block
themeMidnight
affectedVersionsCountLessThan(2) OR fixVersionsCountLessThan(2)


AffectedVersionsCountEqualTo

FixVersionsCountEqualTo

AffectedVersionsCountEqualTo and FixVersionsCountEqualTo can be used to find issues with number of versions equal to provided number.

Code Block
themeMidnight
affectedVersionsCountEqualTo(2) OR fixVersionsCountEqualTo(2)


AffectedVersionsCountGreaterThan

FixVersionsCountGreaterThan

AffectedVersionsCountGreaterThan and FixVersionsCountGreaterThan can be used to find issues with number of versions greater than provided number.

Code Block
themeMidnight
affectedVersionsCountGreaterThan(2) OR fixVersionsCountGreaterThan(2)


AffectedVersionsOpenedCountLessThan

FixVersionsOpenedCountLessThan

AffectedVersionsOpenedCountLessThan and FixVersionsOpenedCountLessThan can be used to find issues with number of opened versions less than provided number.

Code Block
themeMidnight
affectedVersionsOpenedCountLessThan(2) OR fixVersionsOpenedCountLessThan(2)


AffectedVersionsOpenedCountEqualTo

FixVersionsOpenedCountEqualTo

AffectedVersionsOpenedCountEqualTo and FixVersionsOpenedCountEqualTo can be used to find issues with number of opened versions equal to provided number.

Code Block
themeMidnight
affectedVersionsOpenedCountEqualTo(2) OR fixVersionsOpenedCountEqualTo(2)


AffectedVersionsOpenedCountGreaterThan

FixVersionsOpenedCountGreaterThan

AffectedVersionsOpenedCountGreaterThan and FixVersionsOpenedCountGreaterThan can be used to find issues with number of opened versions greater than provided number.

Code Block
themeMidnight
affectedVersionsOpenedCountGreaterThan(2) OR fixVersionsOpenedCountGreaterThan(2)


AffectedVersionsReleasedCountLessThan

FixVersionsReleasedCountLessThan

AffectedVersionsReleasedCountLessThan and FixVersionsReleasedCountLessThan can be used to find issues with number of released versions less than provided number.

Code Block
themeMidnight
affectedVersionsReleasedCountLessThan(2) OR fixVersionsReleasedCountLessThan(2)


AffectedVersionsReleasedCountEqualTo

FixVersionsReleasedCountEqualTo

AffectedVersionsReleasedCountEqualTo and FixVersionsReleasedCountEqualTo can be used to find issues with number of released versions equal to provided number.

Code Block
themeMidnight
affectedVersionsReleasedCountEqualTo(2) OR fixVersionsReleasedCountEqualTo(2)


AffectedVersionsReleasedCountGreaterThan

FixVersionsReleasedCountGreaterThan

AffectedVersionsReleasedCountGreaterThan and FixVersionsReleasedCountGreaterThan can be used to find issues with number of released versions greater than provided number.

Code Block
themeMidnight
affectedVersionsReleasedCountGreaterThan(2) OR fixVersionsReleasedCountGreaterThan(2)


FixVersionReleasedOnDate

AffectedVersionReleasedOnDate

FixVersionReleasedOnDate and AffectedVersionReleasedOnDate can be used to find issues with versions released on particular date.

Code Block
themeMidnight
fixVersionReleasedOnDate("2018-05-26") OR affectedVersionReleasedOnDate("2018-05-26")


FixVersionReleasedBetweenDates

AffectedVersionReleasedBetweenDates

FixVersionReleasedBetweenDates and AffectedVersionReleasedBetweenDates can be used to find issues with versions released between provided dates.

Code Block
themeMidnight
fixVersionReleasedBetweenDates("2018-05-26", "2018-07-01") OR affectedVersionReleasedBetweenDates("2018-05-26", "2018-07-01")


FixVersionReleasedAfterDate

AffectedVersionReleasedAfterDate

FixVersionReleasedAfterDate and AffectedVersionReleasedAfterDate can be used to find issues with versions released after particular date.

Code Block
themeMidnight
fixVersionReleasedAfterDate("2018-05-26") OR affectedVersionReleasedAfterDate("2018-05-26")


FixVersionReleasedBeforeDate

AffectedVersionReleasedBeforeDate

FixVersionReleasedBeforeDate and AffectedVersionReleasedBeforeDate can be used to find issues with versions released before particular date.

Code Block
themeMidnight
fixVersionReleasedBeforeDate("2018-05-26") OR affectedVersionReleasedBeforeDate("2018-05-26")


LatestReleaseVersionForProject

LatestReleaseVersionForProject can be used to find issues with versions which are the most recently released version for the project. 

Code Block
themeMidnight
fixVersion in latestReleaseVersionForProject("SEARCH")



Panel
bgColor#fcfcfc

LinksCountLessThan

LinksCountLessThan can be used to find issues with number of links less than provided number.

Code Block
themeMidnight
linksCountLessThan(2)


LinksCountGreaterThan

LinksCountGreaterThan can be used to find issues with number of links greater than provided number.

Code Block
themeMidnight
linksCountGreaterThan(2)


LinksCountEqualTo

LinksCountEqualTo can be used to find issues with number of links equal to the provided number.

Code Block
themeMidnight
linksCountEqualTo(2)


LinkedBy([linktype], jql-query or issuekeys)

Search for issues that are linked by given issues or by issues matched by the given JQL. Link type can be provided to limit the search to particular link type or types. Many link types can be specified in a single function call.

The first optional list of arguments specifies link types. They are followed by either JQL or a list of issue keys.

EXAMPLES

Find issues which are linked by JQL-3 or JQL-5. 

Code Block
themeMidnight
issue in linkedBy(JQL-3, JQL-5)


Find issues which are linked by issues from project JQL with priority = Highest. 

Code Block
themeMidnight
issue in linkedBy("project = JQL AND priority = Highest")


Find issues which are blocked by issue JQL-3 or JQL-5. 

Code Block
themeMidnight
issue in linkedBy("is blocked by", "JQL-3", JQL-5)


Find issues which are blocked by issues from project JQL with priority = Highest. 

Code Block
themeMidnight
issue in linkedBy("is blocked by", "is related to", "project = JQL AND priority = Highest")


Links(jql-query, link type)

Search for issues which links issues matched by JQL. Link type can be provided to limit the search to particular link type or types. Many link types can be specified in single function call.

EXAMPLES

Find issues which link at least one issue from project JQL. 

Code Block
themeMidnight
issue in links("project = JQL")


EXAMPLES

Find issues which "blocks" at least one issue from project JQL. 

Code Block
themeMidnight
issue in links("blocks", "project = JQL")


LinksIssue

Search for issues which links a particular issue. 

EXAMPLES

Find issues which link JQL-3 or JQL-5

Code Block
themeMidnight
issue in linksIssue(JQL-3, JQL-5)


LinkType

Search for issues which have a particular link type. 

EXAMPLES

Find all issues which are blocked by another issue

Code Block
themeMidnight
issue in linkType("is blocked by")


LinkedIssueStatus

Search for issues which are linked or link issues with a particular status. 

EXAMPLES

Find all issues which are linked by issues in "To Do" status. 

Code Block
themeMidnight
issue in linkedIssueStatus("To Do")


LinkedIssueStatusCategory

Search for issues which are linked or link issues with a particular status category. 

EXAMPLES

Find all issues which are linked or link issues in status category "Done"

Code Block
themeMidnight
issue in linkedIssueStatusCategory("Done")


LinkedIssueType

Search for issues which are linked or link issue with a particular issue type. 

EXAMPLES

Find all issues which are linked by Bugs. 

Code Block
themeMidnight
issue in linkedIssueType("Bug")


LinkedIssuePriority

Search for issues which are linked or links issues with a particular priority. 

EXAMPLES

Find all issues which are linked by "blockers"

Code Block
themeMidnight
issue in linkedIssuePriority("Blocker")


LinkedByIssueProject

Search for issues which are linked or links issues from a particular project. 

EXAMPLES

Find all issues which are linked or links project JQL

Code Block
themeMidnight
issue in linkedByIssueProject("JQL")



Updated

Panel
bgColor#fcfcfc

UpdatedByUserCountLessThan

UpdatedByUserCountLessThan can be used to find issues updated by less than provided number of users.

Code Block
themeMidnight
updatedByUserCountLessThan(2)


UpdatedByUserCountGreaterThan

UpdatedByUserCountGreaterThan can be used to find issues updated by greater than provided number of users.

Code Block
themeMidnight
updatedByUserCountGreaterThan(2)


UpdatedByUserCountEqualTo

UpdatedByUserCountEqualTo can be used to find issues updated by particular number of users.

Code Block
themeMidnight
updatedByUserCountEqualTo(2)


UpdatedByUser

Search for issues which were updated by a particular user/users. 

EXAMPLES

Find issues which were updated by Helen or Daniel:

Code Block
themeMidnight
issue in updatedByUser("helen", "daniel")
issue in updatedByUser("membersOf(employees)")


TransitionedByUser

Search for issues which were transitioned by a particular user/users. 

EXAMPLES

Find issues which were transitioned by Helen or Daniel:

Code Block
themeMidnight
issue in transitionedBy in ("daniel", "helen")
issue in transitionedBy("membersOf(employees)")


LoggedTimeByUser

Search for issues on which particular users reported time. 

EXAMPLES

Find issues on which Helen or Daniel reported time. 

Code Block
themeMidnight
issue in loggedTimeByUser("daniel", "helen")
issue in loggedTimeByUser("membersOf(employees)"



Subtasks

Panel
bgColor#fcfcfc

SubTaskOf(jql-query)

Search for subtasks of issues matching JQL. 

EXAMPLES
Find subtasks of parents with priority = Blocker. 

Code Block
themeMidnight
issue in subtaskOf("priority = Blocker")


ParentOf(jql-query)

Search for parents of issues matching JQL. 

EXAMPLES

Find parents of subtasks with issue type = Bug. 

Code Block
themeMidnight
issue in parentOf("issueType = Bug")


SubtaskCountLessThan

SubtaskCountGreaterThan can be used to find issues with number of subtasks lesser than provided number.

Code Block
themeMidnight
subtaskCountLessThan(2)


SubtaskCountGreaterThan

SubtaskCountGreaterThan can be used to find issues with number of subtasks greater than provided number.

Code Block
themeMidnight
subtaskCountGreaterThan(2)


SubtaskCountEqualTo

SubtaskCountEqualTo can be used to find issues with a particular number of subtasks.

Code Block
themeMidnight
subtaskCountEqualTo(2)


SubTaskKey

Search for issues that have subtasks with a particular key. 

EXAMPLES 

Find issues with subtask with key ABC-123

Code Block
themeMidnight
issue in subtaskKey("ABC-123")


SubtaskPriority

Search for issues that have subtasks with a particular Priority.

EXAMPLES 

Find issues with subtasks which have a "Blocker" priority. 

Code Block
themeMidnight
issue in subTaskPriority("Blocker")


SubTaskType

Search for issues that have subtasks with a particular Issue Type.

EXAMPLES 

Find issues which have "Test" issue type. 

Code Block
themeMidnight
issue in subTaskType("Test")


SubTaskStatus

Search for issues that have subtasks with a particular Status.

EXAMPLES 

Find issues which have subtasks "In Progress". 

Code Block
themeMidnight
issue in subTaskStatus("In Progress")


SubTaskStatusCategory

Search for issues that have subtasks with a particular Status Category.

EXAMPLES 

Find issues which have "To Do" status category.

Code Block
themeMidnight
issue in subTaskStatusCategory("To Do")



Software Development

Panel
bgColor#fcfcfc

OpenPullRequestsCount

Search for issues that have particular number of open pull requests. This value is present if JIRA is connected to Bitbucket. 

SUPPORTED OPERATORS 

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

EXAMPLES

Find issues with open pull requests.

Code Block
themeMidnight
openPullRequestsCount > 0


CommitsCount

Search for issues that have particular number of commits. This value is present if JIRA is connected to Bitbucket or Crucible/Fisheye.

SUPPORTED OPERATORS 

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

EXAMPLES

Find issues with commits.

Code Block
themeMidnight
commitsCount > 0


FailingBuildsCount

Search for issues that have particular number of failed builds. This value is present if JIRA is connected to Bamboo. 

SUPPORTED OPERATORS 

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

EXAMPLES

Find issues with failing builds. 

Code Block
themeMidnight
failingBuildsCount > 0


OpenReviewsCount

Search for issues that have particular number of open reviews. This value is present if JIRA is connected to Bitbucket or Crucible/Fisheye.

SUPPORTED OPERATORS 

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

EXAMPLES

Find issues with failing builds. 

Code Block
themeMidnight
openReviewsCount > 0


PullRequestsCount

Search for issues that have particular number of pull requests. This value is present if JIRA is connected to Bitbucket. 

SUPPORTED OPERATORS 

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

EXAMPLES

Find issues with pull requests. 

Code Block
themeMidnight
pullRequestsCount > 0


ReviewsCount

Search for issues that have particular number of reviews. This value is present if JIRA is connected to Bitbucket or Crucible/Fisheye.

SUPPORTED OPERATORS 

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

EXAMPLES

Find issues with pull requests. 

Code Block
themeMidnight
reviewsCount > 0



Issue hierarchy 

Panel
bgColor#fcfcfc

AllIssuesInEpic(jql-query or issuekey)

Search for all epics, issues in epics and subtasks of these issues. 

SUPPORTED OPERATORS 

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

EXAMPLES

Find issues and subtasks of epic "SEARCH-12"

Code Block
themeMidnight
issue in allIssuesInEpic(SEARCH-12)

Find issues and subtasks of epics "SEARCH-12, SEARCH-13"

Code Block
themeMidnight
issue in allIssuesInEpic(SEARCH-12, SEARCH-13)

Find issues and subtasks of epics and issues for fixVersion = 1.0 in project SEARCH 

Code Block
themeMidnight
issue in allIssuesInEpic("fixVersion = 1.0 AND project = SEARCH")


EpicOf(jql-query)

Find all epics which have issues matching JQL query. 

SUPPORTED OPERATORS 

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

EXAMPLES

Find all epics with unresolved, high-priority stories 

Code Block
themeMidnight
issue in epicOf("issuetype = Story and resolution is empty and priority = High")

Find all epics for the fixVersion 1.0 in project SEARCH

Code Block
themeMidnight
issue in epicOf("fixVersion = 1.0 and project = SEARCH")



User

Panel
bgColor#fcfcfc

UserMatch(regular-expression)

UserMatch can be used to find issues with user fields matching the regular expression in the argument. For instance:

Code Block
themeMidnight
assignee in userMatch("danie*")

Will find all issues with assignee username matching the regular expression danie*, such as daniel, danied, danie3 etc.

The asterisk '*' matches any alphanumeric characters. It is also possible to use all regular expression constructs, such as

Code Block
themeMidnight
assignee in userMatch("danie[a-z]") // matching danie followed by a single lowercase alphabet character
assignee in userMatch("dan[a-z]{3}") // matching dan followed by three lowercase alphabet characters

This function can be used for any user field. For documentation of of regular expression constructs, please follow this link 

...