I am using the SDK to develop a tap, and finding i...
# singer-tap-development
a
I am using the SDK to develop a tap, and finding it pretty straightforward, thanks to the docs and slack here 🙂 Few head scratching moments here and there. Any suggestions how to handle a parent-child relationship, but when you don't want to query the child endpoint as you iterate over parents? For instance, ticket 1 has children chats 3,4,5, but if I query
chats
as I iterate over each
ticket
this messes up the pagination of
tickets
, and some get missed. If I iterate over all the tickets first, then go back and query
chats
for each ticket I have collected, that should work. Is there an off-the-shelf way to do this, or do I have to put together something new?