JQL キーワード
We're updating terminology in Jira and changing 'issue' to 'work item'. As part of the change, there are no changes to existing JQL queries.
ここでは高度な検索に使用するキーワードに関する情報について説明します。JQL のキーワードは、次のうちいずれかに当てはまる単語または語句となります。
2 つ以上の句を結合して複雑な JQL クエリを形成する
1 つ以上の句のロジックを変更する
演算子のロジックを変更する
JQL クエリ内に明確な定義がある
JQL クエリの結果を置き換える特定の関数を実行する。
AND
複数の句を組み合わせて検索を絞り込むために使用します。
括弧を使用することで句の実行順序を制御できます。
例
Find all open work items in the "New office" project:
project = "New office" and status = "open"
Find all open, urgent work items that are assigned to jsmith:
status = open and priority = urgent and assignee = jsmith
Find all work items in a particular project that are not assigned to jsmith:
project = JRA and assignee != jsmith
Find all work items for a specific release which consists of different version numbers across several projects:
project in (JRA,CONF) and fixVersion = "3.14"
Find all work items where neither the Reporter nor the Assignee is Jack, Jill or John:
reporter not in (Jack,Jill,John) and assignee not in (Jack,Jill,John)
または
複数の句を組み合わせて検索範囲を広げるために使用します。
括弧を使用することで句の実行順序を制御できます。
(注: あわせて IN もご確認ください。フィールドで複数の値を検索する場合はこちらのほうが便利である可能性があります)
例
Find all work items that were created by either jsmith or jbrown:
reporter = jsmith or reporter = jbrown
Find all work items that are overdue or where no due date is set:
duedate < now() or duedate is empty
NOT
個別の句、または括弧を使用した複雑な JQL クエリ (複数の句で構成されたクエリ) の否定に使用して、検索精度を高めることができます。
(注意: NOT EQUALS ("!="), DOES NOT CONTAIN ("!~")、NOT IN そして IS NOTについても参照してください)
例
Find all work items that are assigned to any user except jsmith:
not assignee = jsmith
Find all work items that were not created by either jsmith or jbrown:
not (reporter = jsmith or reporter = jbrown)
EMPTY
Used to search for work items where a given field does not have a value. See also NULL.
EMPTY は、IS および IS NOT 演算子をサポートしているフィールドでのみ使用できます。フィールドがサポートする演算子については、個々のフィールドリファレンスを確認してください。
例
Find all work items without a DueDate:
duedate = empty
または
duedate is empty
NULL
Used to search for work items where a given field does not have a value. See also EMPTY.
NULL は、IS および IS NOT 演算子をサポートしているフィールドでのみ使用できます。フィールドがサポートする演算子については、個々のフィールドリファレンスを確認してください。
例
Find all work items without a DueDate:
duedate = null
または
duedate is null
ORDER BY
検索結果をその値に基づいて並べ替えるフィールドを指定するために使用します。この要件は JQL クエリの最後に記述する必要があります。そうしないと、JQL は無効になります。
既定では、フィールド独自の並び順が使用されます。昇順 (asc
) または降順 (desc
) を指定することで、この順序をオーバーライドできます。
例
Find all work items without a DueDate, sorted by CreationDate:
duedate = empty order by created
Find all work items without a DueDate, sorted by CreationDate, then by Priority (highest to lowest):
duedate = empty order by created, priority desc
Find all work items without a DueDate, sorted by CreationDate, then by Priority (lowest to highest):
duedate = empty order by created, priority asc
Ordering by Components or Versions will list the returned work items first by Project, and only then by the field's natural order (see JRA-31113).
この内容はお役に立ちましたか?