JQL デザイン検索
Add design properties to your Jira Query Language (JQL) queries to refine your work item search results. Advanced search makes it easy for your team to find and see updates to Jira work items with designs linked to them. Learn more about using advanced search with JQL
Figma が接続されていることを確認する
To see the latest design updates in your work item search, install and set up the free Figma for Jira app.
デザイン プロパティ
You can search for work items based on their linked design properties:
design[status]
design[type]
design[lastUpdated]
design[totalCount]
For example, if you wanted to find work items with designs marked ‘ready for development’, you would add design[status] = "ready_for_development"
to your JQL query.
design[status]
構文 | design[status] |
---|---|
フィールド タイプ | TEXT |
オートコンプリート | はい |
サポートされる演算子 | = , != , IN , NOT IN |
サポートされない演算子 | ~、!~、>、>=、<、<=、IS、IS NOT、WAS、WAS IN、WAS NOT、WAS NOT IN、CHANGED |
サポートされる関数 | なし |
次のデザイン ステータス プロパティを JQL クエリに追加できます。
design[status] = "ready_for_development"
design[status] = "none"
design[status] in (none)
design[status] != "ready_for_development"
Add an exclamation mark (!) to your query to search for work items that do not have designs marked as ‘ready for development’.
design[status] = "ready_for_development" AND Sprint not in (openSprints(), futureSprints()) AND status != Closed
Extend your query to search for work items with designs marked as ‘ready for development’ that are still in the backlog.
design[type]
構文 | design[type] |
---|---|
フィールド タイプ | TEXT |
オートコンプリート | はい |
サポートされる演算子 | = , != , IN , NOT IN |
サポートされない演算子 | ~、!~、>、>=、<、<=、IS、IS NOT、WAS、WAS IN、WAS NOT、WAS NOT IN、CHANGED |
サポートされる関数 | なし |
次のデザイン タイプ プロパティを JQL クエリに追加できます。
design[type] = "node"
デザイン内の個々の要素を検索します。
design[type] = "group"
Figma のセクションやグループなど、デザイン内のノードのコレクションを検索します。
design[type] = "canvas"
Figma のページなど、ノードとグループを含むワークスペースを検索します。
design[type] = "file"
すべてのノード、グループ、キャンバスを含むファイルを検索します。
design[type] = "other"
上記以外のデザイン タイプを検索します。
design[type] in ("node", "group")
複数のタイプに合うデザインを検索します。
design[type] not in ("file", "canvas", "other")
特定のデザイン タイプを検索から除外します。
design[lastUpdated]
構文 | design[lastUpdated] |
---|---|
フィールド タイプ | DATE |
オートコンプリート | いいえ |
サポートされる演算子 | >、>=、<、<= |
サポートされない演算子 | ~、!~、=、!=、IN、NOT IN、IS、IS NOT、WAS、WAS IN、WAS NOT、WAS NOT IN、CHANGED |
サポートされる関数 | なし |
例
design[lastUpdated] >= -8h
Shows work items with designs updated within the last 8 hours.
design[lastUpdated] >= "2023-12-14" and design[lastUpdated] <= "2023-12-27"
Shows work items with designs updated between December 14 to 27, 2023.
design[totalCount]
構文 | design[totalCount] |
---|---|
フィールド タイプ | NUMBER |
オートコンプリート | いいえ |
サポートされる演算子 | =、>、>=、<、<= |
サポートされない演算子 | ~、!~、!=、IN、NOT IN、IS、IS NOT、WAS、WAS IN、WAS NOT、WAS NOT IN、CHANGED |
サポートされる関数 | なし |
例
design[totalCount] = 3
Shows work items that have 3 designs linked to them.
この内容はお役に立ちましたか?