fix filter example

This commit is contained in:
David Sertic
2023-06-27 20:58:46 +02:00
parent 23b1352300
commit 035e7e9e5f
@@ -249,7 +249,7 @@ from qdrant_client.models import Filter
"must": [{
"key": "city", # Store city information in a field of the same name
"match": { # This condition checks if payload field has the requested value
"keyword": city_of_interest
"value": "city_of_interest"
}
}]
})