Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Filter sorting by Priority not always working

Edited

I have 2 filters

1) My Open Tasks

status not in (Closed) AND assignee in (currentUser()) ORDER BY priority DESC

2) My Open Tasks + Unassigned

status not in (Closed) AND assignee in (currentUser(), EMPTY) ORDER BY priority DESC

The first sorts by priority as expected. The second does not. I can't determine what it's sorted by but it's not priority. There are issues with priority of Highest in the middle of the list of results and Medium issues at the top. There are also "unassigned" issues before and after the Highest priority issues so it's not sorted by assignee either, which is the only difference between the two queries.

Am I missing something here or is this a bug? 

2 answers

Ah it seems ordered by Project first, then Priority despite that not being part of the criteria. The first query did not return results from all projects so the Highest priority ones from one of the projects just ended up at the top.

So how do I force it to not order by Project first?

0 votes
John Funk
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Jun 04, 2020

Hi @bver 

Maybe try:

status not in (Closed) AND (assignee = currentUser() or assignee is not EMPTY) ORDER BY priority DESC

No dice. Order changed a bit but still same overall problem. Still several Medium priority tasks above the Highest ones.

John Funk
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Jun 04, 2020

Sorry, it should have said IS Empty. You can try that again. 

status not in (Closed) AND (assignee = currentUser() or assignee is EMPTY) ORDER BY priority DESC

I wonder if it has something to do with the empty as related to assignee. You might try just this to see:

status not in (Closed) or assignee is EMPTY ORDER BY priority DESC

Neither work sadly. But I did comment here in the main thread as to how it is actually ordering / grouping the results. Maybe that will give some insight?

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events