Anyone have an example using Partitions with a Chi...
# singer-tap-development
v
Anyone have an example using Partitions with a Child Stream? Because
_sync_records()
calls
context_list = [context] if context is not None else self.partitions
, and when calling a child stream my parent
get_child_context()
has data, the partitions for my Child Stream are ignored. My use case is Combining the two Streams listed here https://github.com/AutoIDM/tap-clickup/pull/88/files into one, using partitions seems like a decent idea ie define a partition of
partitions = [{"archived":"yep"},{"archived":"nope"}]
, and change the parameters based on that, but because these streams a child streams they get clobbered.