qdrant_points_scroll
Retrieve paginated points from a Qdrant collection with optional filters; use next_page_offset to fetch the next page until null indicates completion.
Instructions
Page through all points in a collection, optionally filtered.
Pass the returned `next_page_offset` as `offset` to fetch the next
page; `null` means there are no more pages.
Example: {"collection_name": "docs", "limit": 50}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| offset | No | ||
| with_payload | No | ||
| with_vectors | No | ||
| scroll_filter | No | ||
| collection_name | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| points | Yes | ||
| next_page_offset | Yes |