问题标签 [jql]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
1923 浏览

java - 获取存储在 jira 中的所有问题

嗨,我想使用 jql 或任何其他方式从 java 中获取存储在 jira 中的所有问题。我尝试使用此代码:

它给了我结果,但需要很长时间。是否有查询或休息 API URL 或任何其他方式给我所有问题?请帮我

0 投票
1 回答
679 浏览

jira - 如何在 JIRA 中搜索已由特定用户/开发人员解决的问题?

如何搜索具有特定用户/用户评论的问题?

谢谢瓦伦

0 投票
1 回答
12187 浏览

jira - 通过 JQL 使用通配符查询 JIRA 版本

有没有办法用通配符搜索字段?

我有两个字段,我只想要以 DEVX 开头的名称。我试过引号和星号,比如“DEVX*”。有没有办法在这个查询中做到这一点?这些是Version PickerJIRA 5.2.4 类型的自定义字段。

例如。

0 投票
1 回答
645 浏览

perl - 尝试使用字段过滤器中的字符串查询 JIRA 时出现卷曲错误

我的 perl 脚本需要一些帮助。

我是 perl 和使用 curl 的新手,尽管进行了很多搜索/反复试验,但我仍然感到困惑。

我正在尝试使用 CURL 根据提供的 JQL 检索一组 jira 问题。

不幸的是,当我搜索摘要等字段时,我遇到了空格问题:

当我卷曲这个...

我得到一个错误..

基本上,当我用 %20 转义“”时,它会忽略“”

有关如何解决此问题的任何帮助?

0 投票
1 回答
1709 浏览

filter - JIRA - Select issues where no subtask is assigned to the current user

I would like to select all tasks assigned to the current user, where no subtasks are assigned to the current user. This will let me make a report that warns a developer if they are currently accountable for a functional user story, but not working on any technical subtasks related to it.

I thought it would be this (using the Scripted JQL functions):

Unfortunately this subquery does not include unassigned subtasks, despite the assignee presumably being null in this case. I tried experimenting with multiple issueFunction clauses, but that seemed like a bit of a rabbit-hole when what I want is not that complicated.

An example of what I want in SQL would look something like this:

0 投票
8 回答
25673 浏览

jira - JQL:获取 sprint 列表

是否可以获得特定项目的 sprint 列表?我知道有一种方法可以通过 sprint 找到问题,但还没有找到任何方法来获得所有 sprint。

0 投票
4 回答
17937 浏览

jira - JIRA API:为问题获取史诗

有没有办法让我获得史诗般的问题?

api 返回很多关于问题的信息,但不包括史诗。

我正在使用 JIRA REST API ( https://developer.atlassian.com/display/JIRADEV/JIRA+REST+APIs )。

0 投票
1 回答
1276 浏览

jira - Jira JQL 解码周一周二等

有没有人设法创建一个查询,根据下周的周一周二周三返回数据?

我可以得到一个结果,startofweek(1)endofweek(1)不会分解到每一天。

理想情况下,我会得到这样的结果:

任何帮助,将不胜感激。

0 投票
1 回答
2054 浏览

jira - 电子邮件 ID JIRA 上的 JQL 搜索

我如何列出电子邮件地址类似于@gmail.com 的用户

相当于它的 SQL 查询:

选择 a.user_name,a.email_address from cwd_user a where a.email_address like '%@gmail.com%';

需要一个与此类似的 JQL 查询,因为我正在尝试创建一个过滤器来列出电子邮件地址 (@gmail.com) 的所有用户部分

0 投票
1 回答
714 浏览

jql - AttributeError:对于随机 JIRA 问题,“NoneType”对象没有属性“displayName”错误

我正在执行以下查询,它不断抛出一个'AttributeError:'NoneType'对象没有属性displayName。然而,在检查 JIRA 时,会出现正确的受让人名称。我搜索了几个小时,但找不到解决方案。

jiraIssues = jira.search_issues('project=JSIX and status IN (Open, Resolved, "QA Verify")', maxResults = 7500)

执行插入语句

i = jiraDB.insert()

对于 jiraIssues 中的问题:i.execute(bugCode=issue.key, summary=issue.fields.summary, priority=issue.fields.priority.name, status=issue.fields.status.name, assignee = issue.fields.assignee .displayName, 记者=issue.fields.reporter.displayName)