Skip to content

Latest commit

 

History

History
264 lines (204 loc) · 8.7 KB

read-tuple-changes.mdx

File metadata and controls

264 lines (204 loc) · 8.7 KB
title sidebar_position slug description
How to get tuple changes
1
/interacting/read-tuple-changes
Getting tuple changes

import { AuthzModelSnippetViewer, SupportedLanguage, languageLabelMap, DocumentationNotice, SdkSetupHeader, ProductName, ProductNameFormat, ReadChangesRequestViewer, SdkSetupPrerequisite, } from '@components/Docs'; import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem';

How to get tuple changes

This section illustrates how to call the Read Changes API to get the list of relationship tuple changes that happened in your store, in the exact order that they happened. The API response includes tuples that have been added or removed in your store. It does not include other changes, like updates to your authorization model and adding new assertions.

Before you start

  1. You have installed the SDK.
  2. You have configured the authorization model and added some relationship tuples.
  3. You have loaded FGA_STORE_ID and FGA_API_HOST as environment variables.
  1. You have installed the SDK.
  2. You have configured the authorization model and added some relationship tuples.
  3. You have loaded FGA_STORE_ID and FGA_API_HOST as environment variables.
  1. You have installed the SDK.
  2. You have configured the authorization model.
  3. You have loaded FGA_STORE_ID and FGA_API_HOST as environment variables.
  1. You have installed the SDK.
  2. You have configured the authorization model.
  3. You have loaded FGA_STORE_ID and FGA_API_HOST as environment variables.
  1. You have installed the SDK.
  2. You have configured the authorization model.
  3. You have loaded FGA_STORE_ID and FGA_API_HOST as environment variables.
  1. You have configured the authorization model and added some relationship tuples.
  2. You have loaded FGA_STORE_ID and FGA_API_HOST as environment variables.

Step By Step

To get a chronologically ordered list of tuples that have been written or deleted in your store, you can do so by calling the Read Changes API.

01. Configure The API Client

First you will need to configure the API client.

To obtain the access token:

02. Get Changes For All Object Types

To get a paginated list of changes that happened in your store:

<ReadChangesRequestViewer pageSize={25} skipSetup={true} allowedLanguages={[ SupportedLanguage.JS_SDK, SupportedLanguage.GO_SDK, SupportedLanguage.DOTNET_SDK, SupportedLanguage.PYTHON_SDK, SupportedLanguage.JAVA_SDK, SupportedLanguage.CLI, SupportedLanguage.CURL, ]} />

The result will contain an array of up to 25 tuples, with the operation (write or delete), and the timestamp in which that operation took place. The result will also contain a continuation token. Save the continuation token in persistent storage between calls so that it is not lost and you do not have to restart from scratch on system restart or on error.

You can then use this token to get the next set of changes:

<ReadChangesRequestViewer pageSize={25} continuationToken={'eyJwayI6IkxBVEVTVF9OU0NPTkZJR19hdXRoMHN0b3JlIiwic2siOiIxem1qbXF3MWZLZExTcUoyN01MdTdqTjh0cWgifQ=='} skipSetup={true} allowedLanguages={[ SupportedLanguage.JS_SDK, SupportedLanguage.GO_SDK, SupportedLanguage.DOTNET_SDK, SupportedLanguage.PYTHON_SDK, SupportedLanguage.JAVA_SDK, SupportedLanguage.CLI, SupportedLanguage.CURL, ]} />

Once there are no more changes to retrieve, the API will return the same token as the one you sent. Save the token in persistent storage to use at a later time.

:::note

  • The default page size is 50. The maximum page size allowed is 100.
  • The API response will not return all the changes immediately. There will be a delay of one minute between the time that you add or delete a tuple and the time that you see it in the Read Changes API response.
  • The API response does not expand the tuples. If you wrote a tuple that includes a userset, like {"user": "group:abc#member", "relation": "owner": "doc:budget"}, the Read Changes API will return that exact tuple.

:::

03. Get Changes For A Specific Object Type

Imagine you have the following authorization model:

<AuthzModelSnippetViewer configuration={{ schema_version: '1.1', type_definitions: [ { type: 'user', }, { type: 'group', relations: { member: { this: {}, }, }, metadata: { relations: { member: { directly_related_user_types: [{ type: 'user' }] }, }, }, }, { type: 'folder', relations: { owner: { this: {}, }, }, metadata: { relations: { owner: { directly_related_user_types: [{ type: 'group', relation: 'member' }, { type: 'user' }] }, }, }, }, { type: 'doc', relations: { owner: { this: {}, }, }, metadata: { relations: { owner: { directly_related_user_types: [{ type: 'group', relation: 'member' }, { type: 'user' }] }, }, }, }, ], }} />

It is possible to get a list of changes that happened in your store that relate only to one specific object type, like folder, by issuing a call like this:

<ReadChangesRequestViewer pageSize={25} type={'folder'} skipSetup={true} allowedLanguages={[ SupportedLanguage.JS_SDK, SupportedLanguage.GO_SDK, SupportedLanguage.DOTNET_SDK, SupportedLanguage.PYTHON_SDK, SupportedLanguage.JAVA_SDK, SupportedLanguage.CLI, SupportedLanguage.CURL, ]} />

The response will include a continuation token. In subsequent calls, you have to include the token and the type. (If you send this continuation token without the type parameter set, you will get an error).

<ReadChangesRequestViewer pageSize={25} type={'folder'} continuationToken={'eyJwayI6IkxBVEVTVF9OU0NPTkZJR19hdXRoMHN0b3JlIiwic2siOiIxem1qbXF3MWZLZExTcUoyN01MdTdqTjh0cWgifQ=='} skipSetup={true} allowedLanguages={[ SupportedLanguage.JS_SDK, SupportedLanguage.GO_SDK, SupportedLanguage.DOTNET_SDK, SupportedLanguage.PYTHON_SDK, SupportedLanguage.JAVA_SDK, SupportedLanguage.CLI, SupportedLanguage.CURL, ]} />