Lesson 07← back to roadmap
If the filter is selective, the planner short-circuits through MetadataIndex before ever touching the vector index.
python
hits = docs.seek(
query=embed("alpha"),
top=10,
filter={
"kind": "design",
"year": {"$gte": 2023},
"tags": {"$in": ["draft", "review"]},
},
)EQL exposes the same filter grammar — see lesson 11.