datastore_get
Retrieve a specific entity from Google Cloud Datastore using its key and kind, with optional parent key for hierarchical data structures.
Instructions
Get an entity by its key
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | The entity key (name or ID) | |
kind | Yes | The entity kind | |
parent | No | Parent key if the entity has a parent (optional) |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"description": "The entity key (name or ID)",
"type": "string"
},
"kind": {
"description": "The entity kind",
"type": "string"
},
"parent": {
"description": "Parent key if the entity has a parent (optional)",
"type": "string"
}
},
"required": [
"kind",
"key"
],
"type": "object"
}