In our JIRA configuration we have a custom field. When I am using advanced search I am not able to search the JIRA ticket when the the value of the custom field is /
Below is the Sample query which I am trying:
project = SAPMS AND status = Resolved AND fixVersion = V29.1 AND "SF#[Paragraph]" ~ '/' order by created DESC
I also tried below query by putting two backslashes in the front but no success.
project = SAPMS AND status = Resolved AND fixVersion = V29.1 AND "SF#[Paragraph]" ~ '\\/' order by created DESC
Please help
Community moderators have prevented the ability to post new answers.
Hello RakeshA,
You can get the result using JQL Search Extensions.
The JQL will look as following:
project = SAPMS AND status = Resolved AND fixVersion = V29.1 AND issue in regex("SF#[Paragraph]", "/") order by created DESC
This JQL will matches issues with a custom field equal to "/"
The full documentation can be found here.
Regards,
Ziad
Hi @RakeshA
Have you tried putting the / in " - e.g.:
project = SAPMS AND status = Resolved AND fixVersion = V29.1 AND "SF#[Paragraph]" ~ "/" order by created DESC
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Do you get an error message, or does it simply return no results?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I've just tried a simple example using one of our paragraph fields, and it returned no results when I used "/", so I don't think you can search on anything other than words.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm not sure - it would be worth reaching out to Atlassian support to ask the question
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.