Filip Horvat

Results 3 issues of Filip Horvat

actually this ``` select `street`.`` as `__f__street---`, `type`.`` as `__f__street---__f__type---`, `district`.`` as `__f__street---__f__district---`, `street_images`.* from `street_images` left join `streets` as `street` on `street`.`id` = `street_images`.`street_id` left join `street_types` as `type`...

I have : ``` $matchQuery = new MatchQuery(); $matchQuery->setField('testString, 'test'); $query->addShould($matchQuery); ``` and that gives me: ``` "query": { "bool": { "should": [ { "match": { "testString": "test" } }...