get_asset_details
Retrieve detailed metadata for assets, including lineage, partition info, dependencies, and latest materialization. Helps understand asset relationships and state in Dagster pipelines.
Instructions
Get detailed metadata for one or more assets: description, lineage, and partitions.
asset_keys: list of asset name strings (e.g. ['my_extract', 'my_load'])
Returns per asset: assetKey, description, groupName, op name, isObservable, isPartitioned, partitionDefinition, dependencyKeys (upstream assets), dependedByKeys (downstream assets), and the latest materialization (runId + timestamp).
When to use: to understand an asset's lineage (what it depends on and what depends on it), check if it's partitioned, or get its description. Use search_assets first if you don't know the exact key.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| env | No | ||
| asset_keys | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |