Is there any way to `filter` all permissions in `L...
# spicedb
r
Is there any way to
filter
all permissions in
LookupSubjects
like using
*
wildecard? (I tested
*
and not working)
Copy code
js
resp, err := authz.LookupSubjects(context.Background(), &v1.LookupSubjectsRequest{
    Consistency: &v1.Consistency{Requirement: &v1.Consistency_FullyConsistent{FullyConsistent: true}},
    Resource: &v1.ObjectReference{ObjectType: "workspace", ObjectId: "it_department"},
    Permission:        "*", // <=
    SubjectObjectType: "user",
})