Hi,
Can anyone help me with adjust this query so that it INCLUDES ONLY those results where COMPONENT =XYZ.
In other words, if an item has COMPONENT = XYZ + ABC, it should NOT be shown?
This is my full query so far: "project = CC AND component = XYZ ORDER BY Rank"
Thanks in advance,
Z
Is anyone able to help!? Seems like a relatively straightforward question...
I just wanted items where ' COMPONENT = XYZ ' only
So if an item had NO components, or any components OTHER THAN XYZ (or as well as), they would not be returned. ONLY results that have COMPONENT = XYZ exclusively should be returned in the query...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks, but I don't want it to be this or that, I want to include ONLY items where component = XYZ.
Items with ANY other components should be excluded...
Does it make sense?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Add all the other components in the the "not" in Pramodh's query. Component not in (ABC, DEF, GHI, etc)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, but there's no other way to do it directly.
Indirectly, if you could automate or script something that counts the components set on an issue and stores it (on potentially any change of the components list with create/edit/transition), your query could be "components = XYZ and component-count = 1"
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.