fadion / Bouncy

Map Elasticsearch results to Eloquent models
MIT License
71 stars 26 forks source link

Date Range not working #26

Closed vikram0460 closed 7 years ago

vikram0460 commented 7 years ago

After indexing i have tried to get the results for the date range, but it is not giving any results. $params = [ 'query' => [ 'match_all' => [] ], 'filter' => [ 'range' => [ 'created_at' => [ 'gte' => '2017-06-18', 'lte' => '2017-06-19' ] ] ], 'size' => 10 ];

vikram0460 commented 7 years ago

It is my bad. I missed to map the properties at the first thing. Thanks @fadion for the great tool.