jql

Jira Quick-filter to show all task with subtasks assigned to current user

此生再无相见时 提交于 2019-12-03 16:29:12
问题 Currently, I have a quick filter to show me my task that does this: assignee = currentUser() This works ok, but doesn't show me tasks that are assigned to someone else, but have subtasks assigned to me. Is it possible to make it show me both tasks assigned to me, and tasks that have subtasks assigned to me? 回答1: Create a filter for all of your subtask from the following JQL: issuetype in subtaskIssueTypes() and assignee = currentUser() Then, using Craftforge JQL Functions Plugin, use the

List all JIRA tasks that are not blocked by other tasks

大城市里の小女人 提交于 2019-12-03 13:56:23
Using JIRA 4.4.3, I've created a filter that list all the tasks that: - The current user is assigned to; - are Open; - are not blocked by any other task. To make it clear: the task that are ready for a user to work on. We've installed the Craftforge JQL Functions plugin, and I've come with the following JQL query: assignee = currentUser() AND status in (Open) AND issue NOT IN linkedIssuesFromFilter("All Issues", "Blocks", "Outward") The problem is that when an issue that was blocking another issue is resolved, the "Blocks" link still exist -- and I don't want to delete it. But my query doesn't

Jira Quick-filter to show all task with subtasks assigned to current user

妖精的绣舞 提交于 2019-12-03 05:45:28
Currently, I have a quick filter to show me my task that does this: assignee = currentUser() This works ok, but doesn't show me tasks that are assigned to someone else, but have subtasks assigned to me. Is it possible to make it show me both tasks assigned to me, and tasks that have subtasks assigned to me? Create a filter for all of your subtask from the following JQL: issuetype in subtaskIssueTypes() and assignee = currentUser() Then, using Craftforge JQL Functions Plugin , use the following JQL to find their parents: issue in parentIssuesFromFilter("filter name or its id") In addition to

JIRA JQL searching by date - is there a way of getting Today() (Date) instead of Now() (DateTime)

本秂侑毒 提交于 2019-12-02 21:00:24
I am trying to create some Issue Filters in JIRA based on CreateDate . The only date/time function I can find is Now() and searches relative to that, i.e. "-1d", "-4d" etc. The only problem with this is that Now() is time specific so there is no way of getting a particular day's created issues. i.e. Created < Now() AND Created >= "-1d" when run at 2pm today will show all issues created from 2pm yesterday to 2pm today when run at 9am tomorrow will show all issues created from 9am today to 9am tomorrow What I want is to be able to search for all issues created from 00:00 to 23:59 on any day. Is

Find parents issues which contains subtasks with label

ⅰ亾dé卋堺 提交于 2019-12-01 12:08:44
I have a JIRA project and some of my tasks contains subtasks with lasbels "needDesign". Is it possible to find all parent tasks which contains subtasks with that label? (I use ondemand jira version) Jira JQL doesn't not provide this out of the box, however there are many add-ons that extend JQL to allow this. I would normally suggest you install the Script Runner add-on (see https://marketplace.atlassian.com/plugins/com.onresolve.jira.groovy.groovyrunner ) as it contains many useful built-in functions to perform searches in JQL like the one you are asking about. The particular function for

JQL: Get list of sprints

天大地大妈咪最大 提交于 2019-11-30 17:55:09
Is it possible to get a list of sprints for a particular project ? I know there is a way to find issues by a sprint, but haven't found any way to get all the sprints. I use the following rest call to find all the sprints: https://yourjira.com/rest/greenhopper/1.0/integration/teamcalendars/sprint/list?jql=project+%3D+YOURPROJECTKEY To find only the open sprint of the project I run this: https://yourjira.com/rest/greenhopper/1.0/integration/teamcalendars/sprint/list?jql=project+%3D+YOURPROJECTKEY+and+Sprint+not+in+closedSprints() In JQL it's not yet possible but you can use the new jira agile

JQL: Get list of sprints

孤人 提交于 2019-11-30 16:49:48
问题 Is it possible to get a list of sprints for a particular project ? I know there is a way to find issues by a sprint, but haven't found any way to get all the sprints. 回答1: I use the following rest call to find all the sprints: https://yourjira.com/rest/greenhopper/1.0/integration/teamcalendars/sprint/list?jql=project+%3D+YOURPROJECTKEY To find only the open sprint of the project I run this: https://yourjira.com/rest/greenhopper/1.0/integration/teamcalendars/sprint/list?jql=project+%3D