Can someone explain if we should be implementing `...
# connector-development
n
Can someone explain if we should be implementing
get_updated_state
for incremental streams, or should we be using
IncrementalMixin
?
m
The
IncrementalMixin
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.
n
Are there any examples of
IncrementalMixin
being implemented in a connector? And is it possible to do something like:
Copy code
class SourceMySource(Source, IncrementalMixin):
as my connector uses a SOAP api so I was using the barebones Source baseclass