詳細検索

お困りですか?

アトラシアン コミュニティをご利用ください。

コミュニティに質問

The instructions on this page describe how to define and execute a search using the advanced search. You can also define and execute a search using the quick search or using basic searching.

高度な検索とは

An advanced search allows you to use structured queries to search for JIRA issues. Your search results will be displayed in the Issue Navigator, where you can export them to MS Excel and many other formats. You can also save and subscribe to your advanced searches if you wish.

高度な検索を実行するときには、JIRA クエリ言語 (JQL) を使用します。

A simple query in JQL (also known as a 'clause') consists of a field, followed by an operator, followed by one or more values or functions. For example, the following simple query will find all issues in the "TEST" project:

project = "TEST"

(This example uses the Project field, the EQUALS operator, and the value "TEST".)

Be aware that it is not possible to compare two fields.

(info) JQL gives you some SQL-like syntax, such as the ORDER BY SQL keyword and ISNULL() SQL function (i.e. the NULL keyword in JQL). However, JQL is not a database query language. For example, JQL does not have a SELECT statement.

高度な検索を実行するには

  1. Choose Issues > Search for Issues. The issue navigator will be displayed.
    • 既存の検索条件がある場合は、New filter (新しいフィルター)ボタンをクリックして検索条件をリセットします。
    • Advanced (詳細設定)リンクが表示されたら、クリックして高度な検索に切り替えます。
  2. Type your query using the fields, operators and field values or functions.
  3. Search (検索) ボタンをクリックしてクエリを実行します。

Performing Text Searches

You can use Lucene's text-searching features when performing searches on the following fields, using the CONTAINS operator:

  • 要約
  • 説明
  • 環境
  • コメント
  • custom fields which use the "Free Text Searcher"; this includes custom fields of the following built-in Custom Field Types
    • フリー テキスト フィールド (無制限のテキスト)
    • テキスト フィールド (255 文字までのテキスト)
    • 読み取り専用テキスト フィールド

For details, please see the page on Performing Text Searches.

自動入力を使用する

クエリを入力すると、JIRA はコンテキストを認識し、次のように「オートコンプリート」候補のリストを表示します:

The list of auto-complete suggestions is displayed alphabetically and includes the first 15 matches. Note that auto-complete suggestions are not offered for function parameters.

注意:

  • If no auto-complete suggestions are offered, your administrator may have disabled the "JQL Auto-complete" feature for your JIRA instance.
  • If you prefer not to be offered auto-complete suggestions, click the "Turn off auto-complete" link below the "Query" box.

Auto-complete suggestions are not offered for all fields. Check the fields reference to see which fields support auto-complete.

「高度な」検索と「簡易」検索の切り替え

In general, a query created using 'Simple Search' will be able to be translated to 'Advanced Search' (i.e. JQL), and back again.

ただし、「高度な検索」を使用して作成されたクエリを「簡易検索」に変換することはできません。特に次のような場合は変換できません。

  • the query contains an OR operator (note you can have an IN operator and it will be translated, e.g. project in (A, B))
    • i.e. even though this query: (project = JRA OR project = CONF) is equivalent to this query: (project in (JRA, CONF)), only the second query will be translated.
  • NOT 演算子を含むクエリ
  • EMPTY 演算子を含むクエリ
  • 比較演算子 (!=、IS、IS NOT、>、>=、<、<=) を含むクエリ
  • the query specifies a field and value that is related to a project (e.g. version, component, custom fields) and the project is not explicitly included in the query (e.g. fixVersion = "4.0", without the AND project=JRA). This is especially tricky with custom fields since they can be configured on a Project/Issue Type basis. The general rule of thumb is that if the query cannot be created in the 'Simple Search' form, then if it is created using 'Advanced Search' it will not be able to be translated to 'Simple Search'.

 

演算子の優先順位の設定

You can use parentheses in complex JQL statements to enforce the precedence of operators.

例えば、SysAdmin プロジェクトの解決済みの課題すべてと、システム管理者 (bobsmith) に現状、割り当てられているすべての課題を検索したい場合、 括弧を使用してクエリ内のブーリアン演算子の優先順位を変更できます。
例:

(status=resolved AND project=SysAdmin) OR assignee=bobsmith

括弧を使用しない場合、ステートメントは左から右に評価されます。

You can also use parentheses to group clauses, so that you can apply the NOT operator to the group.

キーワード参照

JQL のキーワードは、次のいずれかを行う単語または語句です。

  • 2 つ以上の句を結合して複雑な JQL クエリを形成する
  • 1 つ以上の句のロジックを変更する
  • alters the logic of operators
  • JQL クエリ内に明確な定義がある
  • JQL クエリの結果を変更する特定の関数を実行する

キーワードのリスト:

AND

複数の句を組み合わせて検索を絞り込むために使用します。

Note that you can use parentheses to control the order in which clauses are executed.

  • "New office" プロジェクト内のすべてのオープンな課題を検索:

    project = "New office" and status = "open"
  • jsmith に割り当てられたオープンかつ緊急のすべての課題を検索:

    status = open and priority = urgent and assignee = jsmith
  • jsmith に割り当てられていない、特定のプロジェクト内のすべての課題を検索:

    project = JRA and assignee != jsmith
  • 複数のプロジェクトにおいて、複数のバージョン番号で構成される特定のリリースに対するすべての課題を検索:

    project in (JRA,CONF) and fixVersion = "3.14"
  • 報告者と担当者が Jack、Jill、John のいずれでもないすべての課題を検索:

    reporter not in (Jack,Jill,John) and assignee not in (Jack,Jill,John)

^top of keywords | ^^top of topic

または

複数の句を組み合わせて検索範囲を広げるために使用します。

Note that you can use parentheses to control the order in which clauses are executed.

(Note: also see IN, which can be a more convenient way to search for multiple values of a field.)

  • jsmith または jbrown のいずれかが作成したすべての課題を検索:

    reporter = jsmith or reporter = jbrown
  • 期限切れまたは期限が設定されていないすべての課題を検索:

    duedate < now() or duedate is empty

^top of keywords | ^^top of topic

NOT

Used to negate individual clauses or a complex JQL query (a query made up of more than one clause) using parentheses, allowing you to refine your search.

(Note: also see NOT EQUALS ("!="), DOES NOT CONTAIN ("!~"), NOT IN and IS NOT.)

  • jsmith 以外のすべてのユーザーに割り当てられたすべての課題を検索:

    not assignee = jsmith
  • jsmith または jbrown が作成していないすべての課題を検索:

    not (reporter = jsmith or reporter = jbrown)

^top of keywords | ^^top of topic

EMPTY

Used to search for issues where a given field does not have a value. See also NULL.

Note that EMPTY can only be used with fields that support the IS and IS NOT operators. To see a field's supported operators, check the individual field reference.

  • Find all issues without a DueDate:

    duedate = empty

    または

    duedate is empty

^top of keywords | ^^top of topic

NULL

Used to search for issues where a given field does not have a value. See also EMPTY.

Note that NULL can only be used with fields that support the IS and IS NOT operators. To see a field's supported operators, check the individual field reference.

  • Find all issues without a DueDate:

    duedate = null

    または

    duedate is null

^top of keywords | ^^top of topic

ORDER BY

検索結果の並び順の基準として使用する値を持つフィールドを指定するために使用します。

既定では、フィールド独自の並び順が使用されます。昇順 (asc) または降順 (desc) を指定することで、この順序を上書きできます。

  • Find all issues without a DueDate, sorted by CreationDate:

    duedate = empty order by created 
  • Find all issues without a DueDate, sorted by CreationDate, then by Priority (highest to lowest):

    duedate = empty order by created, priority desc
  • Find all issues 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 issues first by Project and only then by the field's natural order (see JRA-31113).

^top of keywords | ^^top of topic


演算子参照

An operator in JQL is one or more symbols or words which compares the value of a field on its left with one or more values (or functions) on its right, such that only true results are retrieved by the clause. Some operators may use the NOT keyword.

演算子の一覧:

EQUALS: =

The "=" operator is used to search for issues where the value of the specified field exactly matches the specified value. (Note: cannot be used with text fields; see the CONTAINS operator instead.)

To find issues where the value of a specified field exactly matches multiple values, use multiple "=" statements with the AND operator.

  • jsmith が作成したすべての課題を検索:

    reporter = jsmith
  • John Smith が作成したすべての課題を検索:

    reporter = "John Smith"

^top of operators | ^^top of topic

NOT EQUALS: !=

The "!=" operator is used to search for issues where the value of the specified field does not match the specified value. (Note: cannot be used with text fields; see the DOES NOT MATCH ("!~") operator instead.)

Note that typing field != value is the same as typing NOT field = value, and that field != EMPTY is the same as field IS_NOT EMPTY.

The "!=" operator will not match a field that has no value (i.e. a field that is empty). For example, component != fred will only match issues that have a component and the component is not "fred". To find issues that have a component other than "fred" or have no component, you would need to type: component != fred or component is empty.

  • jsmith 以外のすべてのユーザーに割り当てられたすべての課題を検索:

    not assignee = jsmith

    または

    assignee != jsmith
  • jsmith に割り当てられていないすべての課題を検索:

    assignee != jsmith or assignee is empty
  • 自分以外が報告した、自分に割り当てられていないすべての課題を検索:

    reporter = currentUser() and assignee != currentUser()
  • 報告社または担当者が John Smith 以外のすべてのユーザーであるすべての課題を検索:

    assignee != "John Smith" or reporter != "John Smith"
  • 未割り当てのすべての課題を検索:

    assignee is not empty

    または

    assignee != null

^top of operators | ^^top of topic

GREATER THAN: >

The ">" operator is used to search for issues where the value of the specified field is greater than the specified value. Cannot be used with text fields.

Note that the ">" operator can only be used with fields which support ordering (e.g. date fields and version fields). To see a field's supported operators, check the individual field reference.

  • 投票数が 4 票より多いすべての課題を検索:

    votes > 4
  • 期限切れのすべての課題を検索:

    duedate < now() and resolution is empty
  • 優先度が "Normal" より高いすべての課題を検索:

    priority > normal

^top of operators | ^^top of topic

GREATER THAN EQUALS: >=

The ">=" operator is used to search for issues where the value of the specified field is greater than or equal to the specified value. Cannot be used with text fields.

Note that the ">=" operator can only be used with fields which support ordering (e.g. date fields and version fields). To see a field's supported operators, check the individual field reference.

  • 投票数が 4 票以上のすべての課題を検索:

    votes >= 4
  • 期限が 2008 年 12 月 31 日以降のすべての課題を検索:

    duedate >= "2008/12/31"
  • 過去 5 日間に作成されたすべての課題を検索:

    created >= "-5d"

^top of operators | ^^top of topic

LESS THAN: <

The "<" operator is used to search for issues where the value of the specified field is less than the specified value. Cannot be used with text fields.

Note that the "<" operator can only be used with fields which support ordering (e.g. date fields and version fields). To see a field's supported operators, check the individual field reference.

  • 投票数が 4 票より少ないすべての課題を検索:

    votes < 4

^top of operators | ^^top of topic

LESS THAN EQUALS: <=

The "<=" operator is used to search for issues where the value of the specified field is less than or equal to than the specified value. Cannot be used with text fields.

Note that the "<=" operator can only be used with fields which support ordering (e.g. date fields and version fields). To see a field's supported operators, check the individual field reference.

  • 投票数が 4 票以下のすべての課題を検索:

    votes <= 4
  • 過去 1 ヶ月間 (30 日間) 更新されなかったすべての課題を検索:

    updated <= "-4w 2d"

^top of operators | ^^top of topic

IN

"IN" 演算子は、指定したフィールドの値が対象となる複数の値のいずれかである課題を検索するために使用します。値は、括弧で囲んだカンマ区切りのリスト形式で指定します。

Using "IN" is equivalent to using multiple EQUALS (=) statements, but is shorter and more convenient. That is, typing reporter IN (tom, jane, harry) is the same as typing reporter = "tom" OR reporter = "jane" OR reporter = "harry".

  • jsmith、jbrown、jjones のいずれかが作成したすべての課題を検索:

    reporter in (jsmith,jbrown,jjones)
  • 報告者または担当者が Jack または Jill であるすべての課題を検索:

    reporter in (Jack,Jill) or assignee in (Jack,Jill)
  • バージョン 3.14 またはバージョン 4.2 のすべての課題を検索:

    affectedVersion in ("3.14", "4.2")

^top of operators | ^^top of topic

NOT IN

"NOT IN" 演算子は、指定したフィールドの値が対象となる複数の値に含まれない課題を検索するために使用します。

Using "NOT IN" is equivalent to using multiple NOT_EQUALS (!=) statements, but is shorter and more convenient. That is, typing reporter NOT IN (tom, jane, harry) is the same as typing reporter != "tom" AND reporter != "jane" AND reporter != "harry".

The "NOT IN" operator will not match a field that has no value (i.e. a field that is empty). For example, assignee not in (jack,jill) will only match issues that have an assignee and the assignee is not "jack" or "jill". To find issues that are assigned to someone other than "jack" or "jill" or are unassigned, you would need to type: assignee not in (jack,jill) or assignee is empty.

  • Assignee (担当者) が Jack、Jill または John の課題をすべて検索する:

    assignee not in (Jack,Jill,John)
  • Assignee (担当者) が、Jack、Jill、John 以外の課題をすべて検索する:

    assignee not in (Jack,Jill,John) or assignee is empty
  • FixVersion (修正バージョン) が、'A'、'B'、'C'、'D' 以外の課題をすべて検索する:

    FixVersion not in (A, B, C, D)
  • FixVersion (修正バージョン) が、'A'、'B'、'C'、'D' 以外、または指定されていない課題をすべて検索する:

    FixVersion not in (A, B, C, D) or FixVersion is empty

^top of operators | ^^top of topic

CONTAINS: ~

"~" 演算子は、指定したフィールドの値が指定した値と一致する課題の検索に使用します (完全一致またはあいまい一致。以降の例を参照)。次のようなテキスト フィールドでのみ使用できます。

  • 要約
  • 説明
  • 環境
  • コメント
  • custom fields which use the "Free Text Searcher"; this includes custom fields of the following built-in Custom Field Types
    • フリー テキスト フィールド (無制限のテキスト)
    • テキスト フィールド (255 文字までのテキスト)
    • 読み取り専用テキスト フィールド

Note: when using the "~" operator, the value on the right-hand side of the operator can be specified using JIRA text-search syntax.

  • 要約に "win" の単語 (または "wins" などの指定した語を含む単語) を含むすべての課題を検索:

    summary ~ win
  • Find all issues where the Summary contains a wild-card match for the word "win":

    summary ~ "win*"
  • 要約に ”issue" および "collector" の単語を含むすべての課題を検索:

    summary ~ "issue collector"
  • Find all issues where the Summary contains the exact phrase "full screen" (see Reserved Characters for details on how to escape quote-marks and other special characters):

    summary ~ "\"full screen\""

^top of operators | ^^top of topic

DOES NOT CONTAIN: !~

"!~" 演算子は、指定したフィールドの値が指定した値のあいまい一致に該当しない課題の検索に使用します。次のようなテキスト フィールドでのみ使用できます。

  • 要約
  • 説明
  • 環境
  • コメント
  • custom fields which use the "Free Text Searcher"; this includes custom fields of the following built-in Custom Field Types
    • フリー テキスト フィールド (無制限のテキスト)
    • テキスト フィールド (255 文字までのテキスト)
    • 読み取り専用テキスト フィールド

Note: when using the "!~" operator, the value on the right-hand side of the operator can be specified using JIRA text-search syntax.

  • 要約に "run" の単語 (または "running" などの指定した語を含む単語) を含まないすべての課題を検索:

    summary !~ run

^top of operators | ^^top of topic

IS

The "IS" operator can only be used with EMPTY or NULL. That is, it is used to search for issues where the specified field has no value.

Note that not all fields are compatible with this operator; see the individual field reference for details.

  • 修正バージョンを持たないすべての課題を検索:

    fixVersion is empty

    または

    fixVersion is null

^top of operators | ^^top of topic

IS NOT

The "IS NOT" operator can only be used with EMPTY or NULL. That is, it is used to search for issues where the specified field has a value.

Note that not all fields are compatible with this operator; see the individual field reference for details.

  • 投票数が 1 票以上のすべての課題を検索:

    votes is not empty

    または

    votes is not null

^top of operators | ^^top of topic

WAS

The "WAS" operator is used to find issues that currently have, or previously had, the specified value for the specified field.

この演算子では次の述部を使用できます:
  • AFTER "date"
  • BEFORE "date"
  • BY "username"
  • DURING ("date1","date2")
  • ON "date"
この演算子は、フィールドの変更時にシステムで設定された値の名前 (例: "Resolved (解決済み)") を照合します。また、このオプションは値の名前と関連付けられた値 ID も照合します。つまり、"Resolved (解決済み)" と同様に "4" を照合します。

(Note: This operator can be used with the Assignee, Fix Version, PriorityReporter, Resolution and Status fields only.)

  • 現在または過去のステータスが "n Progress (進行中)" である (であった) 課題を検索する:

    status WAS "In Progress"
  • Joe Smith が 2 月 2 日より前に解決した課題を検索:

    status WAS "Resolved" BY jsmith BEFORE "2011/02/02"
  • Joe Smith が 2010 年に解決した課題を検索:

    status WAS "Resolved" BY jsmith DURING ("2010/01/01","2011/01/01")

^top of operators | ^^top of topic

WAS IN

The "WAS IN" operator is used to find issues that currently have, or previously had, any of multiple specified values for the specified field. The values are specified as a comma-delimited list, surrounded by parentheses.

Using "WAS IN" is equivalent to using multiple WAS statements, but is shorter and more convenient. That is, typing status WAS IN ('Resolved', 'Closed') is the same as typing status WAS "Resolved" OR status WAS "Closed".

この演算子では次の述部を使用できます:
  • AFTER "date"
  • BEFORE "date"
  • BY "username"
  • DURING ("date1","date2")
  • ON "date"
この演算子は、フィールドの変更時にシステムで設定された値の名前 (例: "Resolved (解決済み)") を照合します。また、このオプションは値の名前と関連付けられた値 ID も照合します。つまり、"Resolved (解決済み)" と同様に "4" を照合します。

(Note: This operator can be used with the Assignee, Fix Version, PriorityReporter, Resolution and Status fields only.)

  • 現在または過去のステータスが "Resolved" または "In Progress" であるすべての課題を検索:

    status WAS IN ("Resolved","In Progress")

^top of operators | ^^top of topic

WAS NOT IN

"WAS NOT IN" 演算子は、指定したフィールドの値が対象の複数の値のいずれかを持ったことがない課題を検索するために使用します。

Using "WAS NOT IN" is equivalent to using multiple WAS_NOT statements, but is shorter and more convenient. That is, typing status WAS NOT IN ("Resolved","In Progress") is the same as typing status WAS NOT "Resolved" AND status WAS NOT "In Progress".

この演算子では次の述部を使用できます:
  • AFTER "date"
  • BEFORE "date"
  • BY "username"
  • DURING ("date1","date2")
  • ON "date"
この演算子は、フィールドの変更時にシステムで設定された値の名前 (例: "Resolved (解決済み)") を照合します。また、このオプションは値の名前と関連付けられた値 ID も照合します。つまり、"Resolved (解決済み)" と同様に "4" を照合します。

(Note: This operator can be used with the Assignee, Fix Version, PriorityReporter, Resolution and Status fields only.)

  • "Resolved" または "In Progress" のステータスを持ったことがないすべての課題を検索:

    status WAS NOT IN ("Resolved","In Progress")
  • 2 月 2 日より前に "Resolved" または "In Progress" のステータスを持たなかったすべての課題を検索:

    status WAS NOT IN ("Resolved","In Progress") BEFORE "2011/02/02"

^top of operators | ^^top of topic

WAS NOT

"WAS NOT" 演算子は、指定したフィールドが対象の値を持ったことがない課題の検索に使用します。

この演算子では次の述部を使用できます:
  • AFTER "date"
  • BEFORE "date"
  • BY "username"
  • DURING ("date1","date2")
  • ON "date"
この演算子は、フィールドの変更時にシステムで設定された値の名前 (例: "Resolved (解決済み)") を照合します。また、このオプションは値の名前と関連付けられた値 ID も照合します。つまり、"Resolved (解決済み)" と同様に "4" を照合します。

(Note: This operator can be used with the Assignee, Fix Version, PriorityReporter, Resolution and Status fields only.)

  • ステータスが "In Progress (進行中)" ではなく、これまでにもなったことがない課題を検索する:

    status WAS NOT "In Progress"
  • 2 月 2 日より前に "In Progress" ステータスを持たなかった課題を検索:

    status WAS NOT "In Progress" BEFORE "2011/02/02"

^top of operators | ^^top of topic

CHANGED

The "CHANGED" operator is used to find issues that have a value which had changed for the specified field.

この演算子では次の述部を使用できます:

  • AFTER "日付"
  • BEFORE "日付"
  • BY "ユーザー名"
  • DURING ("日付1","日付2")
  • ON "日付"
  • FROM "古い値"
  • TO "新しい値"
  • 担当者が変更された課題を検索:

    assignee CHANGED
  • ステータスが "In Progress" から "Open " に変更された課題を検索:

    status CHANGED FROM "In Progress" TO "Open"
  • 現在の週の間にユーザー "freddo" が Priority を変更した課題を検索:

    priority CHANGED BY freddo BEFORE endOfWeek() AFTER startOfWeek()

^top of operators | ^^top of topic

フィールド参照

A field in JQL is a word that represents a JIRA field (or a custom field that has already been defined in JIRA). In a clause, a field is followed by an operator, which in turn is followed by one or more values (or functions). The operator compares the value of the field with one or more values or functions on the right, such that only true results are retrieved by the clause.

フィールド一覧:

対象バージョン

Search for issues that are assigned to a particular Affects Version(s). You can search by version name or version ID (i.e. the number that JIRA automatically allocates to a version).

バージョン名で検索するよりも、バージョン ID で検索する方が安全です。

Different projects may have versions with the same name, so searching by version name may return issues from multiple projects. It is also possible for your JIRA administrator to change the name of a version, which could break any saved filters which rely on that name. Version IDs, however, are unique and cannot be changed.

Note: this field supports auto-complete.

構文
affectedVersion
フィールド タイプ

VERSION

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

Note that the comparison operators (e.g. ">") use the version order that has been set up by your project administrator, not a numeric or alphabetic order.

サポートされる関数
When used with the IN and NOT IN operators, this field supports:
  • releasedVersions()
  • latestReleasedVersion()
  • unreleasedVersions()
  • earliestUnreleasedVersion()
  • AffectedVersion (対象バージョン) が 3.14 の課題を検索する:

    affectedVersion = "3.14"

    (Note that full-stops are reserved characters, so they need to be surrounded by quote marks.)

  • AffectedVersion (対象バージョン) が "Big Ted" の課題を検索する:

    affectedVersion = "Big Ted"
  • AffectedVersion ID (対象バージョン ID) が 10350 の課題を検索する:

    affectedVersion = 10350

^top of fields | ^^top of topic

担当者

特定のユーザーに割り当てられた課題を検索します。検索条件にはユーザーのフルネーム、ID またはメールアドレスを使用できます。

Note: this field supports auto-complete.

構文
assignee
フィールド タイプ

USER

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)
サポートされる関数
When used with the IN and NOT IN operators, this field supports:
  • membersOf()

When used with the EQUALS and NOT EQUALS operators, this field supports:

  • currentUser()
  • John Smith に割り当てられた課題を検索する:

    assignee = "John Smith"

    または

    assignee = jsmith
  • John Smith に現在割り当てられている、または過去に割り当てられていた課題を検索する:

     assignee WAS "John Smith"

    または

     assignee WAS jsmith
  • Find issues that are assigned by the user with email address "bob@mycompany.com":

    assignee = "bob@mycompany.com"

    (Note that full-stops and "@" symbols are reserved characters, so the email address needs to be surrounded by quote-marks.)

^top of fields | ^^top of topic

添付ファイル

添付ファイルがある、または添付ファイルがない課題を検索します。このフィールドには EMPTY または IS NOT EMPTY 演算子のみを使用できます。

Note: this field supports auto-complete.

構文
attachments
フィールド タイプ

ATTACHMENT

サポートされる演算子

 

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

(error)

(error)
サポートされる関数

なし

  • 添付ファイルがある課題を検索する

    attachments IS NOT EMPTY
  • 添付ファイルがない課題を検索する

    attachments IS EMPTY

^top of fields | ^^top of topic

カテゴリ

特定のカテゴリー内のプロジェクトに所属する課題を検索します。

Note: this field supports auto-complete.

構文
category
フィールド タイプ

CATEGORY

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)
サポートされる関数

n/a

  • "Alphabet Projects" カテゴリーのプロジェクトに所属する課題を検索する:

     category = "Alphabet Projects"

^top of fields | ^^top of topic

コメント

Comment (コメント) に特定のテキストが含まれる課題を検索します。

JIRA text-search syntax can be used.

Note: this field does not support auto-complete.

構文
comment
フィールド タイプ

TEXT

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(error)

(error)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)
サポートされる関数

n/a

  • Comment (コメント) に "My PC is quite old (自分の PC は非常に古い)" と一致するテキストが含まれる課題を検索する (例: 「あいまい」一致):

    comment ~ "My PC is quite old"
  • Comment (コメント) に "My PC is quite old (自分の PC は非常に古い)" との完全一致が含まれる課題を検索する:

    comment ~ "\"My PC is quite old\""

^top of fields | ^^top of topic

コンポーネント

Search for issues that belong to a particular component(s) of a project. You can search by component name or component ID (i.e. the number that JIRA automatically allocates to a component).

コンポーネント名で検索するよりも、コンポーネント ID で検索する方が安全です。

Different projects may have components with the same name, so searching by component name may return issues from multiple projects. It is also possible for your JIRA administrator to change the name of a component, which could break any saved filters which rely on that name. Component IDs, however, are unique and cannot be changed.

Note: this field supports auto-complete.

構文
component
フィールド タイプ

COMPONENT

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)
サポートされる関数

When used with the IN and NOT IN operators, component supports:

  • "Comp1" または "Comp2" コンポーネント内の課題を検索する:

     component in (Comp1, Comp2)
  • "Comp1" および "Comp2" コンポーネント内の課題を検索する:

     component in (Comp1) and component in (Comp2)

    または

     component = Comp1 and component = Comp2
  • ID が 20500 のコンポーネント内で課題を検索する:

    component = 20500

^top of fields | ^^top of topic

作成日

Search for issues that were created on, before or after a particular date (or date range). Note that if a time-component is not specified, midnight will be assumed. Please note that the search results will be relative to your configured time zone (which is by default the JIRA server's time zone).

以下の形式のいずれかを使用:

"yyyy/MM/dd HH:mm"
"yyyy-MM-dd HH:mm"
"yyyy/MM/dd"
"yyyy-MM-dd"

Or use "w" (weeks), "d" (days), "h" (hours) or "m" (minutes) to specify a date relative to the current time. The default is "m" (minutes). Be sure to use quote-marks ("); if you omit the quote-marks, the number you supply will be interpreted as milliseconds after epoch (1970-1-1).

Note: this field does not support auto-complete.

構文
created

Alias (エイリアス):

createdDate
フィールド タイプ

DATE

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)
サポートされる関数
EQUALSNOT EQUALSGREATER THANGREATER THAN EQUALSLESS THANLESS THAN EQUALS 演算子と共に使用する場合、このフィールドは以下をサポートします:
  • currentLogin()
  • lastLogin()
  • now()
  • startOfDay()
  • startOfWeek()
  • startOfMonth()
  • startOfYear()
  • endOfDay()
  • endOfWeek()
  • endOfMonth()
  • endOfYear()
  • Find all issues created before 12th December 2010:

    created < "2010/12/12"
  • Find all issues created on or before 12th December 2010:

    created <= "2010/12/13"
  • 2010 年 12 月 12 日 2:00pm より前に作成された課題をすべて検索する:

    created > "2010/12/12" and created < "2010/12/12 14:00"
  • 1 日以内に作成された課題を検索する:

    created > "-1d"
  • 2011 年 1 月に作成された課題を検索する:

    created > "2011/01/01" and created < "2011/02/01"
  • 2011 年 1 月 15 日に作成された課題を検索する:

    created > "2011/01/15" and created < "2011/01/16"

^top of fields | ^^top of topic

作成者

特定のユーザー以外が作成した課題を検索する:

検索条件にはユーザーのフルネーム、ID またはメールアドレスを使用できます。

Note: this field supports auto-complete.

構文
creator
フィールド タイプ

USER

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

サポートされる関数

When used with the IN and NOT IN operators, this field supports:
  • membersOf()

When used with the EQUALS and NOT EQUALS operators, this field supports:

  • currentUser()

  • Jill Jones が作成した課題を検索する:

    creator = "Jill Jones"

    または

    creator = jjones
  • Search for issues that were created by the user with email address "bob@mycompany.com":

    creator = "bob@mycompany.com"

    (Note that full-stops and "@" symbols are reserved characters, so the email address needs to be surrounded by quote-marks.)

^top of fields | ^^top of topic

カスタム フィールド

Only applicable if your JIRA administrator has created one or more Custom Fields.

特定のカスタム フィールドに特定の値が入力された課題を検索します。

検索条件にはカスタム フィールド名またはカスタム フィールド ID (例: JIRA がカスタム フィールドに自動的に割り当てた番号) を使用できます。

カスタム フィールド名で検索するよりも、カスタム フィールド ID で検索する方が安全です。

It is possible for a Custom Field to have the same name as a built-in JIRA system field, in which case JIRA will search on the system field (not your custom field). It is also possible for your JIRA administrator to change the name of a Custom Field, which could break any saved filters which rely on that name. Custom Field IDs, however, are unique and cannot be changed.

注意:

  • JIRA text-search syntax can be used with Custom Fields of type 'Text'.
  • auto-complete is supported for Custom Fields of type picker, group picker, select, check-box and radio button fields.
構文
CustomFieldName

Alias (エイリアス):

cf[CustomFieldID]
フィールド タイプ

Depends on the Custom Field's configuration

サポートされる演算子

Different types of Custom Fields support different operators. For the default Custom Field Types, the following operators are supported:

  • 数字および日付/ 時刻フィールド:

    =

    !=

    ~

    !~

    >

    >=

    <

    <=

    IS

    IS NOT

    IN

    NOT IN

    WAS

    WAS IN

    WAS NOT

    WAS NOT IN

    CHANGED

    (tick)

    (tick)

    (error)

    (error)

    (tick)

    (tick)

    (tick)

    (tick)

    (tick)

    (tick)

    (tick)

    (tick)

    (error)

    (error)

    (error)

    (error)

    (error)
  • ピッカー、選択、チェックボックス、ラジオ ボタン フィールド:

    =

    !=

    ~

    !~

    >

    >=

    <

    <=

    IS

    IS NOT

    IN

    NOT IN

    WAS

    WAS IN

    WAS NOT

    WAS NOT IN

    CHANGED

    (tick)

    (tick)

    (error)

    (error)

    (error)

    (error)

    (error)

    (error)

    (tick)

    (tick)

    (tick)

    (tick)

    (error)

    (error)

    (error)

    (error)

    (error)
  • テキスト フィールド:

    =

    !=

    ~

    !~

    >

    >=

    <

    <=

    IS

    IS NOT

    IN

    NOT IN

    WAS

    WAS IN

    WAS NOT

    WAS NOT IN

    CHANGED

    (error)

    (error)

    (tick)

    (tick)

    (error)

    (error)

    (error)

    (error)

    (tick)

    (tick)

    (error)

    (error)

    (error)

    (error)

    (error)

    (error)

    (error)
サポートされる関数

Different types of Custom Fields support different functions. For the default Custom Field Types, the following functions are supported:

  • Date/time fields:
    EQUALSNOT EQUALSGREATER THANGREATER THAN EQUALSLESS THANLESS THAN EQUALS 演算子と共に使用する場合、このフィールドは以下をサポートします:
    • currentLogin()
    • lastLogin()
    • now()
    • startOfDay()
    • startOfWeek()
    • startOfMonth()
    • startOfYear()
    • endOfDay()
    • endOfWeek()
    • endOfMonth()
    • endOfYear()
  • Version picker fields:
    When used with the IN and NOT IN operators, this field supports:
    • releasedVersions()
    • latestReleasedVersion()
    • unreleasedVersions()
    • earliestUnreleasedVersion()
  • "Location (場所)" カスタム フィールドの値が "New York" の課題を検索する:

    location = "New York"
  • ID が 10003 で、カスタム フィールドの値が "New York" の課題を検索する:

    cf[10003] = "New York"
  • "Location (場所)" カスタム フィールドの値が "London"、"Milan" または "Paris" の課題を検索する:

    cf[10003] in ("London", "Milan", "Paris")
  • "Location (場所)" カスタム フィールドの値がない課題を検索する:

    location != empty

^top of fields | ^^top of topic

説明

Search for issues where the Description contains particular text.

JIRA text-search syntax can be used.

Note: this field does not support auto-complete.

構文
description
フィールド タイプ

TEXT

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(error)

(error)

(tick)

(tick)

(error)

(error)

(error)

(error)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

(error)

(error)
サポートされる関数

n/a

  • Description (説明) に "Please see screenshot (スクリーンショットを参照)" と一致するテキストが含まれる課題を検索する (例: 「あいまい」一致):

    description ~ "Please see screenshot"
  • Description (説明) に "Please see screenshot (スクリーンショットを参照)" との完全一致が含まれる課題を検索する:

    description ~ "\"Please see screenshot\""

^top of fields | ^^top of topic

期限

特定の日付 (または日付範囲)、それよりも前、またはそれよりも後に期限切れとなった課題を検索します。期日は日付とのみ関連付けられます (時刻ではない)。

以下の形式のいずれかを使用:

"yyyy/MM/dd"
"yyyy-MM-dd"

Or use "w" (weeks) or "d" (days) to specify a date relative to the current date. Be sure to use quote-marks (").

Note: this field does not support auto-complete.

構文
due

Alias (エイリアス):

dueDate
フィールド タイプ

DATE

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)
サポートされる関数
EQUALSNOT EQUALSGREATER THANGREATER THAN EQUALSLESS THANLESS THAN EQUALS 演算子と共に使用する場合、このフィールドは以下をサポートします:
  • currentLogin()
  • lastLogin()
  • now()
  • startOfDay()
  • startOfWeek()
  • startOfMonth()
  • startOfYear()
  • endOfDay()
  • endOfWeek()
  • endOfMonth()
  • endOfYear()
  • 2010 年 12 月 31 日より前に期限切れとなった課題をすべて検索する:

    due < "2010/12/31"
  • 2010 年 12 月 31 日以前に期限切れとなった課題をすべて検索する:

    due <= "2011/01/01"
  • 期日が明日の課題をすべて検索する:

    due = "1d"
  • 2011 年 1 月が期日の課題をすべて検索する:

    due >= "2011/01/01" and due <= "2011/01/31"
  • 2011 年 1 月 15 日が期日の課題をすべて検索する:

    due = "2011/01/15"

^top of fields | ^^top of topic

環境

Search for issues where the Environment contains particular text.

JIRA text-search syntax can be used.

Note: this field does not support auto-complete.

構文
environment
フィールド タイプ

TEXT

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(error)

(error)

(tick)

(tick)

(error)

(error)

(error)

(error)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

(error)

(error)
サポートされる関数

n/a

  • Environment (環境) に "Third floor (3 階)" と一致するテキストが含まれる課題を検索する (例: 「あいまい」一致)

    environment ~ "Third floor"
  • Environment (環境) に "Third floor (3 階)" との完全一致が含まれる課題を検索する:

    environment ~ "\"Third floor\""

^top of fields | ^^top of topic

(info) Only available if you are using JIRA Agile 6.1.2 or later.

Search for issues that belong to a particular Epic in JIRA Agile. The search is based on either the epic's Name, Issue Key or Issue ID (i.e. the number that JIRA automatically allocates to an Issue).

Note: this field does not support auto-complete.

構文
"epic link"
フィールド タイプ

エピック リンク リレーションシップ (JIRA Agile によって作成されたカスタムのタイプ)。

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

サポートされる関数

When used with the IN or NOT IN operators, epic link supports:

  • issueHistory()
  • linkedIssues()
  • votedIssues()
  • watchedIssues()
  • エピック "Jupiter" (課題キー ANERDS-317) に所属する課題を検索する:

    "epic link" = ANERDS-317

    または

    "epic link" = Jupiter

^top of fields | ^^top of topic

フィルター

You can use a saved filter to narrow your search. You can search by filter name or filter ID (i.e. the number that JIRA automatically allocates to a saved filter).

フィルター名で検索するよりも、フィルター ID で検索する方が安全です。

フィルター名が変更されて保存済みフィルターが壊れ、名前で別のフィルタが呼び出されてしまう可能性があります。ただし、フィルター ID は一意であり、変更できません。

注意:

  • An Advanced Searching statement in your typed query will override an ORDER BY statement in the saved filter.
  • 無限ループを発生させるフィルターを実行または保存することはできません (現在のフィルターを参照する保存済みフィルターを参照することはできません)。
  • This field supports auto-complete.
    構文
    filter

    エイリアス:

    request
    savedFilter
    searchRequest
フィールド タイプ

フィルター

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)
サポートされる関数

