Skip to main content

JQL Examples

Adaptavist ScriptRunner JQL Functions (Jira Cloud)

If you are running Jira Cloud and want to use Adaptavist ScriptRunner JQL functions you should save them and use them as synchronized filters instead via JQL - filter = “enter name or id of the filter“

WORK ITEMS ASSIGNED TO CERTAIN USERS AND CREATED IN THE LAST 30 DAYS

Assignee in (CurrentUser(), "Rick Sanchez") and created >= -30d

WORK ITEMS IN AN ACTIVE SPRINT, IN A CERTAIN BOARD

sprint in openSprints() and filter = "Filter for TEST board"

Read this to locate the correct filter for your board.

WORK ITEMS IN ACTIVE SPRINTS

sprint in openSprints()

WORK ITEMS CREATED IN THE LAST 30 DAYS, IN A CERTAIN SPACE

created >= -30d and project in ("Test Scrum Project")

WORK ITEMS OF A CERTAIN TYPE

issuetype in (Bug, Story)

WORK ITEMS OF A CERTAIN PRIORITY

priority in (High)

WORK ITEMS OF A CERTAIN STATUS

status in ("To Do", "In Progress")

WORK ITEMS OF A CERTAIN RESOLUTION

resolution in ("Done")

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.