It would be a semantic conflict, not a conflict of...
# spicedb
t
It would be a semantic conflict, not a conflict of which operation to apply. For example:
Copy code
user.favoriteColors = ["green", "yellow"]
user.favoriteColors = ["red", "blue"]
The end result should be
["red", "blue"]
, not
["green", "yellow", "red", "blue"]
, which requires going back and removing the effects of that first line
3 Views