diff --git a/core/modules/migrate_drupal/src/Plugin/migrate/source/ContentEntity.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/ContentEntity.php index 98640c8..21ebcb2 100644 --- a/core/modules/migrate_drupal/src/Plugin/migrate/source/ContentEntity.php +++ b/core/modules/migrate_drupal/src/Plugin/migrate/source/ContentEntity.php @@ -210,7 +210,8 @@ protected function toArray(ContentEntityInterface $entity) { public function query() { $query = $this->entityTypeManager ->getStorage($this->entityType->id()) - ->getQuery(); + ->getQuery() + ->accessCheck(FALSE); if (!empty($this->configuration['bundle'])) { $query->condition($this->entityType->getKey('bundle'), $this->configuration['bundle']); }