Skip to content

Latest commit

 

History

History
19 lines (18 loc) · 366 Bytes

5553cf7a02c22f616cd994747f2dd5a5.asciidoc

File metadata and controls

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