issuetype != Task OR subtasks what is the error in this

Ramanathan Hariharan April 29, 2021

issuetype != Task OR subtasks

What is the error in this JQL Query

2 answers

1 accepted

1 vote
Answer accepted
Kevin Johnson
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
April 29, 2021

Hi @Ramanathan Hariharan ,

If you are trying to get issues that are not task or subtask try something like "issuetype != Task or issuetype != Subtask"

If you want all issues other than both try "issuetype not in (Task,Subtask)"

Error is due to the issuetype not mentioned, you cannot give the value continously.

-Kevin

0 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
April 29, 2021

You might want to use functions instead of hardcoded lists of issuetypes.

For example, your query would probably be 

issuetype != Task and issuetype not in subtaskIssueTypes()

Suggest an answer

Log in or Sign up to answer