Is it possible to define a child stream with multiple parents?
e
edgar_ramirez_mondragon
02/04/2022, 10:55 PM
Hi @collin_prather! Not like
Parent1 -> Child <- Parent2
, but
Parent1 -> Parent2 -> Child
is supported. I'm curious, what's your use case? 🙂
c
collin_prather
02/05/2022, 1:39 AM
Ah, okay thanks! My use-case was the first one - single-level multi-parenthood 🤣
I'm working on a tap for the sleeper api (fantasy football data). I was initially thinking of configuring one of the streams to depend on a league_id and week of the season, but I think there’s other ways to do it 👍
Appreciate it!