I've tried searching for a solution to this on the forum but have yet to come across a solution, so apologies if this is a repost.
I'm trying to get a list of non-deleted candidates that have been attached to a completed task with a given type.
The following query to search/Tasks brings back all tasks and all candidates with the task type:
Query:
Code: Select all
isCompleted:True AND isDeleted:False AND type:Pre-Screen
Code: Select all
candidate(id,firstName,lastName,isDeleted)
Query:
Code: Select all
isCompleted:True AND isDeleted:False AND type:Pre-Screen AND candidate.isDeleted=False
Thanks in advance!