You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1185,6 +1185,7 @@ try {
1185
1185
| [**readAuthorizationModel**](docs/OpenFgaApi.md#readauthorizationmodel) |**GET**/stores/{store_id}/authorization-models/{id} |Return a particular version of an authorization model |
1186
1186
| [**readAuthorizationModels**](docs/OpenFgaApi.md#readauthorizationmodels) |**GET**/stores/{store_id}/authorization-models |Return all the authorization models for a particular store |
1187
1187
| [**readChanges**](docs/OpenFgaApi.md#readchanges) |**GET**/stores/{store_id}/changes |Return a list of all the tuple changes |
1188
+
| [**streamedListObjects**](docs/OpenFgaApi.md#streamedlistobjects) |**POST**/stores/{store_id}/streamed-list-objects |Stream all objects of the given type that the user has a relation with |
1188
1189
| [**write**](docs/OpenFgaApi.md#write) |**POST**/stores/{store_id}/write |Add or delete tuples from the store |
1189
1190
| [**writeAssertions**](docs/OpenFgaApi.md#writeassertions) |**PUT**/stores/{store_id}/assertions/{authorization_model_id} |Upsert assertions for an authorization model ID|
1190
1191
| [**writeAuthorizationModel**](docs/OpenFgaApi.md#writeauthorizationmodel) |**POST**/stores/{store_id}/authorization-models |Create a new authorization model |
Copy file name to clipboardExpand all lines: docs/OpenFgaApi.md
+163Lines changed: 163 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,6 +32,8 @@ All URIs are relative to *http://localhost*
32
32
|[**readAuthorizationModelsWithHttpInfo**](OpenFgaApi.md#readAuthorizationModelsWithHttpInfo)|**GET** /stores/{store_id}/authorization-models | Return all the authorization models for a particular store |
33
33
|[**readChanges**](OpenFgaApi.md#readChanges)|**GET** /stores/{store_id}/changes | Return a list of all the tuple changes |
34
34
|[**readChangesWithHttpInfo**](OpenFgaApi.md#readChangesWithHttpInfo)|**GET** /stores/{store_id}/changes | Return a list of all the tuple changes |
35
+
|[**streamedListObjects**](OpenFgaApi.md#streamedListObjects)|**POST** /stores/{store_id}/streamed-list-objects | Stream all objects of the given type that the user has a relation with |
36
+
|[**streamedListObjectsWithHttpInfo**](OpenFgaApi.md#streamedListObjectsWithHttpInfo)|**POST** /stores/{store_id}/streamed-list-objects | Stream all objects of the given type that the user has a relation with |
35
37
|[**write**](OpenFgaApi.md#write)|**POST** /stores/{store_id}/write | Add or delete tuples from the store |
36
38
|[**writeWithHttpInfo**](OpenFgaApi.md#writeWithHttpInfo)|**POST** /stores/{store_id}/write | Add or delete tuples from the store |
37
39
|[**writeAssertions**](OpenFgaApi.md#writeAssertions)|**PUT** /stores/{store_id}/assertions/{authorization_model_id} | Upsert assertions for an authorization model ID |
@@ -2301,6 +2303,167 @@ No authorization required
2301
2303
|**500**| Request failed due to internal server error. | - |
Stream all objects of the given type that the user has a relation with
2311
+
2312
+
The Streamed ListObjects API is very similar to the the ListObjects API, with two differences: 1. Instead of collecting all objects before returning a response, it streams them to the client as they are collected. 2. The number of results returned is only limited by the execution timeout specified in the flag OPENFGA_LIST_OBJECTS_DEADLINE.
Stream all objects of the given type that the user has a relation with
2386
+
2387
+
The Streamed ListObjects API is very similar to the the ListObjects API, with two differences: 1. Instead of collecting all objects before returning a response, it streams them to the client as they are collected. 2. The number of results returned is only limited by the execution timeout specified in the flag OPENFGA_LIST_OBJECTS_DEADLINE.
0 commit comments