If you want to display all the books by the author, you might have something like
<g:each var="author" in="${Author.list()}">
<p>Author: ${author.fullName}</p>
<ul>
<g:each var="book" in="${author.books}">
<li>${book.title}</li>
</g:each>
</ul>
</g:each>
Hooray!
source
share