2๐
โ
* Updated to address comments *
So roughly speaking, I think this is what you would use:
Book.objects.annotate(is_liked=Case(When(like__user=self.request.user, then=True), default=False))
๐ค2ps
Source:stackexchange.com