Skip to content

Instantly share code, notes, and snippets.

@thomasmartin-whoz
Last active October 6, 2022 15:12
Show Gist options
  • Save thomasmartin-whoz/9fc70835d713f20324e5c61662143445 to your computer and use it in GitHub Desktop.
Save thomasmartin-whoz/9fc70835d713f20324e5c61662143445 to your computer and use it in GitHub Desktop.
class Company {
ObjectId id
String name
List<Person> employees
static constraints = {
name nullable: false, index: true
}
static hasMany = [employees: Person]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment