Hi every one! What kind of method in GraphQL shoul...
# troubleshoot
w
Hi every one! What kind of method in GraphQL should i use for search all entities from specific path. This entities can be datasets, folder, datasets, and other. For e.g. i'd like to list all entities from Datasets folder located in Datasets/dev/tableau/some_project_name Looks like method above work with limited object types from EntityType's and dont include folder
query search_across_entities($input: SearchInput!) {
search(input: $input) {
count
total
searchResults {
entity {
urn
type
... on Dataset {
name
}
}
}
}
}
variables =
{
"input": {
"type": "DATASET",
"query": "",
"start": 0,
"count": 1000,
"filters": [{"field": "browsePaths", "value": "dev/tableau/some_project_name"} ]
}
}