I want to make JQL to search the latest issue. (only one)
I think "created" field seem to be answer.
but I don't know more detail syntax for JQL
Hi @김상섭 ,
There is no option to limit the search limit to only one. There is already a suggestion ticket for this feature
To get the latest tickets created, you can use below JQLs.
Use "ORDER BY created DESC" JQL. It will list all tickets created in your instance displaying latest one on the top
To filter based on the project use "project =XXX ORDER BY created DESC"
To get the latest tickets created in last one hour use "created >= -60m ORDER BY created DESC"
It looks like you're new here. Sign in or register to get started.