EntityFieldQueryクエリ条件を使用するときに空の(Null)フィールドを除外する


31

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

私はこのようなことを試しました:

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

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

何か案は?

回答:


19

あなたが上で見ればfieldConditionのドキュメントページ次の警告が表示されます。

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

Drupal 8のentityFieldQueryにフィールドが存在するかどうかのチェックが追加されましたが、残念ながらDrupal 7にバックポートされません

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

  1. @Cliveで言及されているタグとhook_query_TAG_alterを使用して、例についてはDrupalの問題に関するコメント4を参照してください。
  2. @seddonymの回答とDrupalの問題に関するコメント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();

15

を使用できますが!= 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(); 
  }

10

ドキュメントによると、 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);
}

9

簡単な答えは、直接できない、できないことです(EntityFieldQueryがisNullまたはisNotNullをサポートしていないを参照)。正しく覚えていれば、これはs EntityFieldQueryのみを使用してINNER JOINテーブルを結合するという事実の副作用です。

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


5

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」を混同しないでください。「カテゴリ」のような他のものでも構いません。

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
}

3

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

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

2

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

$query->fieldCondition('field_name');

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

Drupalでテスト済みversion >= 7.43


それは実際に動作します。彼らは、より多くの賛成の答えがエラーを出していました(エラーを表示させることはできませんでしたが、すべてを壊していました)。
ジョレン
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.