n/a

  • ユーザー jsmith に割り当てられた課題のフィルター "My Saved Filter (マイ保存済みフィルター)" (ID は 12000) の結果を検索する:

    filter = "My Saved Filter" and assignee = jsmith

    または

    filter = 12000 and assignee = jsmith

^top of fields | ^^top of topic

修正対象バージョン

Search for issues that are assigned to a particular Fix Version. You can search by version name or version ID (i.e. the number that JIRA automatically allocates to a version).

バージョン名で検索するよりも、バージョン ID で検索する方が安全です。

Different projects may have versions with the same name, so searching by version name may return issues from multiple projects. It is also possible for your JIRA administrator to change the name of a version, which could break any saved filters that rely on that name. Version IDs, however, are unique and cannot be changed.

Note: this field supports auto-complete.

構文
fixVersion
フィールド タイプ

VERSION

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

Note that the comparison operators (e.g. ">") use the version order that has been set up by your project administrator, not a numeric or alphabetic order.

サポートされる関数
When used with the IN and NOT IN operators, this field supports:
  • releasedVersions()
  • latestReleasedVersion()
  • unreleasedVersions()
  • earliestUnreleasedVersion()
  • Fix Version (修正バージョン) が 3.14 または 4.2 の課題を検索する:

     fixVersion in ("3.14", "4.2")

    (Note that full-stops are reserved characters, so they need to be surrounded by quote marks.)

  • Fix Version (修正バージョン) が "Little Ted" の課題を検索する:

    fixVersion = "Little Ted"
  • Fix Version ID (修正バージョン ID) が 10001 の課題を検索する:

    fixVersion = 10001

^top of fields | ^^top of topic

課題キー

Search for issues with a particular Issue Key or Issue ID (i.e. the number that JIRA automatically allocates to an Issue).

Note: this field does not support auto-complete.

構文
issueKey

エイリアス:

id
issue
key
フィールド タイプ

ISSUE

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)
サポートされる関数

When used with the IN or NOT IN operators, issueKey supports:

  • issueHistory()
  • linkedIssues()
  • votedIssues()
  • watchedIssues()
  • キーが "ABC-123" の課題を検索する:

    issueKey = ABC-123 

^top of fields | ^^top of topic

LastViewed (最終閲覧日)

Search for issues that were last viewed on, before or after a particular date (or date range). Note that if a time-component is not specified, midnight will be assumed. Please note that the search results will be relative to your configured time zone (which is by default the JIRA server's time zone).

以下の形式のいずれかを使用:

"yyyy/MM/dd HH:mm"
"yyyy-MM-dd HH:mm"
"yyyy/MM/dd"
"yyyy-MM-dd"

Or use "w" (weeks), "d" (days), "h" (hours) or "m" (minutes) to specify a date relative to the current time. The default is "m" (minutes). Be sure to use quote-marks ("); if you omit the quote-marks, the number you supply will be interpreted as milliseconds after epoch (1970-1-1).

Note: this field does not support auto-complete.

構文
lastViewed
フィールド タイプ

DATE

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

サポートされる関数

EQUALSNOT EQUALSGREATER THANGREATER THAN EQUALSLESS THANLESS THAN EQUALS 演算子と共に使用する場合、このフィールドは以下をサポートします:
  • currentLogin()
  • lastLogin()
  • now()
  • startOfDay()
  • startOfWeek()
  • startOfMonth()
  • startOfYear()
  • endOfDay()
  • endOfWeek()
  • endOfMonth()
  • endOfYear()

  • 最後に閲覧されたのが 2010 年 12 月 12 日より前の課題をすべて検索する:

    lastViewed < "2010/12/12"
  • 最後に閲覧されたのが 2010 年 12 月 12 日より前の課題をすべて検索する:

    lastViewed <= "2010/12/13"
  • 最後に閲覧されたのが 2010 年 12 月 12 日 2:00pm より前の課題をすべて検索する:

    lastViewed > "2010/12/12" and created < "2010/12/12 14:00"
  • 最後に閲覧されたのが 1 日以内の課題を検索する:

    lastViewed > "-1d"
  • 最後に閲覧されたのが 2011 年 1 月の課題を検索する:

    lastViewed > "2011/01/01" and created < "2011/02/01"
  • 最後に閲覧されたのが 2011 年 1 月 15 日の課題を検索する:

    lastViewed > "2011/01/15" and created < "2011/01/16"

^top of fields | ^^top of topic

レベル

Only available if Issue Level Security has been enabled by your JIRA administrator.

Search for issues with a particular Security Level. You can search by Issue Security Level name or Issue Security Level ID (i.e. the number that JIRA automatically allocates to an Issue Security Level).

セキュリティ レベル名で検索するよりも、セキュリティ レベル ID で検索する方が安全です。

It is possible for your JIRA administrator to change the name of a Security Level, which could break any saved filter which rely on that name. Security Level IDs, however, are unique and cannot be changed.

Note: this field supports auto-complete.

構文
level
フィールド タイプ

SECURITY LEVEL

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)
サポートされる関数

n/a

  • Security Level (セキュリティ レベル) が "Really High (非常に高い)" または "レベル1" の課題を検索する:

    level in ("Really High", level1)
  • Security Level ID (セキュリティ レベル ID) が 123 の課題を検索する:

    level = 123

^top of fields | ^^top of topic

初期見積り

Only available if time-tracking has been enabled by your JIRA administrator.

Search for issues where the Original Estimate is set to a particular value (i.e. a number, not a date or date range).

"w"、"d"、"h"、"m" を使用して、週、日付、時間、分を指定します。

Note: this field does not support auto-complete.

構文
originalEstimate

Alias (エイリアス):

timeOriginalEstimate
フィールド タイプ

DURATION

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)
サポートされる関数

n/a

  • Original Estimate (最初の予測) が 1 時間の課題を検索する:

    originalEstimate = 1h
  • Original Estimate (最初の予測) が 2 日より多い課題を検索する:

    originalEstimate > 2d

^top of fields | ^^top of topic

Only available if sub-tasks have been enabled by your JIRA administrator.

Search for all sub-tasks of a particular issue. You can search by Issue Key or by Issue ID (i.e. the number that JIRA automatically allocates to an Issue).

Note: this field does not support auto-complete.

構文
parent
フィールド タイプ

ISSUE

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)
サポートされる関数

n/a

  • "TEST-1234" を親に持つサブタスクを検索する:

    parent = TEST-1234

^top of fields | ^^top of topic

Priority

Search for issues with a particular Priority. You can search by Priority name or Priority ID (i.e. the number that JIRA automatically allocates to a Priority).

優先度名で検索するよりも、優先度 ID で検索する方が安全です。

It is possible for your JIRA administrator to change the name of a Priority, which could break any saved filter which rely on that name. Priority IDs, however, are unique and cannot be changed.

Note: this field supports auto-complete.

構文
priority
フィールド タイプ

PRIORITY

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)
サポートされる関数

n/a

  • Priority (優先度) が "High (高)" の課題を検索する:

     priority = High
  • Priority ID (優先度 ID) が 10000 の課題を検索する:

    priority = 10000

^top of fields | ^^top of topic

プロジェクト

Search for issues that belong to a particular Project.

You can search by Project Name, by Project Key or by Project ID (i.e. the number that JIRA automatically allocates to a project). In the rare case where there is a project whose project key is the same as another project's name, then the project key takes preference and hides results from the second project.

Note: this field supports auto-complete.

構文
project
フィールド タイプ

PROJECT

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)
サポートされる関数

When used with the IN and NOT IN operators, project supports:

  • projectsLeadByUser()
  • projectsWhereUserHasPermission()
  • projectsWhereUserHasRole()
  • "ABC Project" という名前のプロジェクトに所属する課題を検索する:

     project = "ABC Project" 
  • キーが "ABC" のプロジェクトに所属する課題を検索する:

    project = "ABC"
  • ID が "1234" のプロジェクトに所属する課題を検索する:

    project = 1234

^top of fields | ^^top of topic

残余見積り

Only available if time-tracking has been enabled by your JIRA administrator.

Search for issues where the Remaining Estimate is set to a particular value (i.e. a number, not a date or date range).

"w"、"d"、"h"、"m" を使用して、週、日付、時間、分を指定します。

Note: this field does not support auto-complete.

構文
remainingEstimate

Alias (エイリアス):

timeEstimate
フィールド タイプ

DURATION

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)
サポートされる関数

n/a

  • Remaining Estimate (残余予測) が 4 日より多い課題を検索する:

     remainingEstimate > 4h 

^top of fields | ^^top of topic

報告者

特定のユーザーによって報告された課題を検索します。このユーザーが作成者と同じ場合もありますが、明確ではありません。

検索条件にはユーザーのフルネーム、ID またはメールアドレスを使用できます。

Note: this field supports auto-complete.

構文
reporter
フィールド タイプ

USER

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)
サポートされる関数
When used with the IN and NOT IN operators, this field supports:
  • membersOf()

When used with the EQUALS and NOT EQUALS operators, this field supports:

  • currentUser()
  • Jill Jones が報告した課題を検索する:

    reporter = "Jill Jones"

    または

    reporter = jjones
  • Search for issues that were reported by the user with email address "bob@mycompany.com":

    reporter = "bob@mycompany.com"

    (Note that full-stops and "@" symbols are reserved characters, so the email address needs to be surrounded by quote-marks.)

^top of fields | ^^top of topic

ソリューション

Search for issues that have a particular Resolution

検索条件には解決策名または解決策 ID (例: JIRA が解決策に自動的に割り当てる番号) を使用できます。

解決策名で検索するよりも、解決策 ID で検索する方が安全です。

It is possible for your JIRA administrator to change the name of a Resolution, which could break any saved filter which rely on that name. Resolution IDs, however, are unique and cannot be changed.

Note: this field supports auto-complete.

構文
resolution
フィールド タイプ

RESOLUTION

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)
サポートされる関数

n/a

  • Resolution (解決策) が "Cannot Reproduce (再現不可)" または "Won't Fix (修正しない)" の課題を検索する:

     resolution in ("Cannot Reproduce", "Won't Fix")
  • Resolution ID (解決策 ID) が 5 の課題を検索する:

    resolution = 5
  • 解決策がない課題を検索する:

    resolution = unresolved

^top of fields | ^^top of topic

解決済み

Search for issues that were resolved on, before or after a particular date (or date range). Note that if a time-component is not specified, midnight will be assumed. Please note that the search results will be relative to your configured time zone (which is by default the JIRA server's time zone).

以下の形式のいずれかを使用:

"yyyy/MM/dd HH:mm"
"yyyy-MM-dd HH:mm"
"yyyy/MM/dd"
"yyyy-MM-dd"

Or use "w" (weeks), "d" (days), "h" (hours) or "m" (minutes) to specify a date relative to the current time. The default is "m" (minutes). Be sure to use quote-marks ("); if you omit the quote-marks, the number you supply will be interpreted as milliseconds after epoch (1970-1-1).

Note: this field does not support auto-complete.

構文
resolved

Alias (エイリアス):

resolutionDate
フィールド タイプ

DATE

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)
サポートされる関数

EQUALSNOT EQUALSGREATER THANGREATER THAN EQUALSLESS THANLESS THAN EQUALS 演算子と共に使用する場合、このフィールドは以下をサポートします:
  • currentLogin()
  • lastLogin()
  • now()
  • startOfDay()
  • startOfWeek()
  • startOfMonth()
  • startOfYear()
  • endOfDay()
  • endOfWeek()
  • endOfMonth()
  • endOfYear()

  • Find all issues that were resolved before 31st December 2010:

    resolved <= "2010/12/31"
  • 2010 年 12 月 31 日 の 2:00 pm より前に解決された課題をすべて検索する:

    resolved < "2010/12/31 14:00"
  • 2010 年 12 月 31 日以前に解決された課題をすべて検索する:

    resolved <= "2011/01/01"
  • 2011 年 1 月に解決された課題を検索する:

    resolved > "2011/01/01" and resolved < "2011/02/01"
  • 2011 年 1 月 15 日に解決された課題を検索する:

    resolved > "2011/01/15" and resolved < "2011/01/16"
  • 過去 1 時間以内に解決された課題を検索する:

    resolved > -1h

^top of fields | ^^top of topic

 

Sprint

(info) Only available if you are using JIRA Agile.

Search for issues that are assigned to a particular sprint in JIRA Agile. This works for active sprints and future sprints. The search is based on either the sprint name or the sprint ID (i.e. the number that JIRA automatically allocates to a sprint).

構文
sprint

(info) 似た名前、あるいは同じ名前の複数のスプリントがある場合、スプリント名またはスプリント名の一部を使用して検索できます。一致候補はオートコンプリート ドロップダウンに表示され、表示されるスプリントの日付でスプリントを見分けることができます (括弧内にスプリント ID も表示されます)。

フィールド タイプ

数値

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

サポートされる関数
  • openSprints()
  • closedSprints()
  • スプリント 999 に所属する課題を検索する:

    sprint = 999
  • スプリント "February 1" に所属する課題を検索する:

    sprint = "February 1"
  • "February 1"、"February 2" または "February 3" のいずれかに所属する課題を検索する:

    sprint in ("February 1","February 2","February 3")
  • スプリントに割り当てられた課題を検索する:

    sprint is not empty

 

^top of fields | ^^top of topic

 

ステータス

Search for issues that have a particular Status.

検索条件にはステータス名またはステータス ID (例: JIRA がステータスに自動的に割り当てる番号) を使用できます。

ステータス名で検索するよりも、ステータス ID で検索する方が安全です。

It is possible for your JIRA administrator to change the name of a Status, which could break any saved filter which rely on that name. Status IDs, however, are unique and cannot be changed.

Please note, though, that the WAS, WAS_NOT, WAS_IN and WAS_NOT_IN operators can only be used with the name (not the ID).

Note: this field supports auto-complete.

構文
status
フィールド タイプ

STATUS

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)
サポートされる関数

n/a

  • Status (ステータス) が " Open (未処理)" の課題を検索する:

     status = Open
  • Status ID (ステータス ID) が 1 の課題を検索する:

    status = 1
  • 現在または過去のステータスが "Open (未処理)" である (であった) 課題を検索する:

     status WAS Open

^top of fields | ^^top of topic

要約

Search for issues where the Summary contains particular text.

JIRA text-search syntax can be used.

Note: this field does not support auto-complete.

構文
summary
フィールド タイプ

TEXT

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(error)

(error)

(tick)

(tick)

(error)

(error)

(error)

(error)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

(error)

(error)
サポートされる関数

n/a

  • Summary (概要) に "Error saving file (ファイルの保存エラー)" と一致するテキストが含まれる課題を検索する (例: 「あいまい」一致):

    summary ~ "Error saving file"
  • Summary (概要) に "Error saving file (ファイルの保存エラー)" との完全一致が含まれる課題を検索する:

    summary ~ "\"Error saving file\""

^top of fields | ^^top of topic

Text

これは、次のすべてのテキスト フィールドを検索できる "マスター フィールド" です。

  • 要約
  • 説明
  • 環境
  • コメント
  • custom fields which use the "Free Text Searcher"; this includes custom fields of the following built-in Custom Field Types
    • フリー テキスト フィールド (無制限のテキスト)
    • テキスト フィールド (255 文字までのテキスト)
    • 読み取り専用テキスト フィールド

メモ:

構文
text
フィールド タイプ

TEXT

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(error)

(error)

(tick)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)
サポートされる関数

n/a

  • テキスト フィールドが、"Fred" の単語と一致する課題を検索する:

    text ~ "Fred"

    または

    text ~ Fred
  • テキスト フィールドに "full screen (フルスクリーン)" と完全一致が含まれる課題をすべて検索する:

    text ~ "\"full screen\""

^top of fields | ^^top of topic

タイプ

Search for issues that have a particular Issue Type.

検索は課題タイプ名または課題タイプ ID (例: JIRA が課題タイプに自動的に割り当てる番号) のいずれかに基づいて行われます。

タイプ名で検索するよりも、タイプ ID で検索する方が安全です。

It is possible for your JIRA administrator to change the name of a Type, which could break any saved filter which rely on that name. Type IDs, however, are unique and cannot be changed.

Note: this field supports auto-complete.

構文
type

Alias (エイリアス):

issueType
フィールド タイプ

ISSUE_TYPE

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)
サポートされる関数

n/a

  • Issue Type (課題タイプ) が "Bug (バグ)" の課題を検索する:

    type = Bug
  • Issue Type (課題タイプ) が "Bug (バグ)" または "Improvement (改善)" の課題を検索する:

     issueType in (Bug,Improvement)
  • Issue Type ID (課題タイプ ID) が 2 の課題を検索する:

    issueType = 2

^top of fields | ^^top of topic

消費時間

Only available if time-tracking has been enabled by your JIRA administrator.

Search for issues where the Time Spent is set to a particular value (i.e. a number, not a date or date range).

"w"、"d"、"h"、"m" を使用して、週、日付、時間、分を指定します。

Note: this field does not support auto-complete.

構文
timeSpent
フィールド タイプ

DURATION

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)
サポートされる関数

n/a

  • Time Spent (所要時間) が 5 日より多い課題を検索する:

    timeSpent > 5d

^top of fields | ^^top of topic

更新日

Search for issues that were last updated on, before or after a particular date (or date range). Note that if a time-component is not specified, midnight will be assumed. Please note that the search results will be relative to your configured time zone (which is by default the JIRA server's time zone).

以下の形式のいずれかを使用:

"yyyy/MM/dd HH:mm"
"yyyy-MM-dd HH:mm"
"yyyy/MM/dd"
"yyyy-MM-dd"

Or use "w" (weeks), "d" (days), "h" (hours) or "m" (minutes) to specify a date relative to the current time. The default is "m" (minutes). Be sure to use quote-marks ("); if you omit the quote-marks, the number you supply will be interpreted as milliseconds after epoch (1970-1-1).

Note: this field does not support auto-complete.

構文
updated

Alias (エイリアス):

updatedDate
フィールド タイプ

DATE

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)
サポートされる関数
EQUALSNOT EQUALSGREATER THANGREATER THAN EQUALSLESS THANLESS THAN EQUALS 演算子と共に使用する場合、このフィールドは以下をサポートします:
  • currentLogin()
  • lastLogin()
  • now()
  • startOfDay()
  • startOfWeek()
  • startOfMonth()
  • startOfYear()
  • endOfDay()
  • endOfWeek()
  • endOfMonth()
  • endOfYear()
  • 最後に更新されたのが 2010 年 12 月 12 日より前の課題を検索する:

    updated < "2010/12/12"
  • 最後に更新されたのが 2010 年 12 月 12 日より前の課題を検索する:

    updated < "2010/12/13"
  • 2010 年 12 月 31 日 の 2:00 pm より前に更新された課題をすべて検索する:

    updated < "2010/12/31 14:00"
  • 最後に更新されたのが 2 週間より前の課題を検索する:

    updated < "-2w"
  • 最後に更新されたのが 2011 年 1 月 15 日の課題を検索する:

    updated > "2011/01/15" and updated < "2011/01/16"
  • 最後に更新されたのが 2011 年 1 月の課題を検索する:

    updated > "20011/01/01" and updated < "2011/02/01"

^top of fields | ^^top of topic

投票者

Search for issues for which a particular user has voted. You can search by the user's Full Name, ID or Email Address. Note that you can only find issues for which you have the "View Voters and Watchers" permission, unless you are searching for your own votes. See also votedIssues.

Note: this field supports auto-complete.

構文
voter
フィールド タイプ

USER

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)
サポートされる関数
When used with the IN and NOT IN operators, this field supports:
  • membersOf()

When used with the EQUALS and NOT EQUALS operators, this field supports:

  • currentUser()
  • 自分が投票した課題を検索する:

    voter = currentUser()
  • ユーザー "jsmith" が投票した課題を検索する:

    voter = "jsmith"
  • グループ "jira-developers" のメンバーが投票した課題を検索する:

    voter in membersOf("jira-developers")

^top of fields | ^^top of topic

投票数

Search for issues with a specified number of votes.

Note: this field does not support auto-complete.

構文
votes
フィールド タイプ

NUMBER

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(error)

(error)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)
サポートされる関数

n/a

  • 12 票以上の課題をすべて検索する:

    votes >= 12

^top of fields | ^^top of topic

ウォッチャー

Search for issues that a particular user is watching. You can search by the user's Full Name, ID or Email Address. Note that you can only find issues for which you have the "View Voters and Watchers" permission, unless you are searching for issues where you are the watcher. See also watchedIssues.

Note: this field supports auto-complete.

構文
watcher
フィールド タイプ

USER

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)
サポートされる関数
When used with the IN and NOT IN operators, this field supports:
  • membersOf()

When used with the EQUALS and NOT EQUALS operators, this field supports:

  • currentUser()
  • 自分がウォッチしている課題を検索する:

    watcher = currentUser()
  • ユーザー "jsmith" がウォッチしている課題を検索する:

    watcher = "jsmith"
  • グループ "jira-developers" がウォッチしている課題を検索する:

    watcher in membersOf("jira-developers")

^top of fields | ^^top of topic

ウォッチャー

Search for issues with a specified number of watchers.

Note: this field does not support auto-complete.

構文
watchers
フィールド タイプ

NUMBER

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(error)

(error)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)
サポートされる関数

n/a

  • 3 人以上にウォッチされている課題をすべて検索する:

    watchers > 3

^top of fields | ^^top of topic

Work Ratio (作業率)

Only available if time-tracking has been enabled by your JIRA administrator.

Work Ratio (作業率) が特定の値の課題を検索します。

Work Ratio is calculated as follows: workRatio = timeSpent / originalEstimate) x 100

Note: this field does not support auto-complete.

構文
workRatio
フィールド タイプ

NUMBER

サポートされる演算子

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)
サポートされる関数

n/a

  • 所要時間が Original Estimate (最初の予測) の 75 % より多い課題を検索する:

     workRatio > 75

^top of fields | ^^top of topic

 

最終更新日: 2014 年 1 月 7 日

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.