hello, i use JQL to filter my ticket
use this JQL
`
project = x-project AND sprint IN openSprints() AND issuetype = Subtask
`
but in real board, there are not subtask exist in open sprint
result
should be return this subtask
Is that the correct "Subtask" wording? There's often two Sub-task Issue Types in Jira I find...
Try changing Subtask > Sub-task (it should be visible when auto-completing the search phrase), and see if this works.
You could also try...
issuetype in subTaskIssueTypes()
...as a catch-all instead.
Ste
yes already correct issue type
also i try your query
use
project = x-project AND sprint IN openSprints() AND issuetype in subTaskIssueTypes()
same issue, no tiket shown
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Looks like it's a bug/feature request - see:
^ Your options would be to either...
If you did consider using Automation, this is what I'd do:
^ Not ideal, but a partial workaround at this point :)
Ste
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @digital solution ,
Welcome to Atlassian Community !
If you are using Team Managed project, then we have below known bug for your issue.
JSWCLOUD-21968 - Using the JQL sprint in openSprints() doesn't include team-managed subtasks
Hope this helps !
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@digital solution , Yes for team managed projects , using JQL sprint in opensprint() does not include subtasks.
If my post helped you, kindly accept the answer.
Thanks,
Prerna
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try next query:
project = XP AND sprint IN openSprints() AND issuetype in subTaskIssueTypes()
or
project = "x-project" AND sprint IN openSprints() AND issuetype in subTaskIssueTypes()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Then, looks like it's problem @Prerna Sony had written earlier.
You can change project type (but it's not very fast process https://support.atlassian.com/jira-work-management/docs/migrate-between-team-managed-and-company-managed-projects/), or change approach, stop using sprints for subTasks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.