mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-24 01:50:06 +00:00
37 lines
720 B
GraphQL
37 lines
720 B
GraphQL
![]() |
query getContainer($urn: String!) {
|
||
|
container(urn: $urn) {
|
||
|
urn
|
||
|
platform {
|
||
|
...platformFields
|
||
|
}
|
||
|
properties {
|
||
|
name
|
||
|
description
|
||
|
}
|
||
|
editableProperties {
|
||
|
description
|
||
|
}
|
||
|
ownership {
|
||
|
...ownershipFields
|
||
|
}
|
||
|
tags {
|
||
|
...globalTagsFields
|
||
|
}
|
||
|
institutionalMemory {
|
||
|
...institutionalMemoryFields
|
||
|
}
|
||
|
glossaryTerms {
|
||
|
...glossaryTerms
|
||
|
}
|
||
|
subTypes {
|
||
|
typeNames
|
||
|
}
|
||
|
entities(input: {}) {
|
||
|
...searchResults
|
||
|
}
|
||
|
container {
|
||
|
...entityContainer
|
||
|
}
|
||
|
}
|
||
|
}
|