From db12c4a3fc42a156d9c1a9efafd05639d61355f4 Mon Sep 17 00:00:00 2001 From: Afzal Ansari Date: Mon, 20 Jan 2025 22:14:14 +0530 Subject: [PATCH] fix: add the link to config schema for tuples in transactional writes --- docs/content/interacting/transactional-writes.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/interacting/transactional-writes.mdx b/docs/content/interacting/transactional-writes.mdx index 704858329..abec3fea9 100644 --- a/docs/content/interacting/transactional-writes.mdx +++ b/docs/content/interacting/transactional-writes.mdx @@ -167,7 +167,7 @@ curl -X POST 'http://localhost:8080/stores/{store_id}/write' \ -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. +The Write API allows you to send up to 100 unique tuples by default and can be configured in the request as you can refer from this (https://github.com/openfga/openfga/blob/main/.config-schema.json#L3-L7) to the config schema. (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.