function User::query
Return value
\Drupal\Core\Database\Query\SelectInterface
Overrides SqlBase::query
File
- 
              core/modules/ user/ src/ Plugin/ migrate/ source/ d7/ User.php, line 21 
Class
- User
- Drupal 7 user source from database.
Namespace
Drupal\user\Plugin\migrate\source\d7Code
public function query() {
  return $this->select('users', 'u')
    ->fields('u')
    ->condition('u.uid', 0, '>');
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
