bbovenzi commented on issue #42367:
URL: https://github.com/apache/airflow/issues/42367#issuecomment-2470714503
Sample of the most minimal return we need. (using the same types as we would
need with dag/asset dependencies)
```
{
nodes: [
{
id: 'task_1',
label: 'string', // task_display_name, asset_uri, etc
type: 'task' | 'asset' | 'sensor' | 'trigger' // either the Ui can
filter for only tasks, or we do
children: [] // only for task groups
}
],
edges: [{
source_id: 'task_1',
target_id: 'task_2'
}]
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]