list_items
List content items from a model with optional filters, sorting, field projection, and limit for targeted retrieval.
Instructions
List content items for a model. Supports an optional Mongo-style filter (JSON), sort, field projection, and limit. Read-only.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| skip | No | ||
| sort | No | e.g. {"_created": -1} | |
| limit | No | Max items (default 20) | |
| model | Yes | Model name | |
| fields | No | Projection, e.g. {"title": 1, "slug": 1} | |
| filter | No | Mongo-style filter, e.g. {"published": true} | |
| populate | No | Depth to resolve linked content (0/1) |