« Jira » : différence entre les versions

De Banane Atomic
Aller à la navigationAller à la recherche
(Page créée avec « = Links = = JQL search = <kode lang='jql'> project=MyProject AND status not in (DONE, RESOLVED, CLOSED) AND issuetype not in subtaskIssueTypes() ORDER BY status </kode> »)
 
 
(2 versions intermédiaires par le même utilisateur non affichées)
Ligne 1 : Ligne 1 :
= Links =
= Links =
* [https://confluence.atlassian.com/jira061/jira-user-s-guide/searching-for-issues/advanced-searching Advanced Searching]


= 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