0

如何在 Vuestorefront 上运行 elasticsearch 查询?我有以下查询:

curl -XGET "http://localhost:9200/vue_storefront_catalog_1_product/_search?pretty=true" -H 'Content-Type: application/json' -d'{
  "aggs": {
    "MySearch": {
      "terms": {
        "field": "Fruits.keyword",
        "order": {
          "_count": "asc"
        },
        "size": "15"
      }
    }
  }
}'

我想要我的 VSF 上的数据。

4

0 回答 0