Drupal8 exists() or notExists()

$query = \Drupal::entityQuery('node'); 
$untagged_articles = $query->condition('type', 'article') 
->notExists('field_tags') 
->execute();