query_eta_data
Query MongoDB collections in the eta_raw_data_db database (read-only) using filters, sorting, pagination, and field projections to retrieve specific data.
Instructions
Query data from a collection in the eta_raw_data_db MongoDB database (read-only)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| skip | No | Number of documents to skip (for pagination) | |
| sort | No | Sort specification (e.g., {timestamp: -1} for descending by timestamp) | |
| limit | No | Maximum number of documents to return (default: 100, max: 1000) | |
| query | No | MongoDB query filter (optional, defaults to {} for all documents) | |
| collection | Yes | Name of the collection to query | |
| projection | No | Fields to include/exclude (e.g., {name: 1, _id: 0}) |