un-reactions on social feed - possible?

I have reactions to other users’ posts; I’m not sure how to set them so that a user can click again to un-react?

Hi @obrienpaule,

That depends on how you have implemented reactions.
If you have Many-2-Many relationship between Posts and Users (for the reactions), then you can Add/Remove User to the Post via an action on any element, or use Toggle.

If you store reactions in a separate collection, then it’s a bit more cumbersome: you will have to create a single-item list of the reaction of THIS user to THIS post and then delete the reaction using an action. In a couple of my old videos https://youtu.be/b0Lw8jgLaLk, https://youtu.be/wXWgBV78yUQ I show similar approach to upvotes / downvotes.

Best,
Victor.