From db12c4a3fc42a156d9c1a9efafd05639d61355f4 Mon Sep 17 00:00:00 2001 From: Afzal Ansari Date: Mon, 20 Jan 2025 22:14:14 +0530 Subject: [PATCH 1/4] 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 7048583294..abec3fea93 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. Date: Tue, 11 Mar 2025 23:07:09 +0530 Subject: [PATCH 2/4] modifies the context to the latest --- 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 abec3fea93..e2996ee11d 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 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. +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`](./configuration.mdx#OPENFGA_MAX_TUPLES_PER_WRITE) config value). Date: Tue, 11 Mar 2025 17:37:18 -0400 Subject: [PATCH 3/4] chore: fix typo linking to config page --- 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 e2996ee11d..f2af312245 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' \ -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`](./configuration.mdx#OPENFGA_MAX_TUPLES_PER_WRITE) config value). +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). Date: Mon, 24 Nov 2025 05:23:00 +0000 Subject: [PATCH 4/4] fix(docs): clarify Write API tuple limit description --- 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 f2af312245..d976af1a4a 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' \ -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). +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 and can be configured via [`--max-tuples-per-write`](../getting-started/setup-openfga/configuration.mdx#OPENFGA_MAX_TUPLES_PER_WRITE)). This means we can submit one API call that converts the `tweet` from public to visible to only the `user`'s followers.