datastore_query
Query entities from Google Cloud Datastore with filters, ordering, and pagination to retrieve specific data efficiently.
Instructions
Query entities from Datastore with optional filters, ordering, and pagination
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| kind | Yes | The kind (type) of entities to query | |
| filters | No | Optional array of filter conditions | |
| orderBy | No | Optional array of properties to order by | |
| limit | No | Maximum number of results to return | |
| offset | No | Number of results to skip | |
| namespace | No | Optional namespace to query from | |
| select | No | Optional array of property names to return (projection query) |