You are here

public function StreamingExpressionBuilder::_index_filter_query in Search API Solr 8.2

Same name and namespace in other branches
  1. 8.3 src/Utility/StreamingExpressionBuilder.php \Drupal\search_api_solr\Utility\StreamingExpressionBuilder::_index_filter_query()
  2. 4.x src/Utility/StreamingExpressionBuilder.php \Drupal\search_api_solr\Utility\StreamingExpressionBuilder::_index_filter_query()

Returns a Solr filter query to limit results to the current index.

Return value

string The filter query ready to use for the 'fq' parameter.

File

src/Utility/StreamingExpressionBuilder.php, line 513

Class

StreamingExpressionBuilder
Provides methods for creating streaming expressions targeting a given index.

Namespace

Drupal\search_api_solr\Utility

Code

public function _index_filter_query() {
  return $this->index_filter_query;
}