Reputation: 78
I have a custom filed as "SIB". i want to query all the bugs that have updated "SIB" in last 100 days.
I tried few things like
I was trying to work with "issueFunction and dateCompare" but not sure what sub query should be used.
Upvotes: -1
Views: 773
Reputation: 336
You can't do that with JQL.
But if you wneed this information many times, you can use automation. To do that, you can create a date type custom field named "SIB updated" (this field should be hidden). After that, you can create an automation that triggered when the field "SIB" was updated. And update the new custom field "SIB updated" with the current date. So with the JQL "SIB updated" > -100d, you can get the query that you want.
Upvotes: 0