通常情况下,使用“简单搜索”创建查询可能会被转换成“高级搜索”(JQL),然后再简单查询。然而,使用“高级搜索”创建查询就不会被转换成“简单搜索”,特别是当: 查询包含OR运算符(注意你可以使用IN运算符,但它将被转换,例如:project in (A, B)) 例:尽管(project = JRA OR project = CONF)查询等同于(project...
例子:project not in (TestLog, 内部需求反馈) AND issuetype in (Improvement, "New Feature", 线上BUG) AND status = 已上线 ANDstatus changed from 开发中 to 待测试 by currentUser() before endOfMonth() after startOfMonth()ORDER BY createdDate DESC 3、查询是否带有附件 attachments IS NOT EMPTY...
如果你对JQL 不熟悉,请参阅我们的教程系列。 [cc lang=’sql’](watcher = currentUser()) AND status not in (closed) ORDER BY updated DESC[/cc] 复制代码 这将返回我正在观看的所有未完全关闭的问题。 使用以下查询只查看尚未解决的问题。 [cc lang=’sql’](watcher = currentUser()) AND resolution...
status was (“In Progress”) DURING (startofweek(), endofweek()); 年末时查看一年中你解决了多少问题,我们只需要一点点JQL: resolution changed to “Fixed” by currentUser() during (startOfYear(), endOfYear()) 划定范围和排序:你可以做的! 您的时间很宝贵。JQL真正的能力是帮助您缩小搜索范围,可...
Supported functions 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() Examples Search for issues that you have voted for:voter = currentUser() Search for issues that the user ...
Get list of issues This operation returns a list of issues using JQL. Get list of Resources This operation returns a list of resources accessible to user. Get list of Transitions Returns a list of the transitions possible for this issue by the current user Get projects This operation is...
Amount (JQL type: number), Currency (JQL type: string), Spender (JQL type: user).Collection typesA Forge custom field can store a collection of up to 100 values. This is done by declaring the collection property, which specifies the collection type. For example, to create a field that ...
function(方法):即JIRA提供的一些方法,如 now()表示当前时间,currentUser()表示当前用户等 语法的示例如图: 参考博客: https://doc.devpod.cn/jira/jql-3244098.html https://www.cnblogs.com/snailgirl/p/9417642.html https://blog.csdn.net/alice_tl/article/details/101784046 ...
1 reporter = currentUser() AND (assignee != currentUser() OR assignee is EMPTY) customerDetail() Perform searches based on the customers details. To use this JQL function, turn on Customer service management on the Features page in Project settings. This function will return up to 32000 cust...
One Structure for different Users - using Automation with "currentUser" Hello, I am experiencing an issue with a Structure that I have set up for my team. There is an automation in place that pre-filters the issues using the following JQL query: (assig... 19 views 1 0 Tim...