Official comment
Hi Jeet,
Conditions on nested fields are not valid in CZQL so the above query will fail. However, it can be rewritten using an IN condition and achieve the same results:
{
"q":"SELECT ActiveStopwatch, ActualBilledExpenses, Country FROM RecurringTask WHERE CreatedBy IN (
select ID FROM User WHERE Name like '%a%' )
LIMIT 10 OFFSET 0"
}
I hope this helps,
Elad