« Jira » : différence entre les versions

De Banane Atomic
Aller à la navigationAller à la recherche
 
Ligne 4 : Ligne 4 :
= JQL search =
= JQL search =
<kode lang='jql'>
<kode lang='jql'>
project=MyProject AND status not in (DONE, RESOLVED, CLOSED) AND issuetype not in subtaskIssueTypes() ORDER BY status  
project=MyProject
AND status not in (DONE, RESOLVED, CLOSED)
AND issuetype not in subtaskIssueTypes() -- only parent tasks
ORDER BY status  
</kode>
</kode>

Dernière version du 2 février 2023 à 10:49

Links

JQL search

Jql.svg
project=MyProject
AND status not in (DONE, RESOLVED, CLOSED)
AND issuetype not in subtaskIssueTypes() -- only parent tasks
ORDER BY status