I am trying to edit my Kanban board to where all issues marked as "Done" will stay visible in the Kanban board for one week, but I am struggling in finding the proper query for this. This is what I hate so far:
project = III AND resolution in (Unresolved) OR project = III AND resolution != EMPTY OR Project = III AND resolution != null AND resolutiondate < 7d ORDER BY Rank ASC
Any input is greatly appreciated.
You need to include project = III AND resolution=done if you looking by resolution
then it will show you the issues that are having resolution as done
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
project = III AND resolution in (Unresolved,Done) AND resolution not in (EMPTY,null) AND resolutiondate < 7d ORDER BY Rank ASC
I have included that query and simplified it as well
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.