diff --git a/readme.md b/readme.md index 1d390e6..73c2a58 100755 --- a/readme.md +++ b/readme.md @@ -580,13 +580,19 @@ $documents = ES::search("bar")->paginate(5); $documents->links(); ``` - + ##### Getting the query array without execution ```php $query = ES::search("foo")->where("views", ">", 150)->query(); ``` +##### Getting the original elasticsearch response + +```php +$query = ES::search("foo")->where("views", ">", 150)->response(); +``` + ##### Ignoring bad HTTP response ```php