Let's say I have many components: A, B, C, X... and so on.
Let's say I have issues with these components assigned:
How can I write query that selects "Issue A" only, if I may not know how many combinations A can have?
Thanks Peter, but what if I have many components other's than A? Hardcoding all of them in the query and updating them each time new combination gets added is not worth it.
You have to hardcode something, otherwise it can't function.
If I understand correctly you want to do Component = A and Component != different Than A
This can be accomplished with either custom JQL or custom scripted field that shows you the number of components and in this case the JQL will be
Component = A and ComponentCount = 1.
Cheers,
Peter T
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 to add this ComponentCount?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Anton,
yes you can:
component = A and component != B
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.