Chris Collins ed2159bc36
feat(ui) Update Search & Browse to be a unified experience (#8235)
Co-authored-by: Josh Eilers <josh.eilers@acryl.io>
2023-06-21 13:40:07 +05:30

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
}
}
}