ListRecords
Retrieve records from a specified collection in Astra DB, with options to limit the number of results returned for efficient data management.
Instructions
List records from a collection in the database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collectionName | Yes | Name of the collection to list records from | |
limit | No | Maximum number of records to return |
Input Schema (JSON Schema)
{
"properties": {
"collectionName": {
"description": "Name of the collection to list records from",
"type": "string"
},
"limit": {
"default": 10,
"description": "Maximum number of records to return",
"type": "number"
}
},
"required": [
"collectionName"
],
"type": "object"
}