We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If only one has many case is selected it shouldn't perform a child request but rather perform a join.
$tasks = TaskMapper::getAll() ->with('tags') ->with('tags/title') ->with('taskElements') ->where('title', '%' . ($request->getDataString('search') ?? '') . '%', 'LIKE') ->where('tags/title/language', $response->header->l11n->language) ->sort('createdAt', OrderType::DESC) ->sort('taskElements/createdAt', OrderType::ASC) ->limit(25) ->limit(1, 'taskElements') ->execute();
Careful, there is another bug relating limit on has many members.
limit
There is also a variation of this discussed in the ReadMapper with localizations as example.
ReadMapper
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If only one has many case is selected it shouldn't perform a child request but rather perform a join.
Careful, there is another bug relating
limit
on has many members.There is also a variation of this discussed in the
ReadMapper
with localizations as example.The text was updated successfully, but these errors were encountered: