Day 2 Combining Vector Search and Filtering We’ve talked about how Qdrant uses the HNSW graph to efficiently search dense vectors. But in real-world applications, you’ll often want to constrain your search using filters. This creates unique challenges for graph traversal that Qdrant solves elegantly. The Challenge: Filters Break Graph Connectivity Consider retrieving items from an online store collection where you only want to show laptops priced under $1,000. That price information, alon...