Created
June 8, 2022 17:02
-
-
Save wodsonluiz/98c3620aac2e7cd6fdec6d1bc65d58ee to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#Exemplo 1 | |
GET pessoas_test_v2/_search/?q=estado:MG | |
#Exemplo 2 | |
GET pessoas_test_v2/_search | |
{ | |
"query": { | |
"term": { | |
"estado.original": { | |
"value": "MG" | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment