Get Dataflow Graph
Retrieve the dataflow graph of a pipeline. The dataflow graph is generated during SQL compilation and shows the structure of the compiled SQL program including the Calcite plan and MIR nodes.
Authentication
| Scheme | Type | Details |
|---|---|---|
JSON web token (JWT) or API key | Bearer token | Authorization header · Use a JWT token obtained via an OAuth2/OIDC login workflow or an API key obtained via the `/v0/api-keys` endpoint. |
Parameters
Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
pipeline_name | string | Yes | Unique pipeline name |
Response
Dataflow graph retrieved successfully
- object
curl -X GET '/v0/pipelines/{pipeline_name}/dataflow_graph' \
-H 'Authorization: Bearer YOUR_TOKEN'Dataflow graph retrieved successfully
{}{
"message": "Unknown pipeline name 'non-existent-pipeline'",
"error_code": "UnknownPipelineName",
"details": {
"pipeline_name": "non-existent-pipeline"
}
}