I have a tap with three child streams of a parent ...
# singer-tap-development
s
I have a tap with three child streams of a parent endpoint (I don't want to sync the parent). Let's call it a
list_table
endpoint with
table_detail
,
table_viewers
,
table_columns
child streams. What is the best way to handle this? The way I have it built right now is with a
ParentBaseStream
that I wanted to not sync (but which I wanted to define the pagination logic for), and then build child streams off of. It works for running the tap, but I can't figure out how to exclude it from being treated like a "normal" stream.