Forums

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

JQL query to know the stories that have been modified after the story status moved to "ReadyToRele"

neelam annad
Contributor
December 15, 2019

JQL query to know the stories that have been modified after the story status moved to "Ready To Release" or Accepted.

I am writing the below query -

project = "xxxxx" and "IssueType" = story and status changed TO ("Ready To Release")  and sprint not in openSprints() and updatedDate is not EMPTY

But want to add another condition updatedDate > sprintEndDate

didn't find the columnname which indicate the SprintEndDate

3 answers

0 votes
neelam annad
Contributor
December 17, 2019

Sorry for reply late, we are using Jira 3 and I didn’t find any custom field related to releaseDate added

0 votes
John Funk
Community Champion
December 16, 2019

Hi @neelam annad  - You cannot compare two date fields in stand JQL. You would need to compare each date field to a range of values (like created >= 2019-12-01 to see issues created on or after December 1st). 

John Funk
Community Champion
December 18, 2019

Why are you trying to use releaseDate? You might could use: "Release Version History" = latestReleasedVersion()

0 votes
Zita Bagi
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
December 16, 2019

Suggest an answer

Log in or Sign up to answer