I’ve been working on a tap where a top-level strea...
# singer-tap-development
a
I’ve been working on a tap where a top-level stream result contains several “sub-streams” (arrays of objects). I would like to specify the top-level stream and each sub-stream as a
Stream
entity within the SDK, but I’m unsure about how best to sync the sub-stream records from the parent. Example: Issue endpoint that returns an array of comments on that issue:
Copy code
{
  "issue_id": "i001",
  "comments": [
    {
      "comment_id": "c1",
      "text": ":+1:"
    },
    {
      "comment_id": "c2",
      "text": ":-1:"
    }
  ]
}