File: search_queries_raw_string.go

package info (click to toggle)
golang-gopkg-olivere-elastic.v5 5.0.83-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 2,848 kB
  • sloc: makefile: 18; sh: 2
file content (26 lines) | stat: -rw-r--r-- 821 bytes parent folder | download | duplicates (2)
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
// Copyright 2012-present Oliver Eilhard, John Stanford. 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

import "encoding/json"

// RawStringQuery can be used to treat a string representation of an ES query
// as a Query.  Example usage:
//    q := RawStringQuery("{\"match_all\":{}}")
//    db.Search().Query(q).From(1).Size(100).Do()
type RawStringQuery string

// NewRawStringQuery ininitializes a new RawStringQuery.
// It is the same as RawStringQuery(q).
func NewRawStringQuery(q string) RawStringQuery {
	return RawStringQuery(q)
}

// Source returns the JSON encoded body
func (q RawStringQuery) Source() (interface{}, error) {
	var f interface{}
	err := json.Unmarshal([]byte(q), &f)
	return f, err
}