Hello!
I will get straight to the point.
So I am using filters to grab issues from different projects.
These projects have different issue keys.
I have no problem filtering and pulling the required issues from all of the projects, the issue however is that whenever a new issue is being pulled from the filter, it gets sorted between the other issues.
What I need is a way to stop the automatic ordering or sorting of the issues pulled by the filter and instead have every new issue that is being pulled by the filter to be placed in the current last place.
Bear in mind that these issues that are being pulled by the filter are not newly created issues, they are issues which status is changed to be within the scope of the filter and then it gets pulled.
Hi @Валентин Стоянов and welcome to the community,
Filters are sorted by the 'ORDER BY' clause at the end of your filter.
E.g. assignee = currentReporter() ORDER BY created ASC
This will order the issue by the created date . You can use different fields to order by:
assignee = currentReporter() ORDER BY created, updated ASC
I hope this helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.