web-dev-qa-db-ja.com

EntityFieldQueryクエリ条件を使用する場合のempty(Null)フィールドの除外

Xyzフィールドが空のエンティティをすべて選択することはできますか?

私はこのようなものを試してみました:

->fieldCondition('field_name', 'value', NULL, 'IS NOT NULL');

ただし、これは機能していないようです。

何か案は?

30
David Barratt

fieldCondition のドキュメントページを見ると、次の警告が表示されます。

このメソッドを使用すると、空のフィールド値を持つエンティティはEntityFieldQueryの結果から除外されることに注意してください。

Drupal 8でentityFieldQueryにフィールドが存在するかどうかを確認していますが、残念ながら Drupal 7)にバックポートされません =。

これを実現するには、さまざまな方法があります。

  1. @Cliveで言及されているタグとhook_query_TAG_alterを使用して、例については Drupal issue のコメント4)を参照してください。
  2. @seddonymの回答と Drupal issue のコメント5)に記載されているように、最初にすべての非NULLエントリをクエリし、次に以前のエントリを除くすべてのエントリをクエリします。
  3. EntityfieldQueryよりも SelectQuery rathenを使用してクエリを記述できます。

_

$q = db_select('node', 'n');
$q->fields('n', array('type'))
  ->condition('n.type', 'my_node_type', '=')
  ->addJoin('LEFT', 'field_data_field_my_field', 'f', 'f.entity_id = n.nid');
$q->isNull('f.value');
$r = $q->execute();
19
Alice Heaton

!= NULLは使用できますが、何らかの理由で= NULLを使用できません。

これが私の回避策です。

  //Get all the entities that DO have values
  $query = new EntityFieldQuery();
  $query->entityCondition('entity_type', 'MY_TYPE')
    ->fieldCondition('field_MY_FIELD', 'value', 'NULL', '!=');
  $result = $query->execute();

  if (is_array(@$result['registration'])) {
    //Now get all the other entities, that aren't in the list you just retrieved
    $query = new EntityFieldQuery();
    $query->entityCondition('entity_type', 'MY_TYPE')
      ->entityCondition('entity_id', array_keys($result['MY_TYPE']), 'NOT IN');
    $result_two = $query->execute(); 
  }
15
seddonym

簡単に言えば、直接はできません( EntityFieldQueryはisNullまたはisNotNull をサポートしていません)を参照してください)。私が正しく覚えている場合、これはEntityFieldQueryが_INNER JOIN_ sのみを使用してテーブルを結合するという事実の副作用です。

hook_query_TAG_alter() を使用してEntityFieldQueryにタグを追加することを含む回避策がありますが、上記にリンクしたページの最後のコメントの例。

10
Clive

ドキュメントによると nullとisnullを使用できます。それはそれを書くための特定の方法を持っています。

$query = new EntityFieldQuery();
$query->entityCondition('entity_type', 'node')
  ->entityCondition('bundle', 'article')
  ->propertyCondition('status', 1)
  ->fieldCondition('field_news_types', 'value', 'spotlight', '=')
  ->fieldCondition('field_photo', 'fid', 'NULL', '!=')
  ->fieldCondition('field_faculty_tag', 'tid', $value)
  ->fieldCondition('field_news_publishdate', 'value', $year. '%', 'like')
  ->range(0, 10)
  ->addMetaData('account', user_load(1)); // run the query as user 1

$result = $query->execute();

if (isset($result['node'])) {
  $news_items_nids = array_keys($result['node']);
  $news_items = entity_load('node', $news_items_nids);
}
10
giorgio79

Drupal 7で、提案されている次の回避策を確認してください ここ

タグを登録してクエリインスタンスを変更します。

<?php
/**
 * Implements hook_query_TAG_alter()
 */
function MYMODULE_query_node_is_not_tagged_alter(QueryAlterableInterface $query) {
  $query->leftJoin('field_data_field_tags', 'o', 'node.nid = o.entity_id AND o.entity_type = :entity_type');
  $query->isNull('o.field_tags_tid');
}
?>

