blob: 42050976fa5e66a0b9d6221f261aa1fda1e0da0d [file] [log] [blame]
// Returns all students supervised by Matthew Thomas
Student.all.select(s|s.supervisor?.lastname = "Thomas").println();
// Returns the modules taught by Daniel Jackson
Module.all.select(m|
Staff.all.exists(s|
s.firstname="Daniel" and s.teaches.includes(m))).println();