datahub/datahub-web-react/src/graphql/container.graphql

58 lines
1.1 KiB
GraphQL

query getContainer($urn: String!) {
container(urn: $urn) {
urn
exists
lastIngested
platform {
...platformFields
}
properties {
name
description
customProperties {
key
value
}
}
editableProperties {
description
}
ownership {
...ownershipFields
}
tags {
...globalTagsFields
}
institutionalMemory {
...institutionalMemoryFields
}
glossaryTerms {
...glossaryTerms
}
subTypes {
typeNames
}
entities(input: { start: 0, count: 1 }) {
total
}
container {
...entityContainer
}
parentContainers {
...parentContainersFields
}
domain {
...entityDomain
}
deprecation {
...deprecationFields
}
dataPlatformInstance {
...dataPlatformInstanceFields
}
status {
removed
}
}
}