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.
Hi @funny ,
Wild card search is not supported by components field. You will have to install plugins like JQL Tricks, JQL Booster Pack
These have function like componentMatches(regex)
Please note: by Default when you type "component in (Ji" you get all the available options starting with Ji. You can just select the required ones
component in ("Operation")
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.
~ does not work for list fields(where you can add multiple options) like component. It only works for text fields such as summary, description
You need to use in for list fields. Its not working because Operation is not the complete word from component field options. So if you add full text then it will work
component in ("Operation xxxxxx")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Gokaraju gopi thanks for your detailed explanation.
My pain point is that there are many words containing "Operation" in [Components]. Therefore I am looking for a way to fuzzy search in JIRA for this field, instead of populating all the words.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am not sure how many word you have but you can always add multiple words. That can be the only way for list type fields
component in ("Operation xxxxxx", "Operation one", "Operation two")
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.