If you are using wildcards in a schema, how does t...
# spicedb
c
If you are using wildcards in a schema, how does that work with the GRPC api? For example, if you have an
entity
and you want to mark it as public, such that all tokens could view the entity, then the schema would be:
Copy code
defintion entity {
  relation public: token:*
}
In the GRPC api, do we just use the
*
string in the id field: https://buf.build/authzed/api/docs/main:authzed.api.v1#authzed.api.v1.ObjectReference ?