Translating filter range query into query string

Hi there,

I would like to translate this query into a query string :

{
  "query": { 
    "bool": {
      "filter": [ 
        { "range": { "meta._sale_price.value": { 
                "gte" : 1,
                "lte" : 10,
                "boost" : 2.0 }}} 
      ]
    }
  }
} 

I have tried the following per https://www.elastic.co/guide/en/elasticsearch/reference/6.3/query-dsl-query-string-query.html

q=meta._sale_price.value%3A[1%20TO%2010]

Unfortunately i get no results, can someone please provide some guidance to achieve this?

Thanks a lot in advance

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.