I need the query to list stories that have status of "To Do" and "Backlog"
Hi @Jacqueline Newton welcome on the community. It should be
I get error message - Operator '=' does not support the list value '("To Do", "Backlog")' for field 'status'
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You should be using “in” as Martin illustrates.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I don't think you are using what Martin typed then, you've removed something. The = in Martin's query is comparing ossuetype to story, but your error message says you've used = against a list.
Try using exactly what Martin gave.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
it's a label called To Do and the query present that works is status = "To Do" I want to add "Backlog" to this query and make it still work
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That is what "in" is for - try
Status in ("To do", Backlog)
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.
Hi Jacqueline,
Welcome to the community! To be clear issues in Jira have only a single status unless of course you’ve created some sort of custom status field. However I’m sure that’s not the case here. What I expect you’re trying to find his issues that are in the to do status that happen to be in the background of some project board. Most of the time your To Do status defines your backlog but not always. Can you help me better understand your goal here so that I might be able to give you a meaningful answer?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes that is correct, there is a smart filter created already that is - status = "To Do", I want to change the query to add "Backlog" also.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Then you likely want what Martin has illustrated in his response.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
My confusion was in the “and” in the sentence …have status of "To Do" and "Backlog". What you are really looking for is …have status of "To Do" or "Backlog"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes you are correct, looking for the stories that have the status of "To Do" or "Backlog"
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.