ここに私の検索オブジェクトがあります:
{
"_index": "search",
"_type": "product",
"_id": "2",
"_version": 1,
"found": true,
"_source": {
"datePublished": "2014-01-01T00:00:00-08:00",
"published": true,
"name": "Winter Coat",
"description": "A nice warm winter coat. If you get cold with this on, you've probably done something wrong.",
"brand": {
"name": "Burton"
}
}
}
そして、ここに私が実行しようとしているクエリがあります:
$query = new Query\QueryString('*' . 'winter' .'*');
$boolFilter = new Bool();
$brandFilter = new Term(['brand.name' => 'Burton']);
$boolFilter->addMust($brandFilter);
$filtered = new Filtered($baseQuery, $boolFilter);
return Query::create($filtered);
しかし、私は何も戻っていません。私は何を間違っていますか?