Hi all, me again :slightly_smiling_face: I have a...
# singer-tap-development
e
Hi all, me again 🙂 I have an API that deals with, lets say, products. One of the endpoints is a generic “list all products” endpoint which contains some basic details such as
id
,
created_at
, etc. However, most of the details of these products are behind a “get specific product” with an endpoint of
products/:id
. I would like to capture all of this in my tap under one “products” stream. Is this possible? If so, are there any examples? 😄
v
You can, but the recommendation would be a Products parent stream and a "ProductDetails" child stream
e
Ok I will look into child streams. Any docs / examples available? 🙂
v
Have you looked at the sdk docs?
e
I have not! Found them now, thanks to your comment. Maybe should be added here ?
v
Just making sure you had tried to find them
If you don't at least try it's hard to offer help 🙂, so thank you for giving it a shot first
e
Apologies! I must have missed that! Thanks a lot
Thanks for the question! This lead me to think about this https://github.com/meltano/sdk/issues/728 not super related but 😄
e
in case anyone else comes across this, the full example of the parent-child stream can be found here