Filter items in some state longer than
Hi.
I need to detect stale items, ideally in a specific state.
For example item in { need brainstorm} state longer than 1 week
Or item not changed 1 week
How can i construct query for this ?
Please sign in to leave a comment.
Hi Zdenek,
I'm Sergey from the YouTrack Team. Thanks for reaching out!
You can use date-related search parameters to find stale items. Some of the parameters you can work with are
updated,resolved date, andcreated. You can find the complete list with descriptions here: Search and Command Attributes.For tracking items that haven't been modified recently, use date ranges like
updated: * .. {minus 1y}to show all issues last updated more than a year ago.For more details on working with date ranges and period values, check out this guide: Date and Period Values.
Let me know if you have any questions!