Hi guys! May you help me to figure out with lookup...
# spicedb
t
Hi guys! May you help me to figure out with lookup method? I have the following structure:
Copy code
project_1 {
 team_11 {}
 team_12 {
   user_1
 }
}

project_2 {
 team_21 {}
 team_22 {
   user_1
 }
}
LookupResources allows to get a list of all available teams, regardless of the project but I have to get a list of teams available to the user_1, but only in project_1. What is the best way to do this?