Or can I somehow merge schemas along the lines of:...
# spicedb
t
Or can I somehow merge schemas along the lines of:
Copy code
definition user {}

definition blob {
    relation owner: user_archive

}

definition user_archive {
    relation owner: user
}


definition blob {
    relation owner: shared_document

}

definition shared_document {
    relation editors: user
}
and each service would push the schema/relations relevant to it?
2 Views