Pipelines
Validate a query and return pipeline graph
API Documentation
- API Overview
- Connectors
- Connection Profiles
- Connection Tables
- Jobs
- Pipelines
- UDFs
Pipelines
Validate a query and return pipeline graph
POST
/
v1
/
pipelines
/
validate_query
{
"errors": [
"<string>"
],
"graph": {
"edges": [
{
"destId": 1,
"edgeType": "<string>",
"keyType": "<string>",
"srcId": 1,
"valueType": "<string>"
}
],
"nodes": [
{
"description": "<string>",
"nodeId": 1,
"operator": "<string>",
"parallelism": 1
}
]
}
}
Body
application/json
Response
200 - application/json
Validated query
{
"errors": [
"<string>"
],
"graph": {
"edges": [
{
"destId": 1,
"edgeType": "<string>",
"keyType": "<string>",
"srcId": 1,
"valueType": "<string>"
}
],
"nodes": [
{
"description": "<string>",
"nodeId": 1,
"operator": "<string>",
"parallelism": 1
}
]
}
}