def author = Author.findByName("Stephen King")def book = author.books.find { it.title = 'The Stand' }author.removeFromBooks(book)