mirror of
https://github.com/datahub-project/datahub.git
synced 2025-12-27 18:07:57 +00:00
fix(ui): stop overfetching data for operations (#5632)
This commit is contained in:
parent
fdcb05b833
commit
2252f82cef
@ -20,14 +20,77 @@ fragment runResults on DataProcessInstanceResult {
|
||||
timestampMillis
|
||||
}
|
||||
inputs: relationships(input: { types: ["Consumes"], direction: OUTGOING, start: 0, count: 20 }) {
|
||||
...fullRelationshipResults
|
||||
...runRelationshipResults
|
||||
}
|
||||
outputs: relationships(input: { types: ["Produces"], direction: OUTGOING, start: 0, count: 20 }) {
|
||||
...fullRelationshipResults
|
||||
...runRelationshipResults
|
||||
}
|
||||
parentTemplate: relationships(input: { types: ["InstanceOf"], direction: OUTGOING, start: 0, count: 1 }) {
|
||||
...fullRelationshipResults
|
||||
...runRelationshipResults
|
||||
}
|
||||
externalUrl
|
||||
}
|
||||
}
|
||||
|
||||
fragment runRelationshipResults on EntityRelationshipsResult {
|
||||
start
|
||||
count
|
||||
total
|
||||
relationships {
|
||||
type
|
||||
direction
|
||||
entity {
|
||||
urn
|
||||
type
|
||||
... on Dataset {
|
||||
name
|
||||
properties {
|
||||
name
|
||||
description
|
||||
qualifiedName
|
||||
}
|
||||
editableProperties {
|
||||
description
|
||||
}
|
||||
platform {
|
||||
...platformFields
|
||||
}
|
||||
subTypes {
|
||||
typeNames
|
||||
}
|
||||
status {
|
||||
removed
|
||||
}
|
||||
}
|
||||
... on DataJob {
|
||||
urn
|
||||
type
|
||||
dataFlow {
|
||||
...nonRecursiveDataFlowFields
|
||||
}
|
||||
jobId
|
||||
properties {
|
||||
name
|
||||
description
|
||||
externalUrl
|
||||
customProperties {
|
||||
key
|
||||
value
|
||||
}
|
||||
}
|
||||
deprecation {
|
||||
...deprecationFields
|
||||
}
|
||||
dataPlatformInstance {
|
||||
...dataPlatformInstanceFields
|
||||
}
|
||||
editableProperties {
|
||||
description
|
||||
}
|
||||
status {
|
||||
removed
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user