Questions tagged [jql]

JIRA Query Language (JQL) is used to perform advanced searches within JIRA.

JQL allows users to perform an advanced search using structured queries within JIRA. JIRA is a issue tracking product, developed by Atlassian, used for bug tracking, issue tracking and project management.

A simple query in JQL (also known as a 'clause') consists of a field, followed by an operator, followed by one or more values or functions. For example, the following simple query will find all issues in the "TEST" project:

project = "TEST"

References

522 questions
0
votes
1 answer

How to get all tasks resolved by a user in jira 5.2

I want to know all the tasks that were "resolved" by user in jira within a range of dates. we are on 5.2 version of Jira. Note: Their current status could by any.
tusharmath
  • 10,622
  • 12
  • 56
  • 83
-1
votes
3 answers

JQL query to fetch a list of tickets touched by a list of users

I have a team of 8 members and have a requirement to list the tickets touched by them in the last week . Please help. assignee was in (x,y,z) AND created <=-15d AND updated <= -15d
Dexter
  • 45
  • 7
-1
votes
1 answer

JIRA JQL Query - Results

I'm writing a JQL query to fetch only Service Requests. I'm not able to fetch the Service Request field name from the below json using JQL Query. Any help will be appreciated 'jql': 'key=ITSM-1917' => This is working .. But I'm trying to fetch based…
Mar_Che
  • 9
  • 2
-1
votes
2 answers

fetch the issues from jira only when it has particular customfield using python

I am doing automation on Jira, now I want fetch the data from tickets, but the tickets must have the customfield_10030, otherwise the tickets should not be selected. Below is the code, I am using, please help me out from atlassian import…
Beginner
  • 143
  • 1
  • 12
-1
votes
1 answer

How can I extract a TestCaseID from JQL query in jenkins pipeline

I have mentioned a node in jenkinspipeline as below node { stage('JIRA') { def key = jiraJqlSearch jql:"project = MAV AND issueType = 'Test' AND Status ='Done'", site: 'JIRA' def text = key.data.toString() echo "Test Case…
bharath k
  • 11
  • 4
-1
votes
1 answer

Jira get fix version / release list using JQL

I want to get a column with release versions in Jira using JQL. Is that possible? If yes, how?
BuZZ-dEE
  • 6,075
  • 12
  • 66
  • 96
-1
votes
1 answer

Creating Jira Board Filter does not recognize status

I have a board with a filter to only show status' of "Ready to Release" and "Ready for Release" from two other boards. The query looks like: project in (BRUZ, BDP) AND status in ("Ready to Release", "Ready for Release") ORDER BY Rank ASC I get the…
user3242558
  • 105
  • 1
  • 9
-1
votes
1 answer

Using JIRA Query Language from Klipfolio To Query JIRA API For Number of Rejected Issues

I am trying to query the JIRA API from Klipfolio, to return all issues whos status = "rejected" in a given month, and the number of times each issue's status = "rejected". Example queries I have run: Give me the issue history for a given issue…
Chris Mazzochi
  • 179
  • 1
  • 15
-1
votes
1 answer

How to fixe lines' s result of a query with JQL language

I wanna to know How to fixe lines' s result of a query with JQL language , like "LIMIT" in SQL ?
sabadam bobdi
  • 38
  • 1
  • 6
-2
votes
2 answers

Write JQL to find an issue that has subissues

JQL to check issues of type Fix that have non empty issue links. I need issues under the resolves as shown below in the following screenshot:
-2
votes
1 answer

JQl - how to find linked issues in an issue

Iam looking for the Jira JQL syntax, to find the linked-issues in an Issue. For example in Bug-issue i need to have in my report the linked-issues to my Bug-issue! Thanks
A. Hamoto
  • 11
  • 1
  • 2
-2
votes
1 answer

Is the Jira feature 'JQL' (Jira Query Language) a threat for the security of my Jira installation?

As I unterstood it, JQL is used within a feature called 'Advanced Search' to dig up information stored in my Jira DB. It is a SQL-like query language. I can compose (and later reuse) a URL that contains a complete JQL query. Example:…
RobertK
  • 593
  • 1
  • 7
  • 11
1 2 3
34
35