mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-24 18:10:11 +00:00

* Adding Properties, Documentation tabs, & supporting mutations Co-authored-by: John Joyce <john@acryl.io>
32 lines
595 B
GraphQL
32 lines
595 B
GraphQL
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
|
|
}
|
|
}
|
|
}
|