datastore_filter
Filter entities stored in Google Cloud Datastore by exact field matches. Specify kind, field, and value to retrieve filtered results efficiently.
Instructions
Query entities with a simple equality filter on any field
Input Schema
Name | Required | Description | Default |
---|---|---|---|
field | Yes | The field name to filter on (can be key field or property) | |
kind | Yes | The entity kind to query | |
limit | No | Maximum number of results to return (default: 100) | |
value | Yes | The value to match exactly |
Input Schema (JSON Schema)
{
"properties": {
"field": {
"description": "The field name to filter on (can be key field or property)",
"type": "string"
},
"kind": {
"description": "The entity kind to query",
"type": "string"
},
"limit": {
"description": "Maximum number of results to return (default: 100)",
"type": "number"
},
"value": {
"description": "The value to match exactly",
"type": "string"
}
},
"required": [
"kind",
"field",
"value"
],
"type": "object"
}