query-objects
Fetch Parse objects from a class using MongoDB-style filters, with sorting, pagination, field selection, and pointer inclusion.
Instructions
Query objects from a Parse class with filters, sorting, and pagination. Supports MongoDB-style query operators.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| skip | No | Number of results to skip for pagination | |
| count | No | Include total count of matching objects | |
| limit | No | Maximum number of results to return (default: 100) | |
| order | No | Field to sort by. Prefix with '-' for descending order (e.g., '-createdAt') | |
| where | No | Query filters using MongoDB-style operators ($eq, $ne, $lt, $lte, $gt, $gte, $in, $nin, $exists, $regex, $contains, $startsWith, $endsWith) | |
| select | No | Array of fields to return (projection) | |
| include | No | Array of pointer fields to include (populate) | |
| className | Yes | The name of the Parse class to query |