- πΊπΈUnited States R_H-L
I know this is an old issue, but you have to remove the access check:
$query = \Drupal::entityQuery('group') ->accessCheck(FALSE); $gids = $query -> execute();
EntityQuery on group returns an empty array
$query = \Drupal::entityQuery('group');
$gids = $query -> execute();
// returns an empty array().
Active
1.4
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
I know this is an old issue, but you have to remove the access check:
$query = \Drupal::entityQuery('group')
->accessCheck(FALSE);
$gids = $query -> execute();