24 lines
561 B
GraphQL
Raw Normal View History

query getDataJob($urn: String!) {
dataJob(urn: $urn) {
...dataJobFields
downstreamLineage {
...downstreamRelationshipFields
}
upstreamLineage {
...upstreamRelationshipFields
}
}
}
mutation updateDataJob($urn: String!, $input: DataJobUpdateInput!) {
updateDataJob(urn: $urn, input: $input) {
...dataJobFields
downstreamLineage {
...downstreamRelationshipFields
}
upstreamLineage {
...upstreamRelationshipFields
}
}
}