I have two processes in the status "Ready for Work" and only want to find the process for which no time has been booked in Tempo this week.
The following query finds all with Tempo booking (period doesn't matter):
assignee = currentUser() and status in ("Ready for Work" ) and not WorklogDate >= startOfWeek()
Without the NOT I only find those with Tempo booking in the current week:
assignee = currentUser() and status in ("Ready for Work" ) and WorklogDate >= startOfWeek()
What am I doing wrong