JIRA:查找与用户相关的所有问题

发布于 2024-09-15 04:47:16 字数 155 浏览 4 评论 0原文

在 JIRA 中,如何查找所有项目中与用户相关的所有问题。

简单的查询搜索仅产生全文结果。即,仅在提及名称时出现问题,而在名称已被分配、已报告、已抄送等情况下则不存在。

我在这里的目的是查找与我相关的股票会计票证。

我使用的是 JIRA 3.13。

In JIRA, how do a find all issues related to a user, across all projects.

A simple query search yields only full text results. i.e. only issues where the name is mentioned and not if the name has been assigned, has reported, has been cc’d etc.

My intention here is to find tickets related to me for stock accounting.

I'm using JIRA 3.13.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(8

岁月苍老的讽刺 2024-09-22 04:47:16
assignee = currentUser() OR assignee was currentUser() OR reporter = currentUser()

这足以满足查询

assignee = currentUser() OR assignee was currentUser() OR reporter = currentUser()

This will suffice the query

梦过后 2024-09-22 04:47:16

只是有相同的“股票会计”用例:如果您想了解您所涉及的问题的概述,只需转到用户的个人资料页面,然后点击“活动”。将显示您一直在处理的所有票证。

对于所有无法执行像

assignee was currentUser()

这样的查询的人来说,这似乎是一种替代方案,因为他们的 Jira 不支持该字段的历史搜索(就像我们这里的那样)。

Just had the same 'stock accounting' use case: If you like to get an overview of the issues where you were involved to, just go to the profile page of your user, and hit 'Activity'. All tickets you had been working on are displayed.

This seems to be an alternative for all who are also not able to do a query like

assignee was currentUser()

because their Jira does not support history searches on that field (like ours here).

南冥有猫 2024-09-22 04:47:16

就像格雷格提到的那样,您可以使用“查找问题”选项。默认情况下,您只能由问题报告者或受让人进行搜索。但是,如果您的 Jira 安装安装了 Jira Toolkit 插件 ,您可以按参与者进行搜索。如果您需要查找您已帮助解决但不再分配给您的问题,那么这是一个很好的功能。

Like Greg mentioned, you can use the "FIND ISSUES" -option. By default, you can only do searches by the issue reporter or by the assignee. But if your Jira installation has the Jira Toolkit plugin installed, you can run a search by participant. This is a good feature if you need to find the issues which you have helped to resolve, but aren't anymore assigned to you.

同尘 2024-09-22 04:47:16

单击顶部的问题,单击左侧栏的新建。

现在,选择报告者和受让人。然后切换到高级搜索。

然后您可以将 AND 更改为 OR 并进行搜索。

例如

assignee = currentUser() OR reporter = currentUser()

(默认情况下是 AND

Click on Issues on the top, click New on the left bar.

Now, choose the reporter and assignee. Then switch to Advanced search.

Then you can change the AND to an OR and do the search.

e.g.

assignee = currentUser() OR reporter = currentUser()

(it would have been AND by default)

再可℃爱ぅ一点好了 2024-09-22 04:47:16

在 JIRA 中,我需要找到与用户(我)相关的所有问题,包括评论、受让人、报告者、观察者和状态更新。

我已将过滤器与 JQL 和下一个查询一起使用:

status changed BY currentUser() OR reporter = currentUser() 
OR watcher in (currentUser()) OR assignee = currentUser() 
OR assignee was currentUser() OR commentedByUser = currentUser() 
ORDER BY updated DESC
  1. 打开过滤器页面:

JIRA Filter

  1. 切换到 JQL
    切换到JQL 按钮

  2. 输入查询并单击搜索按钮。
    输入图片此处描述

In JIRA, I need to find really all issues related to a user (me) including comments, assignee, reporter, watcher and status updates.

I've used filters with JQL and next query:

status changed BY currentUser() OR reporter = currentUser() 
OR watcher in (currentUser()) OR assignee = currentUser() 
OR assignee was currentUser() OR commentedByUser = currentUser() 
ORDER BY updated DESC
  1. Open filter page:

JIRA Filter

  1. Switch to JQL
    Switch to JQL button

  2. Enter query and click Search button.
    enter image description here

人间不值得 2024-09-22 04:47:16

您应该能够使用顶部栏中的“查找问题”选项,选择“新建”来创建新的过滤器(默认情况下跨越所有项目),然后从相关的“问题属性”下拉框中选择您的姓名。

You should be able to use the "FIND ISSUES" option across the top bar, select "New" to create a new filter (which by default spans all projects), and select your name from the relevant "Issue Attributes" dropdown boxes.

阳光①夏 2024-09-22 04:47:16

如果您需要锤子:

观察者 = currentUser() 或受让人 = currentUser() 或受让人是 currentUser() 或创建者 = currentUser() 或记者 = currentUser() 或评论 ~ currentUser() 或文本 ~ currentUser() 或摘要 ~ currentUser() 或描述 ~ currentUser() ORDER BY 更新的 DESC

您可以限制为某些天:

<代码>已更新> -365d AND (观察者 = currentUser() 或受让人 = currentUser() 或受让人是 currentUser() 或创建者 = currentUser() 或记者 = currentUser() 或评论 ~ currentUser() 或文本 ~ currentUser() 或摘要 ~ currentUser( ) 或描述 ~ currentUser()) ORDER BY 更新的 DESC

If you need a hammer:

watcher = currentUser() OR assignee = currentUser() OR assignee was currentUser() OR creator = currentUser() OR reporter = currentUser() OR comment ~ currentUser() OR text ~ currentUser() OR summary ~ currentUser() OR description ~ currentUser() ORDER BY updated DESC

You could limit to some days:

updated > -365d AND (watcher = currentUser() OR assignee = currentUser() OR assignee was currentUser() OR creator = currentUser() OR reporter = currentUser() OR comment ~ currentUser() OR text ~ currentUser() OR summary ~ currentUser() OR description ~ currentUser()) ORDER BY updated DESC

悲凉≈ 2024-09-22 04:47:16

在浏览器中打开 JIRA Web 应用程序/站点,然后导航到问题(在标题中)>搜索问题,然后输入您的搜索条件。

Open the JIRA web application/site in your browser and navigate to Issues (in header) > Search for issues, then enter your search criteria.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文