Running into a wall with Architect expression syntax. Need to filter records where last_updated is older than 7 days. Tried DateTimeDiff(now(), entity.last_updated, "d") > 7, but it fails validation. Is DateTimeDiff even supported in this context? Also, GetDayOfWeek returns an int, but I need to compare against a specific date range. Any working examples for date arithmetic in expressions?