You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hey
i'm trying to automate a feature in insight that changes an attribuite called status when a specific time has passed without any updates i have tried using the Iql statement "updated <= now(90d). The issue I än having is getting insight to recognize when an objectyype havent been updated in a certain time period, does any1 know how to write an Iql statement that works for this.
Hi @Fredrik Ottosson ,
Welcome to the community!
You IQL statement does what it it supposed do do, but I don't think it is what you want.
Your statement says: "Give me all objects that have been updated before 90 days in the future", which makes it of course every object you have.
You might want to try this:
"Updated" < now(-90d)
Which means, "Every object updated before 90 days ago"
Hope this helps!
- Tessa
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.