JQL Query to find where one Sub-Task is closed Hello, I have this structure many Stories |- 1 Subtask Summary A |_ 1 Subtask Summary B I am looking for a query to find all of those Stories that have Subtask A closed...
Last 30 days Marc - Devoteam 37 accepted answers Trudy Claspill 15 accepted answers Tomislav Tobijas _Koios_ 10 accepted answers Mikael Sandberg 9 accepted answers Joseph Chung Yin 9 accepted answers John Funk 7 accepted answers See all
You can combine available flags in any order to create a unique query. For example, the command below will give you high priority issues created this month with status To Do that are assigned to you and has the label backend.jira issue list -yHigh -s"To Do" --created month -lbackend...
In this query, all issues that have been resolved within the last seven days (-7) are shown. Filter Results JIRA issues macro on a dedicated Confluence page Recently opened Incidents, Problems, Changes project = Your_Project and createdDate < startofday(-7) and issuetype = Respective_Type ...
This will use the age brackets 0-30 days, 31-60 days, 61-90 days, and over 90 days (which also happens to be the default). Waste (withdrawn items) This chart shows how many work items are withdrawn or cancelled after work has started. It relies on a separate JIRA query, and assume...
We've updated the Completion date filter to use a default setting of Last 30 days when applied. We've also changed the wording in the filter from Completed since beginning of to Completed issues from. Original wording New wording Label suggestions is now case insensitive In JIRA 7.2.x and...
Which issues have new comments added last week? History searches with JQL With Jira Query Language, you can find a list of issues based on their values at a particular point in the past, instead of the current value of those fields. Advanced searches with JQL don’t work for all fields ...
Days Since Last ViewFormula ColumnDatediff(curdate(),"Last Viewed")Displays the number of days since the last view. Days Since CreationFormula ColumnDatediff(curdate(),"Created Date")Displays the number of days since the creation. Days OverdueFormula Columnif("Due Date"<now() and "Status"!=...
Find all issues created in the last five days: 1created >= "-5d" Less than (<) The "<" operator is used to search for issues where the value of the specified field is less than the specified value. Note that the "<" operator can only be used with fields which support ordering (...
First, query the API. This URL will return all work items with a value in the portfolio ask field. This is a GET request. <work item> should be replaced with thepluralrespective work item: themes capabilities epics features URL: /<work item>?isRecycled=false&%24filter=portfolioAskDate%20...