Span или запрос
Сопоставляет объединение своих span-клаузов. Вот пример:
resp = client.search(
query={
"span_or": {
"clauses": [
{
"span_term": {
"field": "value1"
}
},
{
"span_term": {
"field": "value2"
}
},
{
"span_term": {
"field": "value3"
}
}
]
}
},
)
print(resp) response = client.search(
body: {
query: {
span_or: {
clauses: [
{
span_term: {
field: 'value1'
}
},
{
span_term: {
field: 'value2'
}
},
{
span_term: {
field: 'value3'
}
}
]
}
}
}
)
puts response const response = await client.search({
query: {
span_or: {
clauses: [
{
span_term: {
field: "value1",
},
},
{
span_term: {
field: "value2",
},
},
{
span_term: {
field: "value3",
},
},
],
},
},
});
console.log(response); GET /_search
{
"query": {
"span_or" : {
"clauses" : [
{ "span_term" : { "field" : "value1" } },
{ "span_term" : { "field" : "value2" } },
{ "span_term" : { "field" : "value3" } }
]
}
}
} Элемент clauses представляет собой список одного или нескольких запросов другого типа span.
© 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-or-query.html