Obs .:このクエリタグの変更は、「ノード」エンティティタイプに対してのみ機能します。 「タグ」語彙に関連する「field_tags」を混同しないでください。「Categories」のような他のものにすることができます。

EntityFieldQueryを使用して、タグが付けられていないすべてのノードを取得し、addTag()メソッドを確認します。

<?php
$query = new EntityFieldQuery();
$query->entityCondition('entity_type', 'node')
  ->entityCondition('bundle', 'news')
  ->addTag('node_is_not_tagged')
  ->propertyCondition('status', 1);
$result = $query->execute();
?>

その他の例:

  $result = $query
    ->entityCondition('entity_type', 'node')
    ->propertyCondition('type', 'my_content_type')
    ->fieldCondition('field_mine_one', 'value', '', '<>')
    ->fieldCondition('field_mine_two', 'value', '', '<>')
    ->addTag('my_custom_tag')
    ->deleted(FALSE)
    ->propertyOrderBy('changed', 'DESC')
    ->range(0, $my_range_value)
    ->execute();

次に、hook_query_TAG_alterという事実を利用してmy_custom_tagは私だけが設定します。

/**
 * Implements hook_query_TAG_alter()
 */
function MYMODULE_query_TAG_alter(QueryAlterableInterface $query) {
  $query->leftJoin('field_data_field_other', 'o', 'node.nid = o.entity_id');
  $query->isNull('o.field_other_value');
}

もう一つの例:

<?php
  //Get all the entities that DO have values
  $query = new EntityFieldQuery();
  $query->entityCondition('entity_type', 'MY_TYPE')
    ->fieldCondition('field_MY_FIELD', 'value', 'NULL', '!=');
  $result = $query->execute();

  if (is_array(@$result['registration'])) {
    //Now get all the other entities, that aren't in the list you just retrieved 
    $query = new EntityFieldQuery();
    $query->entityCondition('entity_type', 'MY_TYPE')
      ->entityCondition('entity_id', array_keys($result['MY_TYPE']), 'NOT IN');
    $result_two = $query->execute();  
  }
?>

分類用語の参照を空にし、いくつかの変更を適用するcronタスクに一連のノードをロードする、以下のより完全な例:

/**
 * Implements hook_cron().
 */
function MYMODULE_cron() {
  $query = new EntityFieldQuery();
  $query
    ->entityCondition('entity_type', 'node')
    ->entityCondition('bundle', 'property')
    ->propertyOrderBy('changed', 'DESC')
    ->addTag('type_is_null')
    ->range(0,50); // Maximum of 50.
  $result = $query->execute();

  if (!empty($result['node'])) {
    $nids = array_keys($result['node']);
    $nodes = node_load_multiple($nids);

    foreach ($nodes as $node) {
      // do_some_stuff($node);
    }
  }
}

/**
 * Implements hook_query_TAG_alter()
 */
function MYMODULE_query_type_is_null_alter(QueryAlterableInterface $query) {
  $query->leftJoin('field_data_field_foo', 'f', 'node.nid = f.entity_id AND f.entity_type = :entity_type');
  $query->isNull('f.field_foo_tid'); // Check name by SQL: DESC field_data_field_foo

  $query->leftJoin('field_data_field_bar', 'b', 'node.nid = b.entity_id AND b.entity_type = :entity_type');
  $query->isNull('b.field_bar_tid'); // Check name by SQL: DESC field_data_field_bar
}
5
kenorb

Nullを引用符で囲む必要があります。

->fieldCondition('field_name', 'value', 'NULL', '!=');
3
Sharique

私が間違っていたら訂正してください。それは単にする必要があるようです

$query->fieldCondition('field_name');

空のfield_nameフィールドo_Oを持つすべてのノードを除外するには

Drupal version >= 7.43

2
leymannx