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
JQL for my filter is:
project = test and component ~ "Api*"
This does not work . Is there any other way to use it? Please help as grouping my bugs and creating filters has become difficult.
Thanks!
Hi ;)
You can use a FREE app called JQL Booster Pack and use the componentMatches() JQL function to get the requested functionality
------
• Find issues in components that their name start with 'Database':
component IN componentMatches( "Database.*" ) |
• Find issues in components that their name contais 'screen':
component IN componentMatches( ".*screen.*" ) |
• Find issues in components that their name end with 'Core':
component IN componentMatches( ".*Core" ) |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It was at the time I wrote my comment ...
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I get
Unable to find JQL function 'componentMatch()'.
What plug-in did you use?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Wild card searching is not supported by default for components. You will have to use a plugin like JQL Tricks.
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.