QueryName sets the query name for the filter that can be used when searching for matched_filters per hit.
(queryName string)
| 77 | // QueryName sets the query name for the filter that can be used when |
| 78 | // searching for matched_filters per hit. |
| 79 | func (q *SimpleQueryStringQuery) QueryName(queryName string) *SimpleQueryStringQuery { |
| 80 | q.queryName = queryName |
| 81 | return q |
| 82 | } |
| 83 | |
| 84 | // Analyzer specifies the analyzer to use for the query. |
| 85 | func (q *SimpleQueryStringQuery) Analyzer(analyzer string) *SimpleQueryStringQuery { |
nothing calls this directly
no outgoing calls
no test coverage detected