The thing is i have main category with subcategories.
subcategory has only one entry.
Subcategory has foo.bar@example.com user set up as member. And now this code:
$filter = new MediaEntryFilter();
$filter->entitledUsersViewMatchAnd = ‘foo.bar@example.com’;
$pager = new FilterPager();
return $this->client->media->listAction($filter, $pager);
Return nothing, without entitledUsersViewMatchAnd scope listAction works fine.
What i’m doing wrong?