You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Need a Jira Query for all issues which have more than one component.
Each EPIC has a list of components that it effects. I want to query for all issues with two or more components listed. These will need to be discussed across teams, hence the interest in them.
@Ravi Dandunumber/count query as parameter is currently not possible in stock JQL provide by Jira.
If you have limited number of component, you can use `AND` to find issue which has more than one component.
Let us say you have 4 components, 'A', 'B', 'C' and 'D'. you can write query like this to find issues which has component A and one or more other component,
component = "A" AND component IN ("B", "C", "D")
After this it will an overhead on you to merge list of issues. You can use excel export to do this.
Moreover, you can look into various JQL extension plugins in marketplace, like "JQL Tricks", "JQL Search Extension" and "ScriptRunner" etc.
@DPKJ We have more than 100 components in project, we required query for all issues with more than one component
Thanks,
Naveen
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.