datastore_query
Execute queries on Google Cloud Datastore entities with optional filters, pagination, and equality conditions to retrieve specific data sets efficiently.
Instructions
Execute a query on entities with optional filters
Input Schema
Name | Required | Description | Default |
---|---|---|---|
kind | Yes | The entity kind to query | |
limit | No | Maximum number of results to return (default: 100) | |
offset | No | Number of results to skip (default: 0) |
Input Schema (JSON Schema)
{
"properties": {
"kind": {
"description": "The entity kind to query",
"type": "string"
},
"limit": {
"description": "Maximum number of results to return (default: 100)",
"type": "number"
},
"offset": {
"description": "Number of results to skip (default: 0)",
"type": "number"
}
},
"required": [
"kind"
],
"type": "object"
}