Original Like button

I would like to implement an app-specific like button so that you can like and un-like other members’ posts. If we simply add 1 to the number property we have prepared for the post data, we don’t know who has liked the post, but we want to be able to rate and remove the rating from those who have liked the post. I also want to eventually rate a post by the total number of likes.
Is this possible with the current feature?

I was looking for this too. Check these tutorials out:

This is possible with current features. You need to add a like count and a list of “likers”. When someone likes the post, add 1 to the like count and add the user to “likers”. Have a second state button to do the opposite if they “unlike” the post