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
schema:
type User { name: String age: Int @index devices: [Device] } type Device { model: String owner: User }
Query:
query { Device(filter: { owner: {age: {_eq: 48}} }) { model owner { name } } }
Here if a user with age 48 has more than 1 device, all of them should be returned with the same owner. At the moment only 1 device is returned.
Detected during testing of #2365
The text was updated successfully, but these errors were encountered:
fix: Remove limit for fetching secondary docs (#2594)
ed3550a
## Relevant issue(s) Resolves #2590 and #2600 ## Description Make join fetch all secondary docs of a fetched-by-index primary doc.
73ad077
islamaliev
Successfully merging a pull request may close this issue.
schema:
Query:
Here if a user with age 48 has more than 1 device, all of them should be returned with the same owner. At the moment only 1 device is returned.
Detected during testing of #2365
The text was updated successfully, but these errors were encountered: