From 2dae8d793a104bb1ee79c71cafa4e5ddc82fcda7 Mon Sep 17 00:00:00 2001 From: Gary James Date: Wed, 8 Feb 2023 21:59:05 +0000 Subject: [PATCH] fix - Column lineage stream --- tap_tableau/streams.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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