Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

AI for Jira Data Center Feature: JQL Search with AI (Part 2)

The previous article shows some simple examples of the feature about using AI to generate code from natural language.

Now we will be showing the more professional and useful capabilities of AI for Jira data center.

Here are some useful Jira JQL (Jira Query Language) queries that can help you quickly find the issues you need in Jira, the following JQL queries are generated by AI for Jira app:

  1. My open issues

    assignee = currentUser() AND resolution = Unresolved
    My open issues.png
  2. Open issues that I reported

    reporter = currentUser() AND resolution = Unresolved
    Open issues that I reported.png
  3. Issues that will due in 3 days in project AAA

    project = AAA AND due < endOfDay("+3d")
    Issues that will due in 3 days in project AAA.png
  4. Issues in pending and doing status in project AAA

    status IN ("Pending", "Doing") AND project = AAA
    Issues in pending and doing status in project AAA.png
  5. Issues in project AAA that have not updated within 48 hours, sorted in descending order of update time

    project = AAA AND updated <= -48h ORDER BY updated DESC
    Issues in project AAA that have not updated within 48 hours, sorted in descending order of update time.png
  6. Bugs without attachments in project AAA

    project = AAA AND issuetype = "bug" AND attachments is EMPTY
    Bugs without attachments in project AAA.png
  7. Issues completed by testers group users in project AAA

    project = AAA AND assignee IN (membersOf('testers’)) AND resolution is not empty
    Issues completed by testers group users in project AAA.png
  8. Issues resolved in the past 30 days in project AAA

    project = AAA AND resolutiondate >= -30d
    Issues resolved in the past 30 days in project AAA.png
  9. Unresolved issues in the next upcoming version of project AAA

    project = AAA AND resolution = Unresolved AND fixVersion = NEXT_RELEASE ORDER BY priority DESC
    Unresolved issues in the next upcoming version of project AAA.png
  10. Bugs in project AAA with summary containing 'server exception'

    project = AAA AND summary ~"server exception" AND issuetype = Bug
    Bugs in project AAA with summary containing 'server exception'.png
  11. I've been logging work for the last month

    worklogAuthor = currentUser() AND worklogDate >= startOfMonth(-1) AND worklogDate <= endOfMonth(-1)
    I've been logging work for the last month.png
  12. What bugs are still not fixed before releasing V1.0?

    issuetype = "bug" AND resolution = Unresolved AND fixVersion = "V1.0"
    What bugs are still not fixed before releasing V1.0_.png
  13. Find all issues I am watching

    watcher = currentUser()
    Find all issues I am watching.png
  14. Find issues status has been changed from ‘Open’ to ‘In Progress’ on last week

    status changed FROM "Open" TO "In Progress" AFTER startOfWeek(-1) BEFORE endOfWeek(-1)
    Find issues status has been changed from ‘Open’ to ‘In Progress’ on last week.png

 

These JQL queries above are generated by AI.

What other JQL would you like AI to generate for you? You can add comments, or try AI for Jira app.

 

Feel free to ‘like’, ‘comment’, ‘share’, ‘watch’ below! 😊

 

 

0 comments

Comment

Log in or Sign up to comment
TAGS
AUG Leaders

Atlassian Community Events