Hello,
I try to write a JQL query in searchbox in jira, which return me a bug issues that was/are assigned to user/group of user on selectedDay.
I try something like this:
project = "myProj" and issuetype="Bug" and assignee changed TO membersOf('group_name') ON ('2018/02/14')
but this query return only issues which users from "group-name" made changes ON "2018/02/14".
In destination and fun with Java (using jira-rest-client-api) i want get all issuess which was opened on selected day( in example "2018/02/14") and was assigned to users from "group-name".
Thanks for any help,
Jacob
Hi Jacob,
If you want to search all the issues, from a specific project, that are "Bug" on a specific day, you can try use this:
project = "myProj" and issuetype="Bug" and assignee was in membersOf('group_name') ON ('2018/02/14')
This way, it should return the Bugs that had an assignee of the group in the provided day.
Could you please check and confirm if it works for you?
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.