# Discord bot

  GET gossiping-v1/_mapping
PUT gossiping-v1
{
    "mappings": {
        "properties": {
        "question":{
            "type": "text",
            "analyzer": "ik_max_word",
            "fields": {
                "keyword":{
                    "type":"keyword"
                }
          }
        },
        "answer":{
            "type": "text",
            "analyzer": "ik_max_word",
            "fields": {
            "keyword":{
                "type":"keyword"
            }
          }
        }
      }
    }
}
POST gossiping-*/_search
{
  "query": {
    "bool": {
      "must": [
        {"match": {
          "answer": "GIS"
        }}
      ]
    }
  }
}