Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save zuhairkareem/1cfe196c3799e24b88e399d6dbb3cbad to your computer and use it in GitHub Desktop.
Save zuhairkareem/1cfe196c3799e24b88e399d6dbb3cbad to your computer and use it in GitHub Desktop.
Get all the users with particulare role.
$query = \Drupal::service('entity_type.manager')->getStorage('user')->getQuery();
$query->condition('roles', 'administrator');
$query->execute();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment