-
-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
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
filtering on pivot seems to not work properly #143
Comments
This could be related to include, feels strange to me |
@FXLaroche I added an unit test to cover this, seems to be working |
I think the difference is that I am filtering on a many to many relationship, and that I am using two filters. I looked at the SQL request: it creates two 'exists' subqueries, one for each filter. Ideally I'd rather have both filters in the same subrequest. I tried to put them in a 'nested' structure but it doesn't make much difference. |
I'm not able to reproduce this please reopen the issue if you have something helping me reproducting this |
Laravel Rest Api Version
2.8.7
Laravel Version
11
PHP Version
8.3
Database Driver & Version
No response
Description
Considering the following example:
I want to search a team, and join to the result the users who are part of this team, and amongst these users, those who have the value 'left_at' at NULL on the pivot table. Here is my payload:
For my tests I've filtered on the object and its relation independently, as well as on both.
However in any case I get results where 'left_at' is not null.
It seems that the filter on the pivot table is not working at all, or that I misunderstood the way it works.
I've found a way around using a scope, but it would be nice to have it filter properly.
Steps To Reproduce
Make a search request on a model with a many-to-many relationship, inluding the relationship and filtering on a data on the pivot table.
The text was updated successfully, but these errors were encountered: