Answers for "drupal entity query get entity"

PHP
0

drupal 8 entity query

$ids = Drupal::entityQuery('entityType')
  ->condition('status', 1)
  ->condition('conditionKey', 'ConditionValue')
  ->execute();
Posted by: Guest on September-12-2021

Browse Popular Code Answers by Language