Forums

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

JQL for issue removed from version last 24hrs

siva
Contributor
January 15, 2021

This query to identify issues added t version 3.1 in the last one day

project = "1234" AND fixVersion changed to 3.1 during (-1d, now())

 

But i need issue removed from version 3.1 last one day

 

Thanks,

Advance.

1 answer

0 votes
Carlos Garcia Navarro
Community Champion
January 15, 2021

Hi @siva 

Did you try the clause:

AND fixVersion changed FROM "3.1" ?

siva boddu January 15, 2021

Hi @Carlos Garcia Navarro 

Thanks for the response 

project = "1234" AND fixVersion changed from 3.1 to 3.0  during (-1d, now())

i tried above query but I am not sure am I right.

But I need issues removed from particular  3.1 fixversion in last 24hrs

Carlos Garcia Navarro
Community Champion
January 16, 2021

Hi @siva , You can try this:

project = "1234" AND fixVersion changed FROM 3.1 AND fixVersion changed TO 3.0 during (-1d, now())

Like # people like this
Gabriel Roth December 17, 2024

This is perfect. I needed this exact thing, more or less, and this completely solved it. Thank you so much.

Suggest an answer

Log in or Sign up to answer