elasticsearch icon indicating copy to clipboard operation
elasticsearch copied to clipboard

How to use for nested query?

Open sridharkalaibala opened this issue 9 years ago • 0 comments

I have query like following...

{ "nested" : { "path" : "features", "query" : { "bool": { "should": [ { "match": { "features.Brand": "Louis Philippe" }}, { "match": { "features.Brand": "Allen Solly" }}, { "match": { "features.Occasion": "Casual" }}

                                      ]
                                    }
                            }
                        }

                    }     

following php code it not working...

$this->searchParams['body']['query']['bool']['should'][]['match']['features.Brand'] = $value;

sridharkalaibala avatar Oct 07 '14 06:10 sridharkalaibala