Skip to content

Commit

Permalink
Fix quickstart for Python due to fetching payload by default (#1203)
Browse files Browse the repository at this point in the history
  • Loading branch information
agourlay authored Sep 25, 2024
1 parent 4593b53 commit f22c9a2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion qdrant-landing/content/documentation/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,10 @@ Let's ask a basic question - Which of our stored vectors are most similar to the

```python
search_result = client.query_points(
collection_name="test_collection", query=[0.2, 0.1, 0.9, 0.7], limit=3
collection_name="test_collection",
query=[0.2, 0.1, 0.9, 0.7],
with_payload=False,
limit=3
).points

print(search_result)
Expand Down

0 comments on commit f22c9a2

Please sign in to comment.