- Issue created by @mrweiner
- ๐ฎ๐ณIndia dineshkumarbollu
entityQuery are present 2 files in module. From Drupal 9.2 onwards EntityQuery should have accessCheck(), see the https://www.drupal.org/node/3201242 โ for better understanding,
example:
$count = \Drupal::entityQuery('external_entity_type') ->condition('annotation_entity_type_id', $entity_type->id()) ->condition('annotation_bundle_id', $bundle) ->count() ->execute();
to
$count = \Drupal::entityQuery('external_entity_type') ->condition('annotation_entity_type_id', $entity_type->id()) ->condition('annotation_bundle_id', $bundle) ->count() ->accessCheck(FALSE) ->execute();
- ๐ฎ๐ณIndia dev2.addweb
nilesh.addweb โ made their first commit to this issueโs fork.