Created
April 14, 2022 11:21
-
-
Save quoeamaster/4fd47af2611aac927d466c9825bb17be to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
POST courses-03/_bulk | |
{"index":{"_id":"A123"}} | |
{"comments":"if you think the course is nice and wanna comment, please send an email to -> [email protected] or [email protected] . Thx~"} | |
{"index":{"_id":"b1234"}} | |
{"comments":"Shout out to the great instructors [email protected] and [email protected]"} | |
{"index":{"_id":"cy7L"}} | |
{"comments":"welcome [email protected] to join the training team"} | |
/* no results */ | |
GET courses-03/_search | |
{ | |
"query": { | |
"match": { | |
"comments": "donna" | |
} | |
} | |
} | |
/* searchable through partial email address values (e.g. donna) */ | |
GET courses-03/_search | |
{ | |
"query": { | |
"match": { | |
"comments.email": "donna" | |
} | |
}, | |
"highlight": { | |
"fields": { | |
"comments.email": {} | |
} | |
} | |
} | |
/* only searchable if providing the full exact email address */ | |
GET courses-03/_search | |
{ | |
"query": { | |
"match": { | |
"comments": "[email protected]" | |
} | |
}, | |
"highlight": { | |
"fields": { | |
"comments": {} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment