ExportRecords
Export database records to CSV format with filtering, sorting, and limit options for data analysis and reporting.
Instructions
Export records to CSV format
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| labels | No | Filter by record labels | |
| limit | No | Maximum number of records to export | |
| orderBy | No | Sorting configuration for export | |
| where | No | Search conditions for records to export |
Input Schema (JSON Schema)
{
"properties": {
"labels": {
"description": "Filter by record labels",
"items": {
"type": "string"
},
"type": "array"
},
"limit": {
"description": "Maximum number of records to export",
"type": "number"
},
"orderBy": {
"additionalProperties": {
"enum": [
"asc",
"desc"
],
"type": "string"
},
"description": "Sorting configuration for export",
"type": "object"
},
"where": {
"description": "Search conditions for records to export",
"type": "object"
}
},
"required": [],
"type": "object"
}