datastore_get
Retrieve a specific entity from Google Cloud Datastore by specifying its kind and key identifier, with optional namespace and ancestor path parameters for precise data access.
Instructions
Get an entity by kind and key from Datastore
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| kind | Yes | The kind (type) of the entity | |
| keyId | Yes | The ID of the key (can be string name or numeric ID) | |
| namespace | No | Optional namespace for the entity | |
| ancestors | No | Optional array of ancestor keys [kind, id/name, kind, id/name, ...] |