is there a way to constrict assignment via a relat...
# zanzibar
c
is there a way to constrict assignment via a relation? For example:
Copy code
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?
}
2 Views