The values of properties in a map in automerge can be conflicted if there
are concurrent "put" operations to the same key. Automerge chooses one value
arbitrarily (but deterministically, any two nodes who have the same set of
changes will choose the same value) from the set of conflicting values to
present as the value of the key.
Sometimes you may want to examine these conflicts, in this case you can use
getConflicts to get the conflicts for the key.
Get the conflicts associated with a property
The values of properties in a map in automerge can be conflicted if there are concurrent "put" operations to the same key. Automerge chooses one value arbitrarily (but deterministically, any two nodes who have the same set of changes will choose the same value) from the set of conflicting values to present as the value of the key.
Sometimes you may want to examine these conflicts, in this case you can use getConflicts to get the conflicts for the key.
Example