I need to get all project issue from dynamic jql issue.
Ex: project in (issue updated -5m)
It's there a way to do that in JQL ?
I need to get all project issue from dynamic jql issue.
Ex: project in (issue updated -5m)
It's there a way to do that in JQL ?
This will work if you're getting your results via an HTTP GET:
http://yourserver.com/rest/api/2/search?jql=project=YOUR_PROJ%20AND%20updated%20>%3D%20-5m
Replace "YOUR_PROJ" with your project's short name (key).
If I understand correctly from your additional clarification that you want a list of all outstanding tickets from any projects in which an issue has just been updated, then you can't do it via JQL in JIRA's issue search, but you could use the API. An example using jira-python library in Python 2.7:
This spits out the issue keys you want, which you can then turn into an HTML page with issue links or a CSV with issue details or whatever you need.