I want write a JQL that will return the Last created Story
JQL only finds issues that match criteria, it doesn't look at the issues it returns to do comparisons.
The only way to do what you're asking is to look at the results and sort them by the creation date. The first one on the list will be the last created one.
For example, you might run JQL like
Project = ABC and issuetype = Story order by created desc
The keyword you might want to know is issueType
There you're gonna find a lot of different types including Story.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.