2👍
✅
book_set
gives you the Book record, not the BookRating one. You can get that via the standard reverse relationship:
request.user.bookratings_set.all()
That will have the rating field, plus the book
ForeignKey to get the Book.
Source:stackexchange.com