Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Why am I missing updatedBy function?

Mike Olson October 9, 2020

I'm not a JIRA admin, but our implementation does not seem to have that function. We are on 8.8.0 ... what do I need to ask my admin team to get?

1 answer

1 accepted

2 votes
Answer accepted
Mikael Sandberg
Community Champion
October 9, 2020

Hi @Mike Olson,

Welcome to Atlassian Community!

Why do you think that you do not have the updatedBy() function? Do you get an error when trying to use it? It is a function that should be available as part of the install. 

Mike Olson October 10, 2020

Thanks for replying! Yes, i do get an error:

Error in the JQL Query: Expecting operator but got '('. The valid operators are '=', '!=', '<', '>', '<=', '>=', '~', '!~', 'IN', 'NOT IN', 'IS' and 'IS NOT'. (line 1, character 33)

And here is the query I am trying to write:

createdDate > -30d and updatedBy(molson)

Mike Olson October 10, 2020

If I try removing the parens and just set an = sign, I get:

Field 'updatedBy' does not exist or you do not have permission to view it.

If I try throwing in a date, I get the original error.

Mikael Sandberg
Community Champion
October 10, 2020

Okay, you at missing issuekey in your JQL. To search with updatedBy your JQL should look like this:

createdDate > -30d AND issuekey IN updatedBy(molson)

Like # people like this
Mike Olson October 11, 2020

Thank you Mikael!! I had glossed over that in the description of the function. I was basing it off of what I knew about membersOf(). 

Awesome! Thanks again!

Suggest an answer

Log in or Sign up to answer