I have tried various queries with the filter
using
project in (PIN) order by rank asc"
but it doesn't produce exactly the same order top to bottom in the backlog tab.
it seems like there are other things affecting the order?
1. this is the current order of backlog top to bottom
2. this is the order using a filter with the only sort "... order by rank asc"
3. I am at a loss why it is doing this. the items supposed to be at top are near the bottom.
while items that have not yet been assigned to sprint mostly showing up top
Hi @Great Ancheta - I just ran a query that orders by rank and it seems to return results accurately. One thing to note is that epic ranking will be a little muddled because, while they're ranked against each other, they're ranked independently of stories/tasks so, if your query is returning all issue types epics will be scattered throughout your results. Also, Sub-tasks will be displayed just after their parent issues.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The sub-tasks with their parents is because sub-tasks do not have a global rank themselves, they are part of their parent issue.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for the reply. oh sorry made a new answer as a response to your answer. if you can check it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Your query is not filtering out resolved issues so those will show on top. If you want an accurate reflection of your current backlog, you should probably do something like this:
project = PIN AND issueType != Epic AND resolved IS EMPTY ORDER BY rank
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I tried that query and this is the result. it removed some items but still not same as backlog. 110, 120 , 148 not at top
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm not sure that ranking changes just because an issue is moved into a sprint. You may need to create two filters and then combine. Something like this:
Filter 1: Sprint Query
project = PIN AND sprint in opensprints() ORDER BY Rank ASC
Filter 2: Backlog Query
project = PIN AND sprint NOT IN opensprints() AND issueType !=Epic and resolved IS EMPTY ORDER BY Rank ASC
Filter 3: Putting it all together
Filter In ("Filter 1", "Filter 2")
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.