mirror of
https://github.com/datahub-project/datahub.git
synced 2025-09-17 21:20:32 +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
|
|
}
|
|
}
|
|
}
|