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
HasManyThrough relations are not filterable. To recreate this issue you can use the following database from the Laravel documentation:
projects id - integer name - string environments id - integer project_id - integer name - string deployments id - integer environment_id - integer commit_hash - string
The following request will not filter any projects which has the deployments:
http://127.0.0.1:8000/odata/Projects?$expand=Deployments($filter=commit_hash eq 'XXX')&$filter=Deployments/any(s:s/commit_hash eq 'XXX')
The text was updated successfully, but these errors were encountered:
No branches or pull requests
HasManyThrough relations are not filterable. To recreate this issue you can use the following database from the Laravel documentation:
The following request will not filter any projects which has the deployments:
The text was updated successfully, but these errors were encountered: