Hi, I’m trying to group new hires based on their start date by comparing now() to a date attribute. This works if I hard code a date, but it doesn’t if I try to use the now function.
This works: user.Service_Date gt "2019-06-29T00:00:00.000Z"
If you are using Okta group rule, Time.now() should work. However, your condition seems wrong. Would the current time ever be less than the user.Hire_Date? Also, Okta group rules are evaluated every time the field is updated. So you need to ensure your condition handles that, especially if you are thinking of say, users created within the last month would be in new hire group and will automatically move out of the group after 1 month. I think you will external logic (outside Okta) to handle this scenario.