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
r.get_all does not seem to support compound indexes.
r.get_all
Example Code:
r.table("users").get_all(r.args(( [id, team_id], get_all::Options::default().index("compound_user_team"), )))
("compound_user_team" is an created index for the fields "id" and "team_id")
Returns no results, while the javascript equivalent returns the expected result
r.table("users").getAll([id, team_id], {index: "compound_user_team"})
The text was updated successfully, but these errors were encountered:
No branches or pull requests
r.get_all
does not seem to support compound indexes.Example Code:
("compound_user_team" is an created index for the fields "id" and "team_id")
Returns no results, while the javascript equivalent returns the expected result
The text was updated successfully, but these errors were encountered: