We're updating our terminology in Jira

'Issue' is changing to 'work item'. You might notice some inconsistencies while this big change takes place.

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 では、特定のフィールドの値を検索できます。Jira の各フィールドには、対応する JQL 名があります。カスタム フィールドを作成した場合は、そのフィールドに名前を付けるように求められます。

句では、フィールドの後に演算子、その後に 1 つ以上の値 (または関数) が続きます。演算子はフィールドの値を右側の 1 つ以上の値または関数と比較して、true となる結果のみが句によって取得されます。JQLでは 2 つのフィールドを比較できません。

対象バージョン

Search for work items 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). Note, it is better to search by version ID than by version name. Different projects may have versions with the same name. 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.

構文

affectedVersion

フィールド タイプ

VERSION

オートコンプリート

はい

サポートされる演算子

= , != , > , >= , < , <=
IS, IS NOT, IN, NOT IN 比較演算子 (例: ">") は、数値やアルファベット順ではなくプロジェクト管理者が設定したバージョン順を使用することにご注意ください。

サポートされない演算子

~ , !~
WAS, WAS IN, WAS NOT, WAS NOT IN, CHANGED

サポートされる関数

= および != 演算子と共に使用する場合、このフィールドは以下をサポートします。

  • latestReleasedVersion()

  • earliestUnreleasedVersion()

IN および NOT IN 演算子と共に使用する場合、このフィールドは以下をサポートします:

  • releasedVersions()

  • unreleasedVersions()

  • Find work items with an AffectedVersion of 3.14:
    affectedVersion = "3.14"
    Note that full-stops are reserved characters and need to be surrounded by quote-marks.

  • Find work items with an AffectedVersion of "Big Ted":
    affectedVersion = "Big Ted"

  • Find work items with an AffectedVersion ID of 10350:
    affectedVersion = 10350

承認

ビジネス プロジェクトの Jira Service Management でのみ使用します。

承認済みまたは承認待ちのリクエストを検索します。この検索はユーザーによってさらに細かく設定できます。

構文

approvals

フィールド タイプ

USER

オートコンプリート

いいえ

サポートされる演算子

=

サポートされない演算子

~ , != , !~ , > , >= , < , <=
IS , IS NOT , IN , NOT IN , WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED

サポートされる関数

  • approved()

  • approver()

  • myApproval()

  • myPending()

  • myPendingApproval()

  • pending()

  • pendingBy()

  • John Smith による承認が必要または必要だったリクエストを検索:
    approval = approver(jsmith)

  • John Smith による承認が必要なリクエストを検索:
    approval = pendingBy(jsmith)

  • 現在のユーザーによる承認が必要な (または必要だった) リクエストを検索する
    approval = myPending()

  • 承認が必要なすべてのリクエストを検索:
    approval = pending()

担当者

Search for work items that are assigned to a particular user. You can search by the user's full name, ID, or email address.

構文

assignee

フィールド タイプ

USER

オートコンプリート

はい

サポートされる演算子

= , !=
IS, IS NOT, IN, NOT IN, WAS, WAS IN, WAS NOT, WAS NOT IN, CHANGED

注意: 比較演算子 (例: ">") は、数値やアルファベット順ではなくプロジェクト管理者が設定したバージョン順を使用します。

サポートされない演算子

~ , !~ , > , >= , < , <=

サポートされる関数

IN および NOT IN 演算子と共に使用する場合、このフィールドは以下をサポートします:

  • membersOf()

EQUALS または NOT EQUALS 演算子と共に使用する場合、このフィールドは以下をサポートします:

  • currentUser()

  • Find work items that are assigned to John Smith:
    assignee = "John Smith"or
    assignee = jsmith

  • Find work items that are currently assigned, or were previously assigned, to John Smith:
    assignee WAS jsmith

  • Find work items that are assigned by the user with email address bob@mycompany.com:

    • assignee = "bob@mycompany.com"

      終止符と @ 記号は予約語のため、引用符で囲む必要があります。

添付ファイル

Search for work items that have or do not have attachments. 

構文

attachments

フィールド タイプ

ATTACHMENT

オートコンプリート

はい

サポートされる演算子

IS, IS NOT

サポートされない演算子

=, != , ~ , !~ , > , >= , < , <= IN, NOT IN, WAS, WAS IN, WAS NOT, WAS NOT IN, CHANGED

サポートされる関数

なし

  • Search for work items that have attachments:
    attachments IS NOT EMPTY  

  • Search for work items that do not have attachments:
    attachments IS EMPTY 

カテゴリー

Search for work items that belong to projects in a particular category.

構文

category

フィールド タイプ

CATEGORY

オートコンプリート

はい

サポートされる演算子

=, !=
IS, IS NOT, IN, NOT IN

サポートされない演算子

~ , !~ , > , >= , < , <= WAS, WAS IN, WAS NOT, WAS NOT IN, CHANGED

サポートされる関数

なし

  • Find work items that belong to projects in the "Alphabet Projects" Category:
    category = "Alphabet Projects"

ゲーティング タイプを変更する

ビジネス プロジェクトでのみ使用します。

変更リクエストに使用されている変更ゲーティングのタイプを検索します。「Tracked-only」のリクエストは、変更管理プロセスとは別に設けられている統合によって生成されます。これらのツールでは、承認や変更のゲーティング戦略は考慮されません。「Tracked-only」の変更リクエストは、記録保持の目的にのみ使用されます。

構文

change-gating-type

フィールド タイプ

TEXT

オートコンプリート

はい

サポートされる演算子

= , !=

IS, IS NOT, IN, NOT IN

サポートされない演算子 

~ , !~ , > , >= , < , <= WAS, WAS IN, WAS NOT, WAS NOT IN, CHANGED

サポートされる関数

なし

  • ゲーティング タイプが空のリクエストを検索:
    change-gating-type is EMPTY

  • ゲーティング タイプが「Tracked-only (追跡のみ)」のリクエストを検索する
    change-gating-type = "tracked-only"

コメント

Search for work items that have a comment that contains particular text using Jira text-search syntax. More about searching syntax for text fields.

構文

comment

フィールド タイプ

TEXT

オートコンプリート

いいえ

サポートされる演算子

~ , !~

サポートされない演算子

= , != , > , >= , < , <=
IS, IS NOT, IN, NOT IN, WAS, WAS IN, WAS NOT, WAS NOT IN, CHANGED

サポートされる関数

なし

  • Find work items where a comment contains the words "My PC is quite old" (a “term search” match):
    comment ~ "My PC is quite old"

  • Find work items where a comment contains the exact phrase "My PC is quite old":
    comment ~ "\"My PC is quite old\""

  • Find work items where a comment contains both the exact phrase "My PC is quite old" and the exact phrase “My Mac is quite new”:
    comment ~ "\"My PC is quite old\"" AND comment ~ "\"My Mac is quite new\""

Component

Search for work items 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).

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

構文

component

フィールド タイプ

COMPONENT

オートコンプリート

はい

サポートされる演算子

= , !=
IS , IS NOT , IN , NOT IN

サポートされない演算子

