Запрос span first
Сопоставляет span в начале поля. Вот пример:
resp = client.search(
query={
"span_first": {
"match": {
"span_term": {
"user.id": "kimchy"
}
},
"end": 3
}
},
)
print(resp) response = client.search(
body: {
query: {
span_first: {
match: {
span_term: {
'user.id' => 'kimchy'
}
},
end: 3
}
}
}
)
puts response 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 может быть любого другого типа span-запроса. end управляет максимальной конечной позицией, разрешенной для соответствия.
© 2023-2025 Elasticsearch
As of September 2024, Elasticsearch is available under a choice of three licenses: the Server Side Public License (SSPL), the Elastic License, or the AGPLv3 (OSI approved).
Elasticsearch and the Elasticsearch logo are trademarks of Elasticsearch B.V., registered in the U.S. and in other countries.
https://www.elastic.co/guide/en/elasticsearch/reference/8.17/query-dsl-span-first-query.html