forked from olivere/elastic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
search_queries_has_parent.go
83 lines (73 loc) · 2 KB
/
search_queries_has_parent.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// Copyright 2012-2015 Oliver Eilhard. All rights reserved.
// Use of this source code is governed by a MIT-license.
// See http://olivere.mit-license.org/license.txt for details.
package elastic
// The has_parent query works the same as the has_parent filter,
// by automatically wrapping the filter with a
// constant_score (when using the default score type).
// It has the same syntax as the has_parent filter.
// For more details, see
// http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/query-dsl-has-parent-query.html
type HasParentQuery struct {
query Query
parentType string
boost *float32
scoreType string
queryName string
innerHit *InnerHit
}
// NewHasParentQuery creates a new has_parent query.
func NewHasParentQuery(parentType string, query Query) HasParentQuery {
q := HasParentQuery{
query: query,
parentType: parentType,
}
return q
}
func (q HasParentQuery) Boost(boost float32) HasParentQuery {
q.boost = &boost
return q
}
func (q HasParentQuery) ScoreType(scoreType string) HasParentQuery {
q.scoreType = scoreType
return q
}
func (q HasParentQuery) QueryName(queryName string) HasParentQuery {
q.queryName = queryName
return q
}
func (q HasParentQuery) InnerHit(innerHit *InnerHit) HasParentQuery {
q.innerHit = innerHit
return q
}
// Creates the query source for the ids query.
func (q HasParentQuery) Source() interface{} {
// {
// "has_parent" : {
// "parent_type" : "blog",
// "query" : {
// "term" : {
// "tag" : "something"
// }
// }
// }
// }
source := make(map[string]interface{})
query := make(map[string]interface{})
source["has_parent"] = query
query["query"] = q.query.Source()
query["parent_type"] = q.parentType
if q.boost != nil {
query["boost"] = *q.boost
}
if q.scoreType != "" {
query["score_type"] = q.scoreType
}
if q.queryName != "" {
query["_name"] = q.queryName
}
if q.innerHit != nil {
query["inner_hits"] = q.innerHit.Source()
}
return source
}