mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-02 14:28:18 +00:00
41 lines
943 B
GraphQL
41 lines
943 B
GraphQL
![]() |
query getBrowseResultsV2($input: BrowseV2Input!) {
|
||
|
browseV2(input: $input) {
|
||
|
groups {
|
||
|
name
|
||
|
count
|
||
|
hasSubGroups
|
||
|
entity {
|
||
|
urn
|
||
|
type
|
||
|
... on Container {
|
||
|
properties {
|
||
|
name
|
||
|
}
|
||
|
|
||
|
}
|
||
|
... on DataFlow {
|
||
|
properties {
|
||
|
name
|
||
|
}
|
||
|
}
|
||
|
... on DataPlatformInstance {
|
||
|
platform {
|
||
|
name
|
||
|
properties {
|
||
|
displayName
|
||
|
}
|
||
|
}
|
||
|
instanceId
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
start
|
||
|
count
|
||
|
total
|
||
|
metadata {
|
||
|
path
|
||
|
totalNumEntities
|
||
|
}
|
||
|
}
|
||
|
}
|