I am trying to use this JQL function with a subquery contain an AND statement. Essentially searching for issues in multiple projects with a particular component. It does not seem to allow for multiple selections in the subquery. I am using the following:
project = X AND component = "Y" AND issueFunction in subtasksOf("project = X AND component = Y"). I have tried multiple methods of wrapping the subquery in parens and quotes. Is it possible to do this and I just have the syntax incorrect? Also I am assuming we cannot pass in the name of a filter here but have to enumerate the entire query we are attempting to make.
that should work fine... in what way is there a problem?
You can use "filter = " - check the JQL docn.
> cannot pass in the name of a filter here but have to enumerate the entire query we are attempting to make
You don't have to duplicate the clauses - it depends what you want. In your case having project = X on the outer query is redundant, as subtasks can't be in different projects. They can have different components from the parent, so like I say, it depedns what you are trying to do.
I wrote some extra docn that may help you: https://jamieechlin.atlassian.net/wiki/display/GRV/Scripted+JQL+Functions#ScriptedJQLFunctions-MoreComplexExamples
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I understand now what my original problem was. It was related to the fact that the specific component I was looking for was not a single word but multiple words (ex First Second). I gleaned that I needed to us the ' around this which worked perfectly. In addition I now know how to use a filer within this JQL function. Thank you very much for your responses. They helped immensely.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Im trying to use
issue in hqlLinkedIssuesOf("project = Roundup AND issuetype = "JIRA WR" AND "Project Name" = Lab-Ongoing-Tests AND createdDate >= startOfYear(-2) ", "", "")
And I JIRA send me this error
Error in the JQL Query: Expecting ')' or ',' but got 'JIRA'. (line 1, character 64)
Could you help with the SUBQUERY
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
you have to put a \ character before a quote when nested inside a function.
ex.
issuefunction in linkedissuesof("issuetype = \"JIRA WR\"")
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.