Would you recommend replicating our sql table/rela...
# spicedb
k
Would you recommend replicating our sql table/relationships in spicedb completely? Also what is the recommended way to define a relation: 1 Should an "owned" resource have a relation to it's owner 2 An owner have the relation with it's "children" 3 Both 1:
Copy code
definition person { 
}

definition document {
 relation person: person
}
2:
Copy code
definition person { 
 relation document: document
}

definition document {
}
3;
Copy code
definition person { 
 relation document: document
}

definition document {
 relation person: person
}