本文整理汇总了PHP中Worker::searchByQuery方法的典型用法代码示例。如果您正苦于以下问题:PHP Worker::searchByQuery方法的具体用法?PHP Worker::searchByQuery怎么用?PHP Worker::searchByQuery使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Worker
的用法示例。
在下文中一共展示了Worker::searchByQuery方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: searchWorkers
/**
* Поиск сотрудников
* @param string $query
* @param integer $limit
* @return \Elasticquent\ElasticquentResultCollection
*/
public function searchWorkers(string $query, int $limit = 10)
{
return Worker::searchByQuery(['match' => ['search' => ['query' => $query, 'operator' => 'and']]], null, null, $limit)->load('organization');
// $result = Worker::searchByQuery(
// ['match' => [
// 'search' => [
// 'query' => $query,
// 'operator' => 'and',
// ]
// ]],
//
// ['orgs' => [
// 'terms' => [
// 'field' => 'organization_id',
// 'size' => 10
// ],
// 'aggregations' => [
// 'fio' => [
// 'terms' => [
// 'field' => 'fio',
// ],
// 'aggregations' => [
// 'top' => [
// 'top_hits' => [
// 'size' => 1
// ]
// ]
// ]
// ]
// ]
// ]], null, 0
// );
//
// $ids = [];
// $aggregations = $result->getAggregations();
// foreach($aggregations['orgs']['buckets'] as $data) {
// foreach($data['fio']['buckets'] as $data2) {
// $ids[] = $data2['top']['hits']['hits'][0]['_id'];
// }
// }
// $ids = array_slice($ids, 0, 20);
//
// return Worker::whereIn('id', $ids)->with('organization')->get();
}