Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/content/interacting/transactional-writes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ curl -X POST 'http://localhost:8080/stores/{store_id}/write' \

</details>

The Write API allows you to send up to 100 unique tuples in the request. (This limit applies to the sum of both writes and deletes in that request). This means we can submit one API call that converts the `tweet` from public to visible to only the `user`'s followers.
By default, the Write API allows you to send up to 100 unique tuples in the request (This limit applies to the sum of both writes and deletes in that request). This means we can submit one API call that converts the `tweet` from public to visible to only the `user`'s followers. This limit can be configured on the server by specifying the [`--max-tuples-per-write`](../getting-started/configuration.mdx#OPENFGA_MAX_TUPLES_PER_WRITE) config value).

<WriteRequestViewer
relationshipTuples={[
Expand Down
Loading