Skip to content

Delete Entities with Drush

Willi edited this page Apr 10, 2018 · 1 revision
drush eval '$nids = \Drupal::entityQuery('<entity_type>')->execute();
$storage = Drupal::entityTypeManager()->getStorage('<entity_type>');
$e = $storage->loadMultiple($nids);
$storage->delete($e);'