fix:set search after []string to []interface

This commit is contained in:
Hardy 2021-03-02 13:30:39 +08:00
parent 09acfd6a3d
commit bdfe2df171
1 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ type SearchRequest struct {
explain *bool explain *bool
from *uint64 from *uint64
highlight Mappable highlight Mappable
searchAfter []string searchAfter []interface{}
postFilter Mappable postFilter Mappable
query Mappable query Mappable
size *uint64 size *uint64
@ -76,7 +76,7 @@ func (req *SearchRequest) Sort(name string, order Order) *SearchRequest {
} }
// SearchAfter retrieve the sorted result // SearchAfter retrieve the sorted result
func (req *SearchRequest) SearchAfter(s ...string) *SearchRequest { func (req *SearchRequest) SearchAfter(s ...interface{}) *SearchRequest {
req.searchAfter = append(req.searchAfter, s...) req.searchAfter = append(req.searchAfter, s...)
return req return req
} }