fixVersion
JIRA の 2 つの組み込みバージョン フィールドは、JQL でおよびとしてアクセスできますaffectedVersion
。あなたは後者を望んでいると思います。
クエリする別のカスタム フィールド (バージョン タイプ フィールド) がある場合、エラー メッセージは、正しい名前を使用していない可能性があることを示唆しています。これを確認する最善の方法は、JQL を JIRA の Issue Navigator に手動で入力し (高度な検索で)、ドロップダウン ボックスを利用してフィールド名の候補を表示し、正しいフィールド名を取得することです。
正しい JQL フィールド名を決定する問題 (引用符が必要になる場合があり、結果を URL エンコードしている場合は少し複雑になります) を回避する 1 つの方法は、代わりにカスタム フィールド ID でフィールドを参照することです。
You can find the CF ID of a field by going to Admin->Issues->Custom Fields, finding the appropriate custom field, mousing over the "Configure" link, and then looking at the URL query parameter for customFieldId, and then use the syntax cf[xxxxxx]
in your JQL instead of the field name, where xxxxxx
is the custom field number.