Hello everyone!!! So, I am creating python http AP...
# connector-development
a
Hello everyone!!! So, I am creating python http API connector and want to add incremental stream there. I have added incremental column for that but want to make sure is it sufficient to just edit
cursor_field
Copy code
@property
def cursor_field(self) -> str:
    """
    TODO
    Override to return the cursor field used by this stream e.g: an API entity might always use created_at as the cursor field. This is
    usually id or date based. This field's presence tells the framework this in an incremental stream. Required for incremental.
    :return str: The name of the cursor field.
    """
    return [""]
I mean if my column had 2000 rows and a new row get added then will this much will be suffient to append 1 new row or it will fetch 2001 columns from scratch . Thanks in Advanced!
o
loading...
a
Hey @Avijit Mandal please refer to this section of our documentation to implement a working incremental stream.
Could you please post to our Discourse forum if you have follow-up questions? We are migrating our community support over there.
a
Thanks!!