Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
QueryInterface.php
Go to the documentation of this file.
1 <?php
7 
14 interface QueryInterface
15 {
19  const TYPE_MATCH = 'matchQuery';
20 
21  const TYPE_BOOL = 'boolQuery';
22 
23  const TYPE_FILTER = 'filteredQuery';
24 
32  public function getType();
33 
39  public function getName();
40 
46  public function getBoost();
47 }