23 lines
427 B
GraphQL
Raw Normal View History

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