diff --git a/tap_tableau/streams.py b/tap_tableau/streams.py index c94b6f7..f1d85c8 100644 --- a/tap_tableau/streams.py +++ b/tap_tableau/streams.py @@ -902,5 +902,5 @@ def query(self) -> str: def parse_response(self, response: requests.Response) -> Iterable[dict]: resp_json = response.json() - for row in resp_json["data"]["workbooksConnection"]: + for row in resp_json["data"]["workbooksConnection"]["nodes"]: yield row