Interface MatchAllCondition

匹配所有文档

Example


import * as es from 'es'
let client=es.newClient('axis_esClient')
let matchAll: es.MatchAllCondition = {
}
let querydsl:es.Query={
"match_all":matchAll
}
let cnt = client.updateByQuery("indexName", querydsl, "newScript")
interface MatchAllCondition {
    boost?: number;
}

Properties

Properties

boost?: number

boost: 浮点数,用作与筛选器查询匹配的每个文档的常量相关性分数。