In my app I have 2 table, books and tags, and the link table book_tags. The link table also contains the number of times the book was tagged with this particular tag. I can add a tag by doing
$book->add_tag($tag, { tag_count => 10 });
However when I retrieve the tags for a book
@tags = $book->tags();
it does not seem to return the values from the link table.
Is there a way to get the values from the link table without doing it by hand?