Looking for how others would do this. If you have...
# beginners-need-help
w
Looking for how others would do this. If you have a number of catalog entries that all need merged into one table on the same key, how do you do it. I've always made a node for each dataset separately, but today I read a pr that passed them all in as inputs and the function signature was
def joiner(left, *rights)
, I can't tell if this is genious or too much magic. Would love some thoughts on how others would review this PR.