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
The docs example:
ListRelationsRequest body = new ListRelationsRequest() { User = "user:81684243-9356-4421-8fbf-a4f8d36aa31b", Object = "document:roadmap", Relations = new List<string> {"can_view", "can_edit", "can_delete", "can_rename"}, ContextualTuples = new List<ClientTupleKey>() { new ClientTupleKey { User = "user:81684243-9356-4421-8fbf-a4f8d36aa31b", Relation = "editor", Object = "document:roadmap", } } }; var response = await fgaClient.ListRelations(body);
should be:
ClientListRelationsRequest body = new ClientListRelationsRequest() { User = "user:81684243-9356-4421-8fbf-a4f8d36aa31b", Object = "document:roadmap", Relations = new List<string> {"can_view", "can_edit", "can_delete", "can_rename"}, ContextualTuples = new List<ClientTupleKey>() { new ClientTupleKey { User = "user:81684243-9356-4421-8fbf-a4f8d36aa31b", Relation = "editor", Object = "document:roadmap", } } }; var response = await fgaClient.ListRelations(body);
Example code works.
N/A
Latest
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Checklist
Description
The docs example:
should be:
Expectation
Example code works.
Reproduction
N/A
OpenFGA SDK version
Latest
OpenFGA version
Latest
SDK Configuration
Latest
Logs
No response
References
No response
The text was updated successfully, but these errors were encountered: