mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-21 08:32:05 +00:00
41 lines
894 B
GraphQL
41 lines
894 B
GraphQL
query getDataJob($urn: String!) {
|
|
dataJob(urn: $urn) {
|
|
urn
|
|
type
|
|
...dataJobFields
|
|
privileges {
|
|
...entityPrivileges
|
|
}
|
|
runs(start: 0, count: 20) {
|
|
count
|
|
start
|
|
total
|
|
}
|
|
autoRenderAspects: aspects(input: { autoRenderOnly: true }) {
|
|
...autoRenderAspectFields
|
|
}
|
|
structuredProperties {
|
|
properties {
|
|
...structuredPropertiesFields
|
|
}
|
|
}
|
|
forms {
|
|
...formsFields
|
|
}
|
|
}
|
|
}
|
|
|
|
mutation updateDataJob($urn: String!, $input: DataJobUpdateInput!) {
|
|
updateDataJob(urn: $urn, input: $input) {
|
|
urn
|
|
}
|
|
}
|
|
|
|
query getDataJobRuns($urn: String!, $start: Int!, $count: Int!) {
|
|
dataJob(urn: $urn) {
|
|
runs(start: $start, count: $count) {
|
|
...runResults
|
|
}
|
|
}
|
|
}
|