I'm currently doing a query that's a mix of multi match and function score. 
The important bit of the JSON looks like this:

        "function_score":{
            "query":{
                "query_string":{
                    "query":"some query",
                    
"fields":["id","name","strippedDescription","colourSearch","sizeSearch"]
                }
            }
        }

However, I also want to include results that don't necessarily match the 
query but have a particular numeric value that's greater than 0. I think a 
bool query would do this, but I don't know how to use a bool query with a 
function score query.

I understand that a multi match query is just shorthand for a bool query, 
and I could expand out the multi match query into its bool counter-part, 
however, I then don't know how I would do function score within that.

Any ideas? I'm on version 1.1.0 by the way.

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/4279a874-eef8-47ec-9f49-f91efed1f851%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to