如何使用Postman和ElasticSearch将过滤器添加到请求正文中?

时间:2018-11-29 16:14:53

标签: elasticsearch postman

我想用Postman从数据库中提取数据。我只需要访问job = true这样的对象:

  "hits": {
    "total": 25,
    "max_score": 1,
    "hits": [
        {
            "_index": "realIndex",
            "_type": "superType",
            "_id": "1",
            "_score": 1,
            "_source": {
                "name": "mike",
                "job": true,
              }

我可以在邮递员身上贴一个这样的尸体吗?

    body: JSON.stringify({
    query: {
      bool: {
        filter: [{ term: { job: true } }],
      },
    },
    size: 20,
  }),

0 个答案:

没有答案