Nathan Gille
03/28/2022, 5:40 PMget_updated_state for incremental streams, or should we be using IncrementalMixin?Marcos Marx (Airbyte)
03/28/2022, 11:10 PMIncrementalMixin is the new version but doesn’t have much examples yet, get_updated_state is older but is easy in the future to extend to the new format.Nathan Gille
03/30/2022, 4:50 PMIncrementalMixin being implemented in a connector? And is it possible to do something like:
class SourceMySource(Source, IncrementalMixin):
as my connector uses a SOAP api so I was using the barebones Source baseclass