internal/pkg/dsl/keyword.go (28 lines of code) (raw):
// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
// or more contributor license agreements. Licensed under the Elastic License;
// you may not use this file except in compliance with the Elastic License.
package dsl
const (
kKeywordAggs = "aggs"
kKeywordBool = "bool"
kKeywordBoost = "boost"
kKeywordExcludes = "excludes"
kKeywordExists = "exists"
kKeywordField = "field"
kKeywordFilter = "filter"
kKeywordGreaterThan = "gt"
kKeywordIncludes = "includes"
kKeywordLessThanEq = "lte"
kKeywordMatchAll = "match_all"
kKeywordMatchNone = "match_none"
kKeywordMax = "max"
kKeywordMust = "must"
kKeywordMustNot = "must_not"
kKeywordNULL = "null"
kKeywordParams = "params"
kKeywordQuery = "query"
kKeywordScript = "script"
kKeywordSize = "size"
kKeywordSort = "sort"
kKeywordSource = "_source"
kKeywordTerm = "term"
kKeywordTerms = "terms"
kKeywordTopHits = "top_hits"
)