is there a way to constrict assignment via a relation? For example:
type user {}
type district {
relation admin: user
}
type site {
relation district
relation site_admin: user // <- is it possible to limit this down to a user must be an admin of district?
}