~ , !~ , > , >= , < , <= WAS, WAS IN, WAS NOT, WAS NOT IN, CHANGED

サポートされる関数

IN および NOT IN 演算子と共に使用する場合、コンポーネントは以下をサポートします:

  • componentsLeadByUser()

  • Find work items in the "Comp1" or "Comp2" component:
    component in (Comp1, Comp2)

  • Find work items in the "Comp1" and"Comp2" components:
    component in (Comp1) and component in (Comp2)
    or
    component = Comp1 and component = Comp2 

  • Find work items in the component with ID 20500:
    component = 20500 

created

Search for work items 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"

"w" (週)、"d" (日)、"h" (時間) または "m" (分) を使用して、現在の時刻に対する相対的な日付を指定することもできます。既定は "m" (分) です。引用符 (") を使用する必要があることにご注意ください。引用符を省略した場合、入力した数字はエポック (1970-1-1) のミリ秒後と解釈されます。

構文

created

エイリアス

createdDate

フィールド タイプ

DATE

オートコンプリート

いいえ

サポートされる演算子

= , != , > , >= , < , <= IS , IS NOT , IN , NOT IN

サポートされない演算子

~ , !~ WAS, WAS IN, WAS NOT, WAS NOT IN, CHANGED

サポートされる関数

EQUALSNOT EQUALSGREATER THANGREATER THAN EQUALSLESS THANLESS THAN EQUALS 演算子と共に使用する場合、このフィールドは以下をサポートします:

  • currentLogin()

  • lastLogin()

  • now()

  • startOfDay()

  • startOfWeek()

  • startOfMonth()

  • startOfYear()

  • endOfDay()

  • endOfWeek()

  • endOfMonth()

  • endOfYear()

  • Find all work items created before 12th December 2010:
    created < "2010/12/12"

  • Find all work items created on or before 12th December 2010:
    created <= "2010/12/13"

  • Find all work items created on 12th December 2010 before 2:00pm:
    created > "2010/12/12" and created < "2010/12/12 14:00" 

  • Find work items created less than one day ago:
    created > "-1d"

  • Find work items created in January 2011:
    created > "2011/01/01" and created < "2011/02/01"

  • Find work items created on 15 January 2011:created > "2011/01/15" and created < "2011/01/16"

作成者

Search for work items that were created by a particular user. You can search by the user's full name, ID, or email address. Note that a work item's creator does not change, so you cannot search for past creators (e.g. WAS). See Reporter for more options. 

構文

creator

フィールド タイプ

USER

オートコンプリート

はい

サポートされる演算子

= , !=
IS , IS NOT , IN , NOT IN

サポートされない演算子

~ , !~ , > , >= , < , <= CHANGED, WAS, WAS IN, WAS NOT, WAS NOT IN

サポートされる関数

IN および NOT IN 演算子と共に使用する場合、このフィールドは以下をサポートします:

  • membersOf()

EQUALS または NOT EQUALS 演算子と共に使用する場合、このフィールドは以下をサポートします:

  • currentUser()

  • Search for work items that were created by Jill Jones:
    creator = "Jill Jones"
    or
    creator = "jjones"

  • Search for work items that were created by the user with email address :
    creator = "bob@mycompany.com"
    (Note that full-stops and "@" symbols are reserved characters, so the email address needs to be surrounded by quote-marks.) 

カスタム フィールド

Jira 管理者が 1 つ以上のカスタム フィールドを作成している場合にのみ使用できます。

Search for work items where a particular custom field has a particular value. You can search by custom field name or custom field ID (i.e. the number that Jira automatically allocates to a custom field).

注意: カスタム フィールド名ではなくカスタム フィールド ID で検索することをおすすめします。カスタム フィールドの名前が 組み込み Jira システム フィールドと同じ場合、Jira ではシステム フィールド (カスタム フィールドではなく) が検索されます。この場合、Jira 管理者がカスタム フィールド名を変更してしまうと、その名前に依存している保存済みのフィルターが使用できなくなる可能性がありますが、カスタム フィールド ID は一意であり、変更されることはありません。

多肢選択式とドロップダウン式のカスタム フィールドでは、オプション値とオプション ID の両方で検索できます。ただし、パフォーマンス上の理由から、closedSprints()futureSprints()openSprints() を使用する場合は、オプション値でのみ検索できます。たとえば、closedSprints()16 を返す場合、次のクエリは、

"customField1[Dropdown]" in (12, closedSprints())

オプション値 1216 と ID 12 を検索します。

構文

CustomFieldName

エイリアス

cf[CustomFieldID]

フィールド タイプ

カスタム フィールドの設定によって異なる

"Text" タイプのカスタム フィールドでは、Jira テキスト検索構文を使用できます。

オートコンプリート

タイプ ピッカー、グループ ピッカー、選択、チェックボックス、ラジオ ボタン フィールドのカスタム フィールドで利用できます。

サポートされる演算子

カスタム フィールドの種類に応じて、サポートされる演算子も異なります。

サポートされる演算子:
数値と日付フィールドの場合 

= , != , > , >= , < , <=
IS , IS NOT , IN , NOT IN

サポートされない演算子:
数値と日付フィールドの場合

~ , !~ WAS, WAS IN, WAS NOT, WAS NOT IN, CHANGED

サポートされる演算子:
ピッカー、選択、チェックボックス、ラジオ ボタン フィールドの場合

= , !=
IS , IS NOT , IN , NOT IN

サポートされない演算子:
ピッカー、選択、チェックボックス、ラジオ ボタン フィールドの場合

~ , !~ , > , >= , < , <= WAS, WAS IN, WAS NOT, WAS NOT IN, CHANGED

サポートされる演算子:
テキスト フィールドの場合 

~ , !~
IS , IS NOT

サポートされない演算子:
テキスト フィールドの場合 

= , != , > , >= , < , <= IN , NOT IN , WAS, WAS IN, WAS NOT, WAS NOT IN, CHANGED

サポートされる演算子:
URL フィールドの場合 

= , !=
IS , IS NOT , IN , NOT IN

サポートされない演算子:
URL フィールドの場合

~ , !~ , > , >= , < , <= WAS, WAS IN, WAS NOT, WAS NOT IN, CHANGED

サポートされる関数

カスタム フィールドの種類に応じて、サポートされる関数も異なります。

サポートされる関数:
日付/時間フィールドの場合 

EQUALSNOT EQUALSGREATER THANGREATER THAN EQUALSLESS THAN または LESS THAN EQUALS 演算子と共に使用する場合、このフィールドは以下をサポートします:

  • currentLogin()

  • lastLogin()

  • now()

  • startOfDay()

  • startOfWeek()

  • startOfMonth()

  • startOfYear()

  • endOfDay()

  • endOfWeek()

  • endOfMonth()

  • endOfYear()

サポートされる関数:
バージョン ピッカー フィールドの場合 

 バージョン ピッカー フィールド: INNOT IN の各演算子を併用する際に、このフィールドは次をサポートします。

  • releasedVersions()

  • latestReleasedVersion()

  • unreleasedVersions()

  • earliestUnreleasedVersion()

  • Find work items where the value of the "Location" custom field is "New York":
    location = "New York"

  • Find work items where the value of the custom field with ID 10003 is "New York":
    cf[10003] = "New York"

  • Find work items where the value of the "Location" custom field is "London" or "Milan" or "Paris":
    cf[10003] in ("London", "Milan", "Paris")

  • Find work items where the "Location" custom field has no value:
    location != empty

説明

Search for work items where the description contains particular text using Jira text-search syntax. More about searching syntax for text fields.

構文

description

フィールド タイプ

TEXT

オートコンプリート

いいえ

サポートされる演算子

~ , !~
IS , IS NOT

サポートされない演算子

= , != , > , >= , < , <= IN , NOT IN, WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED

サポートされる関数

なし

  • Find work items where the description contains the words "Please see screenshot" (a "term search" match):
    description ~ "Please see screenshot"

  • Find work items where the description contains the exact phrase "Please see screenshot":
    description ~ "\"Please see screenshot\""

  • Find work items where the description contains both the exact phrase "Please see screenshot" and the exact phrase “What is needed”:
    description ~ "\"Please see screenshot\"" AND description ~ "\"What is needed\""

期限

Search for work items that were due on, before, or after a particular date (or date range). Note that the due date relates to the date only (not to the time).

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

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

"w" (週) または "d" (日) を使用して現在の時刻に対する相対的な日付を指定することもできます。引用符 (") を使用する必要があることにご注意ください。

構文

due

エイリアス

dueDate

フィールド タイプ

DATE

オートコンプリート

いいえ

サポートされる演算子

= , != , > , >= , < , <=
IS , IS NOT , IN , NOT IN

サポートされない演算子

~ , !~ WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED

サポートされる関数

EQUALS、NOT EQUALS、GREATER THAN、GREATER THAN EQUALSLESS THAN または LESS THAN EQUALS 演算子と共に使用する場合、このフィールドは以下をサポートします:

  • currentLogin()

  • lastLogin()

  • now()

  • startOfDay()

  • startOfWeek()

  • startOfMonth()

  • startOfYear()

  • endOfDay()

  • endOfWeek()

  • endOfMonth()

  • endOfYear()

  • Find all work items due before 31st December 2010:
    due < "2010/12/31"

  • Find all work items due on or before 31st December 2010:
    due <= "2011/01/01"

  • Find all work items due tomorrow:
    due = "1d"

  • Find all work items due in January 2011:
    due >= "2011/01/01" and due <= "2011/01/31"

  • Find all work items due on 15 January 2011:
    due = "2011/01/15"

環境

Search for work items where the environment contains particular text using Jira text-search syntax. More about searching syntax for text fields.

構文

environment

フィールド タイプ

TEXT

オートコンプリート

いいえ

サポートされる演算子

~ , !~
IS , IS NOT

サポートされない演算子

= , != , > , >= , < , <= IN , NOT IN, WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED

サポートされる関数

なし

  • Find work items where the environment contains both the exact phrase "Third floor" and the exact phrase “Fire escape”:
    environment ~ "\"Third floor\"" AND environment ~ "\"Fire escape\""

  • Find work items where the environment contains both the exact phrase "Third floor" and the exact phrase “Fire escape”:
    environment ~ "\"Third floor\"" AND environment ~ "\"Fire escape\""

2024 年 2 月の時点で、を優先するためにエピック リンク機能は廃止されています。エピック リンク機能を使用する既存のフィルターは引き続き機能しますが、新しいフィルターを作成するときは親を使用する必要があります。

このページの「親」セクションに移動してください。

フィルター

保存済みフィルターを使用して検索を絞り込むことができます。検索条件にはフィルター名またはフィルター ID (Jira で保存済みフィルターに自動的に割り当てられる番号) を使用できます。

注意:

  • フィルター名ではなくフィルター ID で検索することをおすすめします。フィルター名が変更された場合に保存済みフィルターが壊れ、名前を使用して別のフィルタが呼び出されてしまう可能性があります。一方、フィルター ID は一意であり、変更されることはありません。

  • 入力したクエリでリンクの記述に名前を設定していない場合、保存済みフィルターの ORDER BY ステートメントが上書きされます。

  • 無限ループを発生させるフィルターを実行または保存することはできません (つまり、いずれは現在のフィルターを参照する保存済みフィルターを参照することはできません)。

構文

filter

エイリアス

request , savedFilter , searchRequest

フィールド タイプ

フィルター

オートコンプリート

はい

サポートされる演算子

= , !=
IN , NOT IN

サポートされない演算子

~ , !~ , > , >= , < , <= IS , IS NOT, WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED

サポートされる関数

なし

  • Search the results of the filter "My Saved Filter" (which has an ID of 12000) for work items assigned to the user jsmith:
    filter = "My Saved Filter" and assignee = jsmith
    or
    filter = 12000 and assignee = jsmith

修正バージョン

Search for work items 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).

It’s safer to search by version ID than by version name. Different projects may have versions with the same name, so searching by version name may return work items 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.

構文

fixVersion

フィールド タイプ

VERSION

オートコンプリート

はい

サポートされる演算子

= , != , > , >= , < , <=
IS , IS NOT, IN , NOT IN, WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED 

比較演算子 (例: ">") は、数値やアルファベット順ではなくプロジェクト管理者が設定したバージョン順を使用することにご注意ください。

サポートされない演算子

~ , !~

サポートされる関数

= および != 演算子と共に使用する場合、このフィールドは以下をサポートします。

  • latestReleasedVersion()

  • earliestUnreleasedVersion()

IN および NOT IN 演算子と共に使用する場合、このフィールドは以下をサポートします:

  • releasedVersions()

  • unreleasedVersions()

  • Find work items with a Fix Version of 3.14 or 4.2:
    fixVersion in ("3.14", "4.2")
    (Note that full-stops are reserved characters, so they need to be surrounded by quote-marks.)

  • Find work items with a Fix Version of "Little Ted":
    fixVersion = "Little Ted"

  • Find work items with a Fix Version ID of 10001:
    fixVersion = 10001

階層レベル

Filter work items according to their hierarchy level using a JQL filter. This field uses numbers that correlate to hierarchy levels. Use:

  • 1 を使用すると、エピックなどの親レベルのタスクでフィルタリングされます。このレベルは Jira 管理者によって定義されます。

  • 0 to filter by standard level work items, such as stories or tasks

  • -1 を使用すると、サブタスクでフィルタリングされます。

現在、このフィールドは Advanced Roadmaps で作成されたカスタム階層レベルをサポートしていません。

構文

hierarchyLevel

フィールド タイプ

数値

オートコンプリート

はい

サポートされる演算子

= , != , > , >= , < , <= , IN , NOT IN

サポートされない演算子

~ , !~ , IS, IS NOT, WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED

サポートされる関数

  • なし

  • Find work items at the story level: hierarchyLevel = "0"

  • Find work items higher than the subtask level: hierarchyLevel > -1

Work item key

Search for work items with a particular key or ID (i.e. the number that Jira automatically allocates to a work item).

構文

workItemKey

エイリアス

id , workItem , key

フィールド タイプ

WorkItem

オートコンプリート

いいえ

サポートされる演算子

= , != , > , >= , < , <=
IN, NOT IN

サポートされない演算子

~ , !~
IS, IS NOT, WAS NOT, WAS NOT IN, CHANGED 

サポートされる関数

IN または NOT IN 演算子とともに使用する場合、workItemKey は以下をサポートします。

  • workItemHistory()

  • linkedworkItems()

  • votedworkItems()

  • watchedworkItems()

  • Find the work item with key "ABC-123":
    workItemKey = ABC-123

Searches for work items linked or not linked to a work item. You can restrict the search to links of a particular type.

構文

workItemLink, workItemLink["link type"], or workItemLinkType, where link type or LinkType is a variable you replace with the work item link type (blocks, duplicates, or is blocked by, for example).

オートコンプリート

はい

サポートされる演算子

= , !=

IN , NOT IN

サポートされない演算子

~ , !~ , > , >= , < , <=

WAS , WAS IN , WAS NOT , WAS NOT IN , CHANGED , IS , IS NOT

サポートされる関数

なし

Find work items:

  • with a link of any type to the work item ABC-123: workItemLink = ABC-123

  • with linked work items but not linked to a specific work item: workItemLink != ABC-123

  • linked to at least one of a list of work items: workItemLink in (ABC-123, ABC-456)

  • with linked work items but not linked to any of the work items you specify: workItemLink not in (ABC-123, ABC-456)

  • that block the work item ABC-123 (link type is "blocks"): WorkItemBlocks = ABC-123 or workItemLink["blocks"] = ABC-123

  • that are blocked by the work item ABC-123 (link type is "is blocked by"): workItemIsBlockedBy = ABC-123 or workItemLink["is blocked by"] = ABC-123

Search for work items that have a particular link type, like blocks or is duplicated by. You can only find work items from the Jira instance you're searching on; remote links to work items on other Jira instances won’t be included.

Use this JQL query to add colors to your work item cards! For example, add a red stripe to work items that have some blockers, and keep all other work items green. This will help you bring the right information to your team’s attention, at a glance. For more info, see Customizing cards.

構文

workItemLinkType

オートコンプリート

はい

サポートされる演算子

= , !=
IN , NOT IN

サポートされない演算子

~ , !~ , > , >= , < , <=

WAS , WAS IN , WAS NOT , WAS NOT IN , CHANGED , IS , IS NOT

サポートされる関数

なし

Find work items:

  • "causes" リンク タイプを持つ課題を検索: workItemLinkType = causes

  • "duplicates" または "clones" リンク タイプを持つ課題を検索: workItemLinkType in (duplicates,clones)

  • “clones” 以外のリンク タイプを持つ: workItemLinkType != clones

  • that are blocked by other work items, or that don't have any blockers:

    • workItemLinkType = "is blocked by"

    • workItemLinkType != "is blocked by"

Jira work item link types have the following properties:

  • 名前: リンク タイプのタイトル

  • Outward description: The description of how a work item affects other work items

  • Inward description: The description of how a work item is affected by other work items

例えば、あるリンク タイプでは次のようなプロパティを持つ場合があります。

  • 名前: 問題 / インシデント

  • 外向きリンクの説明: causes

  • 内向きリンクの説明: is caused by

When searching workItemLinkType, Jira searches all three properties. This can mean you're unable to isolate work items with a specific inward or outward description if the link type's name and either of the descriptions are the same. This is the case for the default "Blocks" link type, where the name and outward description are "blocks".

If you need to be able to search specifically for work items with an outward description of "blocks", for example, a Jira administrator must change the name of the link type to something else. If you're a Jira admin, take a look at Configuring work item linking for more info.

ラベル

Search for work items tagged with a label or list of labels. You can also search for work items without any labels to easily identify which work items need to be tagged so they show up in the relevant sprints, queues or reports. 

構文

labels

フィールド タイプ

LABEL

オートコンプリート

はい

サポートされる演算子

= , !=, IS, IS NOT, IN, NOT IN

サポートされない演算子

~ , !~ , , > , >= , < , <=
WAS, WAS IN, WAS NOT, WAS NOT IN, CHANGED

サポートされる関数

なし

  • Find work items with an existing label:
    labels = "x"

  • Find work items without a specified label, including work items without a label:
    labels not in ("x") or labels is EMPTY

最終閲覧日

Search for work items 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"

"w" (週)、"d" (日)、"h" (時間) または "m" (分) を使用して、現在の時刻に対する相対的な日付を指定することもできます。既定は "m" (分) です。引用符 (") を使用する必要があることにご注意ください。引用符を省略した場合、入力した数字はエポック (1970-1-1) のミリ秒後と解釈されます。

構文

lastViewed

フィールド タイプ

DATE

オートコンプリート

いいえ

サポートされる演算子

= , != , > , >= , < , <=
IS , IS NOT, IN , NOT IN

サポートされない演算子

~ , !~
WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED 

サポートされる関数

EQUALSNOT EQUALSGREATER THANGREATER THAN EQUALSLESS THAN または LESS THAN EQUALS 演算子と共に使用する場合、このフィールドは以下をサポートします:

  • currentLogin()

  • lastLogin()

  • now()

  • startOfDay()

  • startOfWeek()

  • startOfMonth()

  • startOfYear()

  • endOfDay()

  • endOfWeek()

  • endOfMonth()

  • endOfYear()

  • Find all work items last viewed before 12th December 2010:
    lastViewed < "2010/12/12"

  • Find all work items last viewed on or before 12th December 2010:
    lastViewed <= "2010/12/13"

  • Find all work items last viewed on 12th December 2010 before 2:00pm:
    lastViewed > "2010/12/12" and created < "2010/12/12 14:00"

  • Find work items last viewed less than one day ago:
    lastViewed > "-1d"

  • Find work items last viewed in January 2011:
    lastViewed > "2011/01/01" and created < "2011/02/01"

  • Find work items last viewed on 15 January 2011:
    lastViewed > "2011/01/15" and created < "2011/01/16"

レベル

Only available if work-level security has been enabled by your Jira administrator.

Search for work items with a particular security level. You can search by work-level security name or work item level security ID (i.e. the number that Jira automatically allocates to a work-level security).

注意: セキュリティ レベル名ではなくセキュリティ レベル ID で検索することをおすすめします。また、Jira 管理者がセキュリティ レベル名を変更してしまうと、その名前に依存している保存済みフィルターが使用できなくなる可能性がありますが、セキュリティ レベル ID は一意であり、変更されることはありません。

構文

level

フィールド タイプ

SECURITY LEVEL

オートコンプリート

はい

サポートされる演算子

= , !=
IS , IS NOT, IN , NOT IN

サポートされない演算子

> , >= , < , <= , ~ , !~
WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED 

サポートされる関数

なし

  • Search for work items with a security level of "Really High" or "level1":
    level in ("Really High", level1)

  • Search for work items with a security level ID of 123:
    level = 123

組織

ビジネス プロジェクトでのみ使用します。

組織で共有されているすべてのリクエストを検索します。共有されていないリクエストは返されません。

構文

organizations

フィールド タイプ

USER

オートコンプリート

はい

サポートされる演算子

= , !=
IN, NOT IN

組織「Atlassian」で共有されているすべてのリクエストを検索します。

organizations = "Atlassian"

初期見積

Jira 管理者が時間管理を有効にしている場合にのみ使用できます。

Search for work items where the original estimate is set to a particular value (i.e. a number, not a date or date range). Use "w", "d", "h" and "m" to specify weeks, days, hours, or minutes.

構文

originalEstimate

エイリアス

timeOriginalEstimate

フィールド タイプ

DURATION

オートコンプリート

いいえ

サポートされる演算子

= , != , > , >= , < , <=
IS , IS NOT, IN , NOT IN

サポートされない演算子

~ , !~
WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED 

サポートされる関数

なし

  • Find work items with an original estimate of 1 hour:
    originalEstimate = 1h

  • Find work items with an original estimate of more than 2 days:
    originalEstimate > 2d

Search for all child work items of a parent. For example, you can view all stories under an epic. This function works for both team-managed and company-managed projects.

You can search by work item key or by ID.

構文

parent

フィールド タイプ

WorkItem

オートコンプリート

いいえ

サポートされる演算子

= , !=
IN , NOT IN

サポートされない演算子

> , >= , < , <= , ~ , !~
IS , IS NOT, WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED 

サポートされる関数

なし

  • Find child work items of work item TEST-1234:
    parent = TEST-1234

親プロジェクト

Search for all child work items with a parent work item that belongs to a specific project. You can search by project name or project ID (i.e. the number that Jira automatically allocates to a project).

構文

parentProject

フィールド タイプ

PROJECT

オートコンプリート

いいえ

サポートされる演算子

=, !=, IN, NOT IN

サポートされない演算子

~, !~

WAS, WAS IN, WAS NOT, WAS NOT IN, CHANGED

サポートされる関数

IN および NOT IN 演算子とともに使用する場合、project は以下をサポートします。

  • projectsLeadByUser()

  • projectsWhereUserHasPermission()

  • projectsWhereUserHasRole()

  • Find work items where the parent project is ABC:
    parentProject = "ABC"

  • Find work items where the parent project ID is 12345:
    parentProject = 12345

優先度

Search for work items 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 で検索することをおすすめします。Jira 管理者が優先度の名前を変更すると、その名前に依存している保存済みフィルターが使用できなくなる可能性があります。ただし、優先度 ID は一意であり、変更されることはありません。

構文

priority

フィールド タイプ

PRIORITY

オートコンプリート

はい

サポートされる演算子

= , != , > , >= , < , <= IS , IS NOT, IN , NOT IN , WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED 

サポートされない演算子

~ , !~

サポートされる関数

なし

  • Find work items with a priority of "High":
    priority = High

  • Find work items with a priority ID of 10000:
    priority = 10000

Project

Search for work items 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.

構文

project

フィールド タイプ

PROJECT

オートコンプリート

はい

サポートされる演算子

= , !=
IS , IS NOT, IN , NOT IN

サポートされない演算子

> , >= , < , <= , ~ , !~
WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED 

サポートされる関数

IN および NOT IN 演算子とともに使用する場合、project は以下をサポートします。

  • projectsLeadByUser()

  • projectsWhereUserHasPermission()

  • projectsWhereUserHasRole()

  • Find work items that belong to the Project that has the name "ABC Project":
    project = "ABC Project"

  • Find work items that belong to the project that has the key "ABC":
    project = "ABC"

  • Find work items that belong to the project that has the ID "1234":
    project = 1234

プロジェクト タイプ

Search for work items that belong to a particular type of project, either:

  • “business” which finds work items created in business projects

  • “software” which finds work items created in Jira

  • “service_desk” which finds work items created in service projects

結果は権限レベルに応じて異なります。自身がアクセス権を持っている製品の結果のみを表示できます。製品アクセス権の詳細をご確認ください

構文

projectType

オートコンプリート

はい

サポートされる演算子

=、!=

IN、NOT IN

サポートされない演算子

>、>=、<、<=、~、!~

IS、IS NOT、WAS、WAS NOT、WAS NOT IN、CHANGED

サポートされる関数

なし

Find all work items in a software project:

projectType = ”software”

Find all work items in either a software project or a service project:

projectType = ”software” OR projectType = ”service_desk”

Find all work items that aren’t in a software project:

projectType != ”software”

残余見積

Jira 管理者が時間管理を有効にしている場合にのみ使用できます。

Search for work items where the remaining estimate is set to a particular value (i.e. a number, not a date or date range). Use "w", "d", "h" and "m" to specify weeks, days, hours, or minutes.

構文

remainingEstimate

エイリアス

timeEstimate

フィールド タイプ

DURATION

オートコンプリート

いいえ

サポートされる演算子

= , != , > , >= , < , <=
IS , IS NOT, IN , NOT IN

サポートされない演算子

~ , !~
WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED 

サポートされる関数

なし

  • Find work items with a remaining estimate of more than 4 hours:
    remainingEstimate > 4h

報告者

Search for work items that were reported by a particular user. This may be the same as the creator, but can be distinct. You can search by the user's full name, ID, or email address.

構文

reporter

フィールド タイプ

USER

オートコンプリート

はい

サポートされる演算子

= , !=
IS , IS NOT, IN , NOT IN , WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED

サポートされない演算子

~ , !~ , > , >= , < , <=

サポートされる関数

IN および NOT IN 演算子と共に使用する場合、このフィールドは以下をサポートします:

  • membersOf()

EQUALS または NOT EQUALS 演算子と共に使用する場合、このフィールドは以下をサポートします:

  • currentUser()

  • Search for work items that were reported by Jill Jones:
    reporter = "Jill Jones"orreporter = jjones

  • Search for work items that were reported by the user with email address bob@mycompany.com:

    • reporter = "bob@mycompany.com"
      (ピリオドと "@" 記号は予約済みの文字であるため、メール アドレスは引用符で囲う必要があることにご注意ください)

リクエストのチャンネル タイプ

ビジネス プロジェクトでのみ使用します。

課題が作成されたチャンネルに基づいてリクエストを検索します。たとえば、サービス プロジェクトにメールで送信された全リクエストや、カスタマー ポータルから送信された全リクエストを検索できます。

構文

request-channel-type

フィールド タイプ

TEXT

オートコンプリート

はい

サポートされる演算子

= , !=

IS, IS NOT, IN, NOT IN

サポートされない演算子 

~ , !~ , > , >= , < , <= WAS, WAS IN, WAS NOT, WAS NOT IN, CHANGED

サポートされる関数

IN および NOT IN 演算子と共に使用する場合、このフィールドは以下をサポートします:

  • email: メールで送信されたリクエスト

  • jira: work items created in Jira (by clicking the blue Create button)

  • portal: サービス プロジェクト ポータルから送信されたリクエスト

  • anonymous portal: ログインしていないカスタマーによってカスタマー ポータルから送信されたリクエスト

  • api: REST API によって送信されたリクエスト

  • リクエスト チャンネルがメールである課題を検索:
    request-channel-type = email

  • リクエスト チャンネルがサービス プロジェクト ポータル以外であるリクエストを検索する
    request-channel-type != portal

  • リクエスト チャンネルが CI/CD デプロイ ツールによって送信されたリクエストを検索:
    request-channel-type = deployment

リクエストの最終アクティビティ時刻

ビジネス プロジェクトでのみ使用します。

特定の日付 (または日付範囲)、それよりも前、またはそれよりも後に作成されたリクエストを検索します。時間コンポーネントが指定されていない場合、深夜 0 時と想定されます。検索結果は設定したタイム ゾーン (既定では Jira Server のタイム ゾーン) に対して相対的なものとなります。

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

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

"w" (週)、"d" (日)、"h" (時間) または "m" (分) を使用して、現在の時刻に対する相対的な日付を指定することもできます。既定は "m" (分) です。引用符 (") を使用する必要があることにご注意ください。引用符を省略した場合、入力した数字はエポック (1970-1-1) のミリ秒後と解釈されます。

構文

request-last-activity-time

フィールド タイプ

DATE

オートコンプリート

はい

サポートされる演算子

= , != , > , >= , < , <=

IS, IS NOT, IN, NOT IN

サポートされない演算子 

~ , !~WAS, WAS IN, WAS NOT, WAS NOT IN, CHANGED

サポートされる関数

EQUALS、NOT EQUALS、GREATER THAN、GREATER THAN EQUALSLESS THAN または LESS THAN EQUALS 演算子と共に使用する場合、このフィールドは以下をサポートします:

  • currentLogin()

  • lastLogin()

  • now()

  • startOfDay()

  • startOfWeek()

  • startOfMonth()

  • startOfYear()

  • endOfDay()

  • endOfWeek()

  • endOfMonth()

  • endOfYear()

  • Find all work items last acted on before 23rd May 2016:
    request-last-activity-time < "2016/05/23"

    • Find all work items last acted on or before 23rd May 2016:
      request-last-activity-time <= "2016/05/23"

    • Find all work items created on 23rd May 2016 and last acted on before 2:00pm that day:
      created > "2016/05/23" AND request-last-activity-time < "2016/05/23 14:00" 

    • Find work items last acted on less than one day ago:
      request-last-activity-time > "-1d"

    • Find work items last acted on in January 2016:
      request-last-activity-time > "2016/01/01" and request-last-activity-time < "2016/02/01"

リクエスト タイプ

サービス プロジェクトでのみ使用されます。

特定のリクエスト タイプのリクエストを検索します。リクエスト タイプの設定画面で設定したリクエスト タイプの名前または説明で検索できます。 

構文

"Request Type"

フィールド タイプ

カスタム フィールド

オートコンプリート

はい

サポートされる演算子

= , !=

IN , NOT IN

サポートされない演算子

~ , !~ , > , >= , < , <= IS , IS NOT, WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED

リクエスト タイプの Lucene 値は portal-key/request-type-key であることにご注意ください。サービス プロジェクト ポータルの作成後にポータル キーを変更することはできませんが、プロジェクト キーは変更できます。リクエスト タイプの作成後にリクエスト タイプ キーを変更することはできません。

サポートされる関数

なし

  • Find work items where Request Type is Request a new account in projects that the user has access to:
    "Request Type" = "Request a new account"

  • Find work items where the Request Type is Request a new account in SimpleDesk project, where the right operand is a selected Lucene value from the auto-complete suggestion list.
    "Request Type" = "sd/system-access"

  • Find work items where Request Type is either Request a new account or Get IT Help.
    "Request Type" IN ("Request a new account", "Get IT Help")

ソリューション

The resolution field doesn't exist in service team-managed projects. This means you can't search for work items in service team-managed projects with the resolution field. Instead, you can use the statusCategory field (a work item is resolved when statusCategory = Done).

Search for work items that have a particular resolution. You can search by resolution name or resolution ID (i.e. the number that Jira automatically allocates to a resolution).

解決策の名前ではなく ID で検索することをおすすめします。Jira 管理者が解決策の名前を変更すると、その名前に依存している保存済みフィルターが使用できなくなる可能性があります。ただし、解決策の ID は一意であり、変更されることはありません。

構文

resolution

フィールド タイプ

RESOLUTION

オートコンプリート

はい

サポートされる演算子

= , != , > , >= , < , <=
IS , IS NOT, IN , NOT IN , WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED

サポートされない演算子

~ , !~

サポートされる関数

なし

  • Find work items with a resolution of "Can't Reproduce" or "Won't Fix":
    resolution in ("Can't Reproduce", "Won't Fix")

  • Find work items with a resolution ID of 5:
    resolution = 5

  • Find work items that don’t have a resolution:
    resolution = unresolved

解決済

Search for work items 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"

"w" (週)、"d" (日)、"h" (時間) または "m" (分) を使用して、現在の時刻に対する相対的な日付を指定することもできます。既定は "m" (分) です。引用符 (") を使用する必要があることにご注意ください。引用符を省略した場合、入力した数字はエポック (1970-1-1) のミリ秒後と解釈されます。

構文

resolved

エイリアス

resolutionDate

フィールド タイプ

DATE

オートコンプリート

いいえ

サポートされる演算子

= , != , > , >= , < , <=
IS , IS NOT, IN , NOT IN

サポートされない演算子

~ , !~ WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED

サポートされる関数

EQUALS、NOT EQUALS、GREATER THAN、GREATER THAN EQUALS、LESS THAN、LESS THAN EQUALS 演算子と共に使用する場合、このフィールドは以下をサポートします:

  • currentLogin()

  • lastLogin()

  • now()

  • startOfDay()

  • startOfWeek()

  • startOfMonth()

  • startOfYear()

  • endOfDay()

  • endOfWeek()

  • endOfMonth()

  • endOfYear()

  • Find all work items that were resolved before 31st December 2010:
    resolved < "2010/12/31"

  • Find all work items that were resolved before 2.00pm on 31st December 2010:
    resolved < "2010/12/31 14:00"

  • Find all work items that were resolved on or before 31st December 2010:
    resolved <= "2011/01/01"

  • Find work items that were resolved in January 2011:
    resolved > "2011/01/01" and resolved < "2011/02/01"

  • Find work items that were resolved on 15 January 2011:
    resolved > "2011/01/15" and resolved < "2011/01/16"

  • Find work items that were resolved in the last hour:
    resolved > -1h

SLA

サービス プロジェクトでのみ使用されます。

リクエストを検索および整理し、SLA 目標を達成するのに役立ててください。SLA が完了状態にあるリクエストや、SLA クロックに一定の時間存在しているリクエストを検索できます。 

構文

Time to resolution

Time to first response

<your custom SLA name>

フィールド タイプ

SLA

オートコンプリート

いいえ

サポートされる演算子

= , !=, > , >= , < , <=

サポートされない演算子

~ , !~
IS , IS NOT , IN , NOT IN , WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED

サポートされる関数

  • breached()

  • completed()

  • elapsed()

  • everBreached()

  • paused()

  • remaining()

  • running()

  • withinCalendarHours()

  • Find work items where Time to First Response was breached:
    "Time to First Response" = everBreached()

  • Find work items where the SLA for Time to Resolution is paused due to a condition:
    "Time to Resolution" = paused()

  • Find work items where the SLA for Time to Resolution is paused due to the SLA calendar:
    "Time to Resolution" = withinCalendarHours()

  • Find work items that have been waiting for a response for more than 1 hour:
    "Time to First Response" > elapsed("1h")

  • Find work items that that will breach Time to First Response in the next two hours:
    "Time to First Response" < remaining("2h")

Sprint

Search for work items that are assigned to a particular sprint. 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).

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

構文

sprint

フィールド タイプ

NUMBER

オートコンプリート

はい

サポートされる演算子

= , !=
IS , IS NOT, IN , NOT IN

サポートされない演算子

~ , !~ , > , >= , < , <= WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED

サポートされる関数

  • openSprints()

  • closedSprints()

  • Find work items that belong to sprint 999:
    sprint = 999

  • Find work items that belong to sprint "February 1":
    sprint = "February 1"

  • Find work items that belong to either "February 1", "February 2" or "February 3":
    sprint in ("February 1","February 2","February 3")

  • Find work items that are assigned to a sprint:
    sprint is not empty

ステータス

Search for work items that have a particular status. You can search by status name or status ID (i.e. the number that Jira automatically allocates to a status).

Jira 管理者がステータスの名前を変更すると、その名前に依存する保存済みフィルターが使用できなくなる可能性があるため、ステータス名よりもステータス ID で検索する方が安全です。ただし、ステータス ID は一意であり、変更されることはありません。

WAS、WAS NOT、WAS IN、WAS NOT IN 演算子は、名前でのみ使用できます (ID では不可)。

構文

status

フィールド タイプ

STATUS

オートコンプリート

はい

サポートされる演算子

= , !=
IS , IS NOT, IN , NOT IN , WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED

サポートされない演算子

~ , !~ , > , >= , < , <=

サポートされる関数

なし

  • Find work items with a status of "Open":
    status = Open

  • Find work items with a status ID of 1:
    status = 1

  • Find work items that currently have, or previously had, a status of "Open":
    status WAS Open

要約

Search for work items where the summary contains specific text using Jira text-search syntax. More about searching syntax for text fields.

構文

summary

フィールド タイプ

TEXT

オートコンプリート

いいえ

サポートされる演算子

~ , !~
IS , IS NOT

サポートされない演算子

= , != , > , >= , < , <=
IN , NOT IN , WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED

サポートされる関数

なし

  • Find work items where the summary contains the words "Error saving file" (a “term search” match):
    summary ~ "Error saving file"

  • Find work items where the summary contains the exact phrase "Error saving file":
    summary ~  "\"Error saving file\""

  • Find work items where the summary contains both the exact phrase "Error saving file" and the exact phrase “Create new version”:
    summary ~ "\"Error saving file\"" AND summary ~ "\"Create new version\""

テキスト

This is a master-field that allows you to search all text fields for work items, such as:

  • 要約

  • 説明

  • 環境

  • コメント

  • "Free Text Searcher" を使用するカスタム フィールド。これには以下の組み込みカスタム フィールド タイプが含まれます。

    • フリー テキスト フィールド (無制限のテキスト)

    • テキスト フィールド (255 文字まで)

    • 読み取り専用のテキスト フィールド

Search for work items that have certain text present using Jira text-search syntax. More about searching syntax for text fields.

text マスター フィールドは、CONTAINS 演算子 ("~") と一緒にのみ使用できます。

Some characters and words are reserved and you can’t search for work items using these. Read about reserved and characters.

構文

text

フィールド タイプ

TEXT

オートコンプリート

いいえ

サポートされる演算子

~

サポートされない演算子

!~, = , != , > , >= , < , <=
IS , IS NOT , IN , NOT IN , WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED

サポートされる関数

なし

  • Find work items where a text field contains the word "Fred":
    text ~ "Fred" or text ~ Fred

  • Find all work items where a text field contains the words "full screen":
    text ~ "full screen"

  • Find all work items where a text field contains the exact phrase "full screen":
    text ~ "\"full screen\""

  • Find all work items where text fields contain the exact phrase "full screen" and the exact phrase “minimize screen”:
    text ~ "\"full screen\"" AND text ~ "\"minimize screen\""

テキスト フィールド

Similar to text, this is a master-field that allows you to search in most text fields (except Comments, Worklog) for work items, such as:

  • 要約

  • 説明

  • 環境

  • "Free Text Searcher" を使用するカスタム フィールド。これには以下の組み込みカスタム フィールド タイプが含まれます。

    • フリー テキスト フィールド (無制限のテキスト)

    • テキスト フィールド (255 文字まで)

    • 読み取り専用のテキスト フィールド

textfields マスター フィールドは、CONTAINS 演算子 ("~") と一緒にのみ使用できます。

Some characters and words are reserved and you can’t search for work items using these. Read about reserved and characters.

構文

textfields

フィールド タイプ

TEXT

オートコンプリート

いいえ

サポートされる演算子

~

サポートされない演算子

!~, = , != , > , >= , < , <=
IS , IS NOT , IN , NOT IN , WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED

サポートされる関数

なし

  • Find work items where a text field contains the word "Fred":
    textfields ~ "Fred" or textfields ~ Fred

  • Find all work items where a text field contains the words "full screen":
    textfields ~ "full screen"

  • Find all work items where a text field contains the exact phrase "full screen":
    textfields ~ "\"full screen\""

  • Find all work items where text fields contain the exact phrase "full screen" and the exact phrase “minimize screen”:
    textfields ~ "\"full screen\"" AND textfields ~ "\"minimize screen\""

消費時間

Jira 管理者が時間管理を有効にしている場合にのみ使用できます。

Search for work items where the time spent is set to a particular value (i.e. a number, not a date or date range). Use "w", "d", "h" and "m" to specify weeks, days, hours, or minutes.

構文

timeSpent

フィールド タイプ

DURATION

オートコンプリート

いいえ

サポートされる演算子

= , != , > , >= , < , <=
IS , IS NOT , IN , NOT IN

サポートされない演算子

~ , !~ 
WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED

サポートされる関数

なし

  • Find work items where the time spent is more than 5 days:
    timeSpent > 5d

タイプ

Search for work items that have a particular work type. You can search by work type name or work type ID (i.e. the number that Jira automatically allocates to a work type).

タイプ名ではなくタイプ ID で検索することをおすすめします。Jira 管理者がタイプ名を変更してしまうと、その名前に依存している保存済みフィルターが使用できなくなる可能性がありますが、タイプ ID は一意であり、変更されることはありません。

構文

type

エイリアス

workType

フィールド タイプ

WORK_TYPE

オートコンプリート

はい

サポートされる演算子

= , !=
IS , IS NOT , IN , NOT IN

サポートされない演算子

~ , !~  , > , >= , < , <=
WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED

サポートされる関数

なし

  • Find work items with a work type of "Bug":
    type = Bug

  • Find work items with a work type of "Bug" or "Improvement":
    workType in (Bug,Improvement)

  • Find work items with a work type ID of 2:
    workType = 2

更新日

Search for work items 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"

"w" (週)、"d" (日)、"h" (時間) または "m" (分) を使用して、現在の時刻に対する相対的な日付を指定することもできます。既定は "m" (分) です。引用符 (") を使用する必要があることにご注意ください。引用符を省略した場合、入力した数字はエポック (1970-1-1) のミリ秒後と解釈されます。

構文

updated

エイリアス

updatedDate

フィールド タイプ

DATE

オートコンプリート

いいえ

サポートされる演算子

= , != , > , >= , < , <=
IS , IS NOT , IN , NOT IN

サポートされない演算子

~ , !~ 
WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED

サポートされる関数

EQUALSNOT EQUALS、GREATER THAN、GREATER THAN EQUALS、LESS THAN または LESS THAN EQUALS 演算子と併用する場合、このフィールドは次をサポートします。

  • currentLogin()

  • lastLogin()

  • now()

  • startOfDay()

  • startOfWeek()

  • startOfMonth()

  • startOfYear()

  • endOfDay()

  • endOfWeek()

  • endOfMonth()

  • endOfYear()

  • Find work items that were last updated before 12th December 2010:
    updated < "2010/12/12"

  • Find work items that were last updated on or before 12th December 2010:
    updated < "2010/12/13"

  • Find all work items that were last updated before 2.00pm on 31st December 2010:
    updated < "2010/12/31 14:00"

  • Find work items that were last updated more than two weeks ago:
    updated < "-2w"

  • Find work items that were last updated on 15 January 2011:
    updated > "2011/01/15" and updated < "2011/01/16"

  • Find work items that were last updated in January 2011:
    updated > "2011/01/01" and updated < "2011/02/01"

投票者

Search for work items 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 work items for which you have the "View Voters and Watchers" permission, unless you are searching for your own votes. 

構文

voter

フィールド タイプ

USER

オートコンプリート

はい

サポートされる演算子

= , !=
IS , IS NOT , IN , NOT IN

サポートされない演算子

~ , !~ , > , >= , < , <=
WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED

サポートされる関数

IN および NOT IN 演算子と共に使用する場合、このフィールドは以下をサポートします:

  • membersOf()

EQUALS および NOT EQUALS 演算子と共に使用する場合、このフィールドは以下をサポートします:

  • currentUser()

  • Search for work items that you have voted for:
    voter = currentUser()

  • Search for work items that the user "jsmith" has voted for:
    voter = "jsmith"

  • Search for work items for which a member of the group "jira-administrators" has voted:
    voter in membersOf("jira-administrators")

投票数

Search for work items with a specified number of votes.

構文

votes

フィールド タイプ

NUMBER

オートコンプリート

いいえ

サポートされる演算子

= , != , > , >= , < , <=
IN , NOT IN

サポートされない演算子

~ , !~ 
IS , IS NOT , WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED

サポートされる関数

なし

  • Find all work items that have 12 or more votes:
    votes >= 12

ウォッチャー

Search for work items 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 work items for which you have the "View Voters and Watchers" permission, unless you are searching for work items where you are the watcher.

構文

watcher

フィールド タイプ

USER

オートコンプリート

はい

サポートされる演算子

= , !=
IS , IS NOT , IN , NOT IN

サポートされない演算子

~ , !~ , > , >= , < , <=
WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED

サポートされる関数

IN および NOT IN 演算子と共に使用する場合、このフィールドは以下をサポートします:

  • membersOf()

EQUALS および NOT EQUALS 演算子と共に使用する場合、このフィールドは以下をサポートします:

  • currentUser()

  • Search for work items that you are watching:
    watcher = currentUser()

  • Search for work items that the user "jsmith" is watching:
    watcher = "jsmith"

  • Search for work items that are being watched by a member of the group "jira-administrators":
    watcher in membersOf("jira-administrators")

ウォッチャー

Search for work items with a specified number of watchers.

構文

watchers

フィールド タイプ

NUMBER

オートコンプリート

いいえ

サポートされる演算子

= , != , > , >= , < , <=
IN , NOT IN

サポートされない演算子

~ , !~ 
IS , IS NOT , WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED

サポートされる関数

なし

  • Find all work items that are being watched by more than 3 people:
    watchers > 3

作業ログへのコメント

このフィールドは Jira 管理者によって時間管理が有効にされている場合にのみ使用できます。また、CONTAINS 演算子 ("~") のみに対応しています。

Search for work items that have certain text present in worklog comments using Jira text-search syntax. More about searching syntax for text fields.

構文

worklogComment

フィールド タイプ

TEXT

オートコンプリート

いいえ

サポートされる演算子

~

サポートされない演算子

!~, = , != , > , >= , < , <=
IS , IS NOT , IN , NOT IN , WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED

サポートされる関数

なし

  • Find work items where a worklog comment contains the word "Fred":
    worklogComment ~ "Fred"

  • Find all work items where a worklog comment contains the words "full screen":
    worklogComment ~ "full screen"

  • Find all work items where a worklog comment contains the exact phrase "full screen":
    worklogComment ~ "\"full screen\""

  • Find all work items where a worklog comment contains both the exact phrase "full screen" and the exact phrase “minimize screen”:
    worklogComment ~ "\"full screen\"" AND worklogComment ~ "\"minimize screen\""

作業ログの日付

Jira 管理者が時間管理を有効にしている場合にのみ使用できます。

Search for work items with work logged on a specific date

構文

worklogDate

フィールド タイプ

DATE

オートコンプリート

いいえ

サポートされる演算子

= , != , > , >= , < , <=
IS , IS NOT , IN , NOT IN

サポートされない演算子

~ , !~ 
WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED

サポートされる関数

EQUALSNOT EQUALS、GREATER THAN、GREATER THAN EQUALS、LESS THAN または LESS THAN EQUALS 演算子と併用する場合、このフィールドは次をサポートします。

  • currentLogin()

  • lastLogin()

  • now()

  • startOfDay()

  • startOfWeek()

  • startOfMonth()

  • startOfYear()

  • endOfDay()

  • endOfWeek()

  • endOfMonth()

  • endOfYear()

  • Find work items where someone logged work on 12th December 2010:
    worklogDate = "2010/12/12"

  • Find the work items where someone has logged work in the past week:
    worklogDate > startOfWeek()

作業率

Jira 管理者が時間管理を有効にしている場合にのみ使用できます。

Search for work items where the work ratio has a particular value. Work ratio is calculated as follows: workRatio = timeSpent / originalEstimate) x 100

構文

workRatio

フィールド タイプ

NUMBER

オートコンプリート

いいえ

サポートされる演算子

= , != , > , >= , < , <=
IS , IS NOT , IN , NOT IN

サポートされない演算子

~ , !~ 
WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED

サポートされる関数

なし

  • Find work items on which more than 75% of the original estimate has been spent:
    workRatio > 75

 

さらにヘルプが必要ですか?

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