0 Pluspunkte 0 Minuspunkte

Ich habe das Feld "field1" zu einem Textfeld gemacht. Wie kann ich eine Wildcard Maske zur Suche verwenden?

curl -X GET "https://localhost:9200/mein_index/_search" -H "Content-Type: application/json" -d "{ \"query\": { \"match\": { \"field1\": \"test*\" } } }" -u elastic:xxxxx
von  

1 Antwort

0 Pluspunkte 0 Minuspunkte

Statt

"query": "match"

sollte es

"query": "wildcard"

sein.

von