最初のクエリをスパンする
フィールドの先頭近くにあるスパンに一致します。以下はその例です:
Python
resp = client.search(
query={
"span_first": {
"match": {
"span_term": {
"user.id": "kimchy"
}
},
"end": 3
}
},
)
print(resp)
Ruby
response = client.search(
body: {
query: {
span_first: {
match: {
span_term: {
'user.id' => 'kimchy'
}
},
end: 3
}
}
}
)
puts response
Js
const response = await client.search({
query: {
span_first: {
match: {
span_term: {
"user.id": "kimchy",
},
},
end: 3,
},
},
});
console.log(response);
コンソール
GET /_search
{
"query": {
"span_first": {
"match": {
"span_term": { "user.id": "kimchy" }
},
"end": 3
}
}
}
match
句は他のスパンタイプのクエリである可能性があります。end
は一致で許可される最大終了位置を制御します。