32 lines
595 B
GraphQL
Raw Normal View History

query getBrowsePaths($input: BrowsePathsInput!) {
browsePaths(input: $input) {
path
}
}
query getBrowseResults($input: BrowseInput!) {
browse(input: $input) {
entities {
urn
type
... on Dataset {
name
origin
description
platformNativeType
}
}
start
count
total
metadata {
path
groups {
name
count
}
totalNumEntities
}
}
}