Skip to content

Latest commit

 

History

History
64 lines (56 loc) · 850 Bytes

query.adoc

File metadata and controls

64 lines (56 loc) · 850 Bytes

Queries

{
  "author-suggest": {
    "prefix": "query here",
    "completion": {
      "field": "author"
    }
  }
}
{
  "author-suggest": {
    "prefix": "query here",
    "completion": {
      "field": "author",
      "contexts": {
        "genre": "genre here"
      }
    }
  }
}
{
  "query": {
    "match": {
      "author_name": {
        "query": "your query here",
        "fuzziness": 2,
        "operator": "and"
      }
    }
  }
}