resp = client.search(
index="my-index-000001",
body={
"query": {
"bool": {
"must": [
{"match": {"user.first": "Alice"}},
{"match": {"user.last": "Smith"}},
]
}
}
},
)
print(resp)