Jira是一款广泛使用的项目管理工具,它可以帮助团队协作、跟踪任务和问题、管理项目进度等。在使用Jira时,我们经常需要使用JQL(Jira Query Language)来查询和过滤问题。而JQL中的relevance语法则可以帮助我们更精确地过滤问题,提高查询效率。 relevance语法是JQL中的一种高级语法,它可以帮助我们根据问题的相关性来过滤问题。
The advanced search is the most powerful and flexible way to search for your issues in Jira. You can use the Jira Query Language (JQL) to specify criteria that cannot be defined in the quick or basic searches. For example, you can use the ORDER BY clause in a JQL query to search for...
*JQLとは: 「Jira Query Language」の略で、Jiraで特定の課題を検索するための構文です。非常に柔軟にピンポイントで課題を検索することができます。JQLについて詳しくはこちら > type = "Public Security Vulnerability" ORDER BY created DESC 作成した検索(フィルター)は、検索結果ページの上部...
Jira Service Management también te permite crear tus propias colas según tus necesidades. Se pueden configurar para mostrar solicitudes específicas en función de su tipo, estado u otra característica más específica mediante unainstrucción de Jira Query Language. Para crear una cola, haz lo s...
三.Jira Query Language 1.Fields(字段) 指issues 中的属性及其数据项,如下图中的类型、优先级等属性以其对应的数据项,是JQL操作中的基本单位 2.Operators(运算符) 指用于判断字段与值的关系的操作运算符,以下为常见运算符,与SQL中常见的运算符重复的此处不再进行说明: ...
Jira JQL(Jira Query Language)是一种用于在Jira中进行高级搜索和过滤的查询语言。JQL分页是指在执行JQL查询时,将结果分成多个页面显示,以便更好地管理和浏览大量的查询结...
It is possible for a filter name to be changed, which could break a saved filter that invokes another filter by name. Filter IDs, however, are unique and cannot be changed. An unnamed link statement in your typed query will override an ORDER BY statement in the saved filter. You can’t...
Understand the Assets Query Language (AQL) in Jira Service Management, and learn how to use it with some simple examples.
The advanced search allows you to build structured queries using the Jira Query Language (JQL) to search for issues. You can specify criteria that you can't define in the quick or basic searches. When you would want to search for the issue's summary having the numbers, you ...
Jira有一套专门的搜索语言,称为JQL(Jira Query Language),Jira的Python库便是基于JQL语法进行搜索的,返回的是搜索到的问题列表。使用语句为: 代码语言:javascript 复制 jira.search_issues('JQL语句') 默认最大结果数为1000,可以通过maxResults参数配置,参数为-1时不限制数量,返回所有搜索结果。