2021-04-21 12:06:31 -07:00
|
|
|
query getDataJob($urn: String!) {
|
|
|
|
dataJob(urn: $urn) {
|
2021-04-23 00:18:39 -07:00
|
|
|
...dataJobFields
|
|
|
|
downstreamLineage {
|
|
|
|
...downstreamRelationshipFields
|
2021-04-21 12:06:31 -07:00
|
|
|
}
|
2021-04-23 00:18:39 -07:00
|
|
|
upstreamLineage {
|
|
|
|
...upstreamRelationshipFields
|
2021-04-21 12:06:31 -07:00
|
|
|
}
|
2021-04-23 00:18:39 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mutation updateDataJob($input: DataJobUpdateInput!) {
|
|
|
|
updateDataJob(input: $input) {
|
|
|
|
...dataJobFields
|
|
|
|
downstreamLineage {
|
|
|
|
...downstreamRelationshipFields
|
2021-04-21 12:06:31 -07:00
|
|
|
}
|
2021-04-23 00:18:39 -07:00
|
|
|
upstreamLineage {
|
|
|
|
...upstreamRelationshipFields
|
2021-04-21 12:06:31 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|