Skip to content

KeybaseListAllTopicsForSpecificTeam

KeybaseListAllTopicsForSpecificTeam

GET /keybase-*/_search
{   
  "query": {
    "bool": {
      "must": [
          { "match": {
              "msg.channel.name": {"query": "dentropydaemon"}
              }
          }
      ]
    }
  },
  "aggs": {
    "topics": {
        "terms": {
            "field": "msg.channel.topic_name",
            "size": 250
        },
        "aggs" : {
          "teams": {
              "terms": {
                  "field": "msg.channel.name"
              }
          }
        }
    }
  },
  "size":0
}