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
With OpenFGA [v1.10.0](https://github.com/openfga/openfga/releases/tag/v1.10.0) and later, support for write conflict options to handle duplicate writes and missing deletes gracefully has been added.
754
754
755
-
**Available Options:**
756
-
757
-
-`on_duplicate` - Controls behavior when writing a tuple that already exists:
758
-
-`ERROR` (default): Returns an error if an identical tuple already exists
759
-
-`IGNORE`: Silently ignores duplicate writes (treats as no-op)
760
-
761
-
-`on_missing` - Controls behavior when deleting a tuple that doesn't exist:
762
-
-`ERROR` (default): Returns an error if the tuple doesn't exist
763
-
-`IGNORE`: Silently ignores deletes of non-existent tuples (treats as no-op)
0 commit comments