Has anyone built a tool that can take the schema a...
# spicedb
k
Has anyone built a tool that can take the schema and generate POCOs for type safety on the client side?
Copy code
definition blog/user {}

definition blog/post {
    relation reader: blog/user
    relation writer: blog/user

    permission read = reader + writer
    permission write = writer
}
would turn into something like (typescript)
type resources = 'user' | 'post'
(excluding the prefix blog).