スパンまたはクエリ

そのスパン条項の和集合に一致します。以下は例です:

Python

  1. resp = client.search(
  2. query={
  3. "span_or": {
  4. "clauses": [
  5. {
  6. "span_term": {
  7. "field": "value1"
  8. }
  9. },
  10. {
  11. "span_term": {
  12. "field": "value2"
  13. }
  14. },
  15. {
  16. "span_term": {
  17. "field": "value3"
  18. }
  19. }
  20. ]
  21. }
  22. },
  23. )
  24. print(resp)

Ruby

  1. response = client.search(
  2. body: {
  3. query: {
  4. span_or: {
  5. clauses: [
  6. {
  7. span_term: {
  8. field: 'value1'
  9. }
  10. },
  11. {
  12. span_term: {
  13. field: 'value2'
  14. }
  15. },
  16. {
  17. span_term: {
  18. field: 'value3'
  19. }
  20. }
  21. ]
  22. }
  23. }
  24. }
  25. )
  26. puts response

Js

  1. const response = await client.search({
  2. query: {
  3. span_or: {
  4. clauses: [
  5. {
  6. span_term: {
  7. field: "value1",
  8. },
  9. },
  10. {
  11. span_term: {
  12. field: "value2",
  13. },
  14. },
  15. {
  16. span_term: {
  17. field: "value3",
  18. },
  19. },
  20. ],
  21. },
  22. },
  23. });
  24. console.log(response);

コンソール

  1. GET /_search
  2. {
  3. "query": {
  4. "span_or" : {
  5. "clauses" : [
  6. { "span_term" : { "field" : "value1" } },
  7. { "span_term" : { "field" : "value2" } },
  8. { "span_term" : { "field" : "value3" } }
  9. ]
  10. }
  11. }
  12. }

clauses要素は、1つ以上の他のスパンタイプのクエリのリストです。