diff --git a/README.md b/README.md index bcd0876..41bc6f1 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ [](LICENSE) [](tests/) -Write `INSERT`, `SEARCH`, `SCROLL`, `RECOMMEND`, `DELETE`, and `CREATE COLLECTION` statements instead of Python SDK calls. Supports hybrid dense+sparse vector search, cross-encoder reranking, quantization (scalar, turbo, binary, product), SQL-style `WHERE` filters, script execution, and collection dump/restore. +Write `INSERT`, `SELECT`, `SEARCH`, `SCROLL`, `RECOMMEND`, `DELETE`, and `CREATE COLLECTION` statements instead of Python SDK calls. Supports hybrid dense+sparse vector search, cross-encoder reranking, quantization (scalar, turbo, binary, product), SQL-style `WHERE` filters, script execution, and collection dump/restore. ``` qql> INSERT INTO COLLECTION notes VALUES {'text': 'Qdrant is a vector database', 'author': 'alice', 'year': 2024} @@ -82,7 +82,7 @@ Full documentation lives in the [`docs/`](docs/) folder and at **[pavanjava.gith |---|---| | [Getting Started](docs/getting-started.md) | Installation, connecting, first queries | | [INSERT / INSERT BULK](docs/insert.md) | Adding documents, batch inserts, payload types | -| [SEARCH / SCROLL / RECOMMEND / Hybrid / RERANK](docs/search.md) | Semantic search, pagination, hybrid, reranking, recommendations | +| [SEARCH / SELECT / SCROLL / RECOMMEND / Hybrid / RERANK](docs/search.md) | Semantic search, point retrieval, pagination, hybrid, reranking, recommendations | | [WHERE Filters](docs/filters.md) | Full SQL-style filter operators | | [Collections & Quantization](docs/collections.md) | CREATE, DROP, QUANTIZE (scalar/turbo/binary/product), CREATE INDEX | | [Scripts: EXECUTE / DUMP](docs/scripts.md) | Script files, collection backup/restore | @@ -113,6 +113,9 @@ SCROLL FROM articles AFTER 'cursor-id' LIMIT 50 -- Recommend RECOMMEND FROM articles POSITIVE IDS (1001, 1002) LIMIT 5 +-- Select (retrieve a point by ID) +SELECT * FROM articles WHERE id = '3f2e1a4b-...' + -- Collections CREATE COLLECTION articles CREATE COLLECTION articles HYBRID diff --git a/docs/getting-started.md b/docs/getting-started.md index 1066f63..119b76d 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -143,6 +143,9 @@ SCROLL FROM notes LIMIT 10 -- List all collections SHOW COLLECTIONS + +-- Retrieve a point by ID +SELECT * FROM notes WHERE id = 1 ``` --- @@ -150,7 +153,7 @@ SHOW COLLECTIONS ## Next Steps - [INSERT / INSERT BULK](insert.md) — adding documents -- [SEARCH / SCROLL / RECOMMEND / Hybrid / RERANK](search.md) — querying +- [SEARCH / SELECT / SCROLL / RECOMMEND / Hybrid / RERANK](search.md) — querying - [WHERE Filters](filters.md) — payload filtering - [Collections & Quantization](collections.md) — managing collections - [Scripts: EXECUTE / DUMP](scripts.md) — automating with script files diff --git a/docs/index.html b/docs/index.html index 5a4b8af..f195910 100644 --- a/docs/index.html +++ b/docs/index.html @@ -148,8 +148,8 @@
Adding documents, batch inserts, payload types
-Semantic search, pagination, hybrid search, reranking, recommendations
+Semantic search, point retrieval, pagination, hybrid search, reranking, recommendations