I need a JQL filter that matches what's in the backlog, and have the same order as the backlog.
My product owner and I ordered all the backlog, and I need my filter to reflect that.
My current attempt has about five and a half times as many items as the backlog...900 vs 159 actual items in the backlog
project="Project Name" AND issuetype != Epic AND (Sprint is EMPTY OR Sprint not in (openSprints(), futureSprints())) and status != Closed Order by RANK
The order isn't correct either.
How do I filter items to match what the backlog has, and show the same order?