How to add authorization to filter nested data
I'm running a graphql query with the following filter
but I want this query to be possible only for a specific role
but I want this query to be possible only for a specific role
{
teams: {
id: {
in: teamIds,
},
},
}