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
- feat: add support for conflict options for Write operations: (#235)
5
+
The client now supports setting `ConflictOptions` on `ClientWriteOptions` to control behavior when writing duplicate tuples or deleting non-existent tuples. This feature requires OpenFGA server [v1.10.0](https://github.com/openfga/openfga/releases/tag/v1.10.0) or later.
6
+
See [Conflict Options for Write Operations](./README.md#conflict-options-for-write-operations) for more.
7
+
- `on_duplicate` for handling duplicate tuple writes (ERROR or IGNORE)
8
+
- `on_missing` for handling deletes of non-existent tuples (ERROR or IGNORE)
9
+
- docs: added documentation for write conflict options in README
0 commit comments