Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
popular_query.php
Go to the documentation of this file.
1 <?php
7 
9 $query = $objectManager->create(\Magento\Search\Model\Query::class);
10 $query->setStoreId(1);
11 $query->setQueryText(
12  'popular_query_text'
13 )->setNumResults(
14  1
15 )->setPopularity(
16  100
17 )->setDisplayInTerms(
18  1
19 )->setIsActive(
20  1
21 )->setIsProcessed(
22  1
23 )->save();