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
A call to storeClient.listChanges("user_group", null, null) does list all changes for all kind of tuples - not only the changes for type user_group.
storeClient.listChanges("user_group", null, null)
Using the same functionality directly from dev.openfga.sdk.api.client.OpenFgaClientworks:
dev.openfga.sdk.api.client.OpenFgaClient
OpenFgaClient directFga = new OpenFgaClient(new ClientConfiguration() .storeId(storeClient.get().await().indefinitely().getId()) .authorizationModelId(authorizationModelClient.get().await().indefinitely().getId())); directFga.readChanges(new ClientReadChangesRequest().type("user_group")).get() .getChanges() .forEach(System.out::println);
...returns changes for user_groups only
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A call to
storeClient.listChanges("user_group", null, null)
does list all changes for all kind of tuples - not only the changes for type user_group.Using the same functionality directly from
dev.openfga.sdk.api.client.OpenFgaClient
works:...returns changes for user_groups only
The text was updated successfully, but these errors were encountered: