hello community, is it possible to query JIRA to find out if the resolution date of an issue is less than 15 days after created date
Not out of the box. You can use something like scriptrunner to add a calculated field to get you that.
This lets you know if the issue has been open longer than 20 days. Just change the search criteria.
project = YourProject AND issuetype = Defect AND resolution = unresolved AND created <= -20d
That wont solve what woldwildweb needs. e.g.
Given today is Oct 18, 2018 and there's an issue (ABC-123) where created date is Jan 1, 2018 and resolution date is Jan 2, 2018When you run the query ABC-123 should be returned
Your suggested JQL would not match against the issue.
It looks like you're new here. Sign in or register to get started.