find All Expired Notifications
@Query(value = "
SELECT *
FROM notification
WHERE "date" < current_timestamp + INTERVAL '- 2 WEEK';
", nativeQuery = true )
Returns notifications which are older than 2 weeks
Returns notifications which are older than 2 weeks