如何在drupal8中获取最新的Web表单列表?当前没有过滤器来获取要排序的Web表单列表。当前我正在使用category
$query = Drupal::service('entity.query')->get('webform');
$query->condition('category', 'survey');
$entity_ids = $query->execute();
$webform_id=array();
foreach($entity_ids as $webid){
$webform_id[]=$webid;
//$query->id();
}