mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-23 17:39:59 +00:00
23 lines
427 B
GraphQL
23 lines
427 B
GraphQL
![]() |
query getBrowsePaths($input: BrowsePathsInput!) {
|
||
|
browsePaths(input: $input)
|
||
|
}
|
||
|
|
||
|
query getBrowseResults($input: BrowseInput!) {
|
||
|
browse(input: $input) {
|
||
|
entities {
|
||
|
name
|
||
|
urn
|
||
|
}
|
||
|
start
|
||
|
count
|
||
|
total
|
||
|
metadata {
|
||
|
path
|
||
|
groups {
|
||
|
name
|
||
|
count
|
||
|
}
|
||
|
totalNumEntities
|
||
|
}
|
||
|
}
|
||
|
}
|