I have a filter where if I do this query I get 1128 records back
filter in ("10879") and priority in (High, Medium, Low, None) order by priority
when I do individual queries
filter in ("10879") and priority = High Order by priority -> returns 71
filter in ("10879") and priority = Medium Order by priority -> returns 520
filter in ("10879") and priority = Low Order by priority -> returns 286
filter in ("10879") and priority = None Order by priority -> returns 198
filter in ("10879") and priority is Empty Order by priority -> returns 0
this totals 1075 records. where are the other 53 records
Hi David - Welcome to the Atlassian Community!
If you do the full query and order by priority, when you go through all of those, do you see any other values in there for Priority or do you see any issues without a priority (null)?
It might be due to the filter itself; I mean, there may be a misuse of parentheses.
Additionally, try this query to find the possible priorities that issues can have:
filter in ("10879") and priority not in (High, Medium, Low, None) order by priority
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How about trying to wrap that filter parts in parentheses?
(filter in ("10879") ) and ...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
project in ("App Core", "App Infrastructure", CodeBusters, "Event Organizers") AND issuetype = Bug AND status in (New, Blocked, "In Progress", "In Review", "To Do", "Ready for QA", Testing) order by created DESC
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you post the JQL for your 10879 Filter?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@David Burgdorf sorry you're having trouble replying to @Kim Euker's question. Can you try and post any text, rather than the JQL, and then edit your reply. Does that work?
If not, please email the community management team at communitymanagers@atlassian.com and we'll try and post it for you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The filter is:
project in ("App Core", "App Infrastructure", CodeBusters, "Event Organizers") AND issuetype = Bug AND status in (New, Blocked, "In Progress", "In Review", "To Do", "Ready for QA", Testing) order by created DESC
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Did you catch the news at Team ‘25? With Loom, Confluence, Atlassian Intelligence, & even Jira 👀, you won’t have to worry about taking meeting notes again… unless you want to. Join us to explore the beta & discover a new way to boost meeting productivity.
Register today!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.