JQL filter to query a Jira user's updated tickets

Jakob Hernandez
Contributor
November 3, 2023

I am working on writing a JQL that I can set the filter to look at a specific user or directory group and the list of tickets that have recently been updated. 

There's references to use updateBy in the query except it doesn't take this in the filter. 

project = XXX AND issuetype in (IssueType1, IssueType2) AND updated >= 2023-10-15 AND updatedBy(?) 

 

1 answer

1 accepted

5 votes
Answer accepted
Laurie Sciutti
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
November 3, 2023

Hi @Jakob Hernandez ~ the syntax you want would be:

 

issuekey IN updatedBy("username")
Jakob Hernandez
Contributor
November 3, 2023

Ah!  Thanks @Laurie Sciutti 

That worked. I originally structured my JQL to direct to the Project name and dropping the issuekey but wasn't sure when I used updatedBy("group name") and nothing came up except update by one employee, but I figured it out I'm the only user in the group doing updates. 

 

Here's the query that worked in Jira:

project = "Project Key" AND issuetype in (IssueType1, IssueType2) AND updated >= 2023-10-15 AND issuekey in updatedBy("Atlassian Group") ORDER BY updated DESC
Like Laurie Sciutti likes this
Laurie Sciutti
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
November 3, 2023

Perfect, @Jakob Hernandez !

Like Abc likes this

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
PREMIUM
PERMISSIONS LEVEL
Product Admin
TAGS
AUG Leaders

Atlassian Community Events