function ContentEntity::query
Query to retrieve the entities.
Return value
\Drupal\Core\Entity\Query\QueryInterface The query.
File
- 
              core/modules/ migrate_drupal/ src/ Plugin/ migrate/ source/ ContentEntity.php, line 228 
Class
- ContentEntity
- Source plugin to get content entities from the current version of Drupal.
Namespace
Drupal\migrate_drupal\Plugin\migrate\sourceCode
public function query() {
  $query = $this->entityTypeManager
    ->getStorage($this->entityType
    ->id())
    ->getQuery()
    ->accessCheck(FALSE);
  if (!empty($this->configuration['bundle'])) {
    $query->condition($this->entityType
      ->getKey('bundle'), $this->configuration['bundle']);
  }
  // Exclude anonymous user account.
  if ($this->entityType
    ->id() === 'user' && !empty($this->entityType
    ->getKey('id'))) {
    $query->condition($this->entityType
      ->getKey('id'), 0, '>');
  }
  return $query;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
