I have a super-hierarchical api I’m working with. ...
# singer-tap-development
s
I have a super-hierarchical api I’m working with. I need to get tasks, but they are several levels down.
Copy code
teams
  |
  --spaces
    |
    --folders
      |
      --lists
        |
        --tasks
At each level, I need to send data to Snowflake, so each level is a valid stream. But I also need to remember all the ids from each level so that I can loop through them. It looks like partitions would help, but I’m not certain how they are working. The gitlab example only deals with one level of a hierarchy, I think. Any tips? EDIT: changed bottom level of the hierarchy from spaces -> tasks