blob: 4aeeeae0af81b7bcae61dd43c4324d11c4df9d1a [file]
class Book {
static belongsTo = [author: Author]
def name
}
class Author {
static hasMany = [books: Book]
}
Author.findBy<caret>