josh_lloyd
08/25/2021, 3:34 AMpath
attribute of the child stream? I need to use those parent context keys to update the request payload.aaronsteers
08/25/2021, 4:09 AMcontext
in the method signature. The context
object should always be one of the following:
1. If this is a child stream:
a. The parent's get_child_context() result if defined.
b. The second object in the tuple if get_records() returns a tuple.
c. The parent's record dict if neither of the above is true.
2. If not a child stream and partitions
property is defined: the value of the active partition.
3. Otherwise: None
Does this help?josh_lloyd
08/25/2021, 1:55 PMaaronsteers
08/26/2021, 5:25 PM