Multi-valued search syntax?

Greetings,

What I need is a match_phrase_prefix on a single field AND a normal match
for text on any field. I have tried a lot of scenarios. Here is one of my
latest:

curl -s -XGET 'http://localhost:9200/components/_search' -d '{
    "size": 20000,
    "query": {
            "bool": {
                "must": [
                    "match_phrase_prefix" : {
                        "classifications" : "myClass",
                    },
                    "match" : {
                        "_all" : "abcde",
                    }
                ]
            }
        }
    }
' 

I have tried many permutations of this with no success. Help would surely
be appreciated.

Blake McBride

--
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 elasticsearch+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/f70d652c-a583-4dde-9a33-845fdab26ef0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Tried this, right out of the box. Same SearchParseError.

curl -s -XGET 'http://localhost:9200/components/_search' -d '{
    "size": 20000,
    "query": {
            "bool": {
                "must": [
                    {"match_phrase_prefix" : {
                        "classifications" : "passive_components",
                    }},
                    {"match" : {
                        "_all" : "1000",
                    }}
                ]
            }
        }
    }
' |underscore pretty

--
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 elasticsearch+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/c3b42add-c2ce-448d-a3ea-0e5ce0a6742a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.