Hey there! Anyone knows how to filter issue that hasn't got any historical updates within a particular amount of time?
updated or updatedDate field can help on your JQL
Below is an example; you can find the issues updated
project = XXX AND updated >= '2018/11/01'
General rule for the "not queries" is to save the query as filter, then write a new query and exclude this filter:
updated < -5d and updated > -10d
save this search as UpdatedBetween5and10d
filter != UpdatedBetween5and10d
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.