github openfga/js-sdk v0.0.2

latest releases: v0.7.0, v0.6.3, v0.6.2...
2 years ago

0.0.2 (2022-08-15)

Support for ListObjects API

You call the API and receive the list of object ids from a particular type that the user has a certain relation with.

For example, to find the list of documents that Anne can read:

const response = await openFgaApi.listObjects({
 user: "anne",
 relation: "can_read",
 type: "document"
});

// response.object_ids = ["roadmap"]

Don't miss a new js-sdk release

NewReleases is sending notifications on new releases.