You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 11, 2022. It is now read-only.
There is currently no support for subqueries inside functions because second parameter of LET method expect AqlGen Object to wrap the subquery with parentheses
as for example:
// expected // FOR l IN locations// LET users = FIRST( (FOR u IN users) )$mainQuery = AqlGen::query('l', 'locations');
$users = AqlGen::query('u', 'users');
// next produces //LET users = (FOR u IN users) $mainQuery->let('users', $users);
//but for functions only work with string $mainQuery->let('users', 'FIRST((' . $users->get() .'))');
Some sugestions of implementations?
The text was updated successfully, but these errors were encountered:
There is currently no support for subqueries inside functions because second parameter of LET method expect AqlGen Object to wrap the subquery with parentheses
as for example:
Some sugestions of implementations?
The text was updated successfully, but these errors were encountered: