curl --request POST \
--url https://developer.synq.io/api/lineage/v1 \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"lineageDirection": "LINEAGE_DIRECTION_UNSPECIFIED",
"startPoint": {
"entities": {
"entities": [
{
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
}
]
}
},
"maxDepth": 123
}
'{
"lineage": {
"nodes": [
{
"ids": [
{
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
}
],
"position": "NODE_POSITION_UNSPECIFIED",
"cllDetails": {
"columns": [
{
"columnId": "<string>",
"name": "<string>",
"nativeType": "<string>"
}
],
"cllState": "CLL_STATE_UNSPECIFIED",
"cllMessages": [
"<string>"
]
}
}
],
"nodeDependencies": [
{
"sourceNodeIdx": 123,
"targetNodeIdx": 123
}
],
"isCll": true,
"columnDependencies": [
{
"sourceNodeIdx": 123,
"sourceNodeColumnId": "<string>",
"targetNodeIdx": 123,
"targetNodeColumnId": "<string>"
}
]
}
}curl --request POST \
--url https://developer.synq.io/api/lineage/v1 \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"lineageDirection": "LINEAGE_DIRECTION_UNSPECIFIED",
"startPoint": {
"entities": {
"entities": [
{
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
}
]
}
},
"maxDepth": 123
}
'{
"lineage": {
"nodes": [
{
"ids": [
{
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
}
],
"position": "NODE_POSITION_UNSPECIFIED",
"cllDetails": {
"columns": [
{
"columnId": "<string>",
"name": "<string>",
"nativeType": "<string>"
}
],
"cllState": "CLL_STATE_UNSPECIFIED",
"cllMessages": [
"<string>"
]
}
}
],
"nodeDependencies": [
{
"sourceNodeIdx": 123,
"targetNodeIdx": 123
}
],
"isCll": true,
"columnDependencies": [
{
"sourceNodeIdx": 123,
"sourceNodeColumnId": "<string>",
"targetNodeIdx": 123,
"targetNodeColumnId": "<string>"
}
]
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Direction of the lineage to query.
LINEAGE_DIRECTION_UNSPECIFIED, LINEAGE_DIRECTION_UPSTREAM, LINEAGE_DIRECTION_DOWNSTREAM, LINEAGE_DIRECTION_UPSTREAM_DOWNSTREAM Possible starting points to get lineage from.
Show child attributes
Success
Lineage defines the lineage of table-like entities.
Show child attributes