This commit is contained in:
Arsen Mirzaev Tatyano-Muradovich 2024-01-22 19:34:42 +07:00
parent da90b0c533
commit 5641a686a2

View File

@ -145,8 +145,8 @@ final class task extends core
<<<AQL <<<AQL
FOR task IN %s FOR task IN %s
%s %s
LET worker = (FOR worker in %s FILTER worker.id LIKE task.worker SORT worker.created DESC, worker.id DESC LIMIT 1 RETURN worker)[0] LET worker = (FOR worker in %s FILTER worker.id != null && worker.id LIKE task.worker SORT worker.created DESC, worker.id DESC LIMIT 1 RETURN worker)[0]
LET market = (FOR market in %s FILTER market.id LIKE task.market SORT market.created DESC, market.id DESC LIMIT 1 RETURN market)[0] LET market = (FOR market in %s FILTER market.id != null && market.id LIKE task.market SORT market.created DESC, market.id DESC LIMIT 1 RETURN market)[0]
%s %s
SORT %s SORT %s
LIMIT %d, %d LIMIT %d, %d