tableau / server-client-python

A Python library for the Tableau Server REST API
https://tableau.github.io/server-client-python/
MIT License
656 stars 420 forks source link

upstreamDatasources missing for some of the workbooks while using the metadata-api (GraphQL) #1311

Open deepjyotiroy079 opened 10 months ago

deepjyotiroy079 commented 10 months ago

Describe the bug I'm using a GraphQL query to fetch workbook related information but it seems the query misses out some of the data sources, all of which is still visible on the tableau cloud data source section for the dashboard.

Versions Details of your environment, including:

I'm using the below query:

{
    workbooks {
        name
        projectName
        projectVizportalUrlId
        owner {
            id
            name
        }
        uri
        upstreamDatasources {
            name
            updatedAt
            extractLastRefreshTime
            # extractLastUpdateTime
        }
    }
}

Results Does not display any upstreamDatasources, but the same exists.