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...
JQLを利用した高度な検索も行えます。 検索結果の並べ替え 検索結果は、任意のフィールドを基準に並べ替えできます。デフォルトの状態では、「Created(作成)」や「Updated(更新)」の日付、「Status(ステータス)」、「Priority(優先度)」といったフィールドを利用でき、必要に応じてチケットで使用され...
如果你对JQL 不熟悉,请参阅我们的教程系列。 [cc lang=’sql’](watcher = currentUser()) AND status not in (closed) ORDER BY updated DESC[/cc] 复制代码 这将返回我正在观看的所有未完全关闭的问题。 使用以下查询只查看尚未解决的问题。 [cc lang=’sql’](watcher = currentUser()) AND resolution...
Jira does not provide JQL functions to read the last comment on an issue. Automation for Jira can be used to supplement this functionality Limitations The solution described below may not scale well. The limitations include but not limited to: ...
Limit issue types based on user group? Jira ScriptRunner ...hown for. const group = "JIRAtest"; if (groupNames.includes(group)) { issueTypeField.setOptionsVisibility(["10040", "10011"], true) } Is there another way or is there something w... 51 views 2 0 Rodrigo Gomez 6 hours ...
What happens if you accidentally exceed licences on Cloud when using AD user provisioning with Guard We use user provisioning with Active Directory and atlassian guard to grant licences for a user group. We are on annual billing cycle. Sometimes we have periods when we receive lots of requests...
jira=JIRA('https://jira.xxx.xxx/',basic_auth=('user_name','password')) 3.在筛选器对需要的结果进行筛选,点高级拿到sql 4.执行sql获得结果 代码语言:javascript 复制 #查询张三所有的issues name="张三"query_sql='updated >= -24h AND assignee in ('+name+') ORDER BY created DESC'query_info=...
Use JQL, orJira Query Language,to quickly and accurately search Jira for issues assigned to you, updated in the last 24 hours, or anything that is critical at the moment, so you can go into your scrums armed. Custom Dashboards Keep an eye on progress and identify bottlenecks by customizin...
custom_dataset_query: JQL from step 3.Next time when you run toolkit, custom dataset issues will be stored to the dc-app-performance-toolkit/app/datasets/jsm/custom-requests.csv with columns: request_id, request_key, service_desk_id, project_id, project_key.Example...
利用JQL来快速找到你想要的issues: issues_in_proj = jira.search_issues('project=PROJ') all_proj_issues_but_mine=jira.search_issues('project=PROJ andassignee != currentUser()') # 我应该在本周完成的5个issue(优先级排序) oh_crap = jira.search_issues('assignee = currentUser() and due < end...