mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-30 04:45:28 +00:00
22 lines
412 B
GraphQL
22 lines
412 B
GraphQL
query getBrowseResultsV2($input: BrowseV2Input!) {
|
|
browseV2(input: $input) {
|
|
groups {
|
|
name
|
|
count
|
|
hasSubGroups
|
|
entity {
|
|
urn
|
|
type
|
|
...entityDisplayNameFields
|
|
}
|
|
}
|
|
start
|
|
count
|
|
total
|
|
metadata {
|
|
path
|
|
totalNumEntities
|
|
}
|
|
}
|
|
}
|