I am having a hard time finding/building a query that can pull like tickets across multiple projects. Help. It would be best to not have to list each project name in the query if I can avoid it.
Hi Cory
It probably would have been useful if you'd let us see what your query looks like so far, or given some more detail, because your question as it stands is quite vague.
Having said that, I'm guessing you're talking about a JQL query and the possible answer to your question is that you just don't specify the project(s). So if you run a query type = Bug, it will return ALL bugs, regardless of which project they're in.
I'm new to JQL so just looking for guidance. I should be more clear though for what I need is a query that shows ALL linked tickets across all projects.
What are you meaning by "linked"? Issue links? If so, what is the starting point? (As Warren says, start by leaving the project out of the query, that will select all projects)
If you are looking to get issues with issue links, then there is currently no option to do that without a plugin. You can look into plugins like ScriptRunner for this.
This will give you additional JQL functions.
For e.g. following would return all the issue which have issue links
issueFunction in hasLinks()
And for e.g. if you wanted to get issues which have issue links named 'blocks'.Then you can do that as follows.
issueFunction in hasLinks(blocks)
It looks like you're new here. Sign in or register to get started.