Hello,
What is the difference between "resolution =" and "resolution changed to" when running JQL.
project = KSENROLL AND resolution = Fixed AND fixVersion = M7
Returns 1287 Issues
project = KSENROLL AND resolution changed to Fixed AND fixVersion = M7
Returns 1330
Thanks
Ben
The "CHANGED
" operator is used to find issues that have a value which had changed for the specified field.
This operator has the following optional predicates:
AFTER "date"
BEFORE "date"
BY "username"
DURING ("date1","date2")
ON "date"
FROM "oldvalue"
TO "newvalue"
check the following document to get knowledge on advace searching
https://confluence.atlassian.com/display/JIRA/Advanced+Searching
the former one is where the resolution is currently set to fixed. The latter one is any tickets that has had resolution as "fixed" but could now have a different value.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can also see by example what characterizes the difference by trying these two queries:
project = KSENROLL AND resolution changed to Fixed AND fixVersion = M7 AND NOT resolution = Fixed project = KSENROLL AND resolution = Fixed AND fixVersion = M7 AND NOT resolution changed to Fixed
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
ah, Thank you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Welcome to great meetings, with less work. Automatically record, summarize, and share instant recaps of your meetings with Loom AI.
Learn moreOnline 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.