Given the following domain structure:
Book {
static hasMany = [tags: Tag]
}
Tag {
String name
}
I'm trying to find a way that given a Book I can find any other books containing any of this book's tags.
I've tried:
Book.findAllByTagsInList(myBook.tags)
But as expected the 'List in List' query isn't producing the required results.