Blame view

docs/ES常用表达式.md 376 Bytes
8cff1628   tangwang   tenant2 1w测试数据 mo...
1
2
3
4
5
6
7
8
9
  GET /search_products/_search
  {
    "query": {
      "term": {
        "tenant_id": "2"
      }
    }
  }
  
577ec972   tangwang   返回给前端的字段、格式适配。主要包...
10
11
12
13
14
15
16
17
18
19
20
  
  curl -u 'essa:4hOaLaf41y2VuI8y'   -X GET 'http://localhost:9200/search_products/_search?pretty'   -H 'Content-Type: application/json'   -d '{
      "size": 5,
      "query": {
        "bool": {
          "filter": [
            { "term": { "tenant_id": "162" } }
          ]
        }
      }
    }'