You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How to use trem query,
The format required in the sdk is
map[string]map[string]interface{}
// SetTerms gets a reference to the given map[string]map[string]interface{} and assigns it to the Terms field. func (o *MetaQuery) SetTerms(v map[string]map[string]interface{}) { o.Terms = &v }
report error
reason: [terms] doesn't support values of type: map[string]interface {}"}
How to use trem query,
The format required in the sdk is
map[string]map[string]interface{}
// SetTerms gets a reference to the given map[string]map[string]interface{} and assigns it to the Terms field. func (o *MetaQuery) SetTerms(v map[string]map[string]interface{}) { o.Terms = &v }
report error
reason: [terms] doesn't support values of type: map[string]interface {}"}
Check out the zincsearch code
https://github.com/zincsearch/zincsearch/blob/main/pkg/uquery/query/terms.go
The required format is
query map[string]interface{}
how to use ?
The text was updated successfully, but these errors were encountered: