Hey everyone!
I’d like to build real time collaboration into an app I’m building. So multiple people would be able to edit inside the same text field, add to a list of photos and change their order, etc.
I’m trying to figure out the best way to implement this, specifically how to handle conflict resolution for two edits made at the same time (or someone editing offline and then getting connected and syncing when other changes have been made by others in the mean time).
I had heard that aws appsync has conflict resolution, but I’m curious how I can achieve this using Prisma.
Thanks!