-
Notifications
You must be signed in to change notification settings - Fork 436
Workbook Publish - Hidden Views Not In... #838
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Update: able to supplement this with Tableau Document API to get full list of views/sheets and generate list of hidden_views. |
I found a workaround. You can query the metadata API for the already published workbook luid and ask what views do not have a path value. Those would be hidden. query hidden_views($luid: String) {
workbooks(filter:{luid:$luid}){
views(filter:{path:""}) {
name
}
}
} |
@jorwoods We need a way to integrate our thread from slack 😆 This is good for things that already exist on the server, but think adding |
Oh, are you looking to get the sheets that aren't hidden by being parts of dashboards or a viz in tooltip? |
Originally posted this as desire to have an inverse of This is similar to how we're doing it with some pre-processing of the XML, but would be nice to add to TSC directly. |
#614 added the ability to hide views when publishing. However, when trying to publish a workbook that is already on the server, we're only aware of the name of the views that are not hidden.
It would be ideal if we could do the inverse of hidden_views, such as published_views or hidden_views not in [...]. Only way I can think to do this currently is publish in a staging environment to compare the list of views or parse the xml itself.
Any feedback is appreciated.
The text was updated successfully, but these errors were encountered: