What can be a reason the cursor_field is empty at ...
# connector-development
r
What can be a reason the cursor_field is empty at the start of my incremental sync? I added both
Copy code
@property
    def supports_incremental(self) -> bool:
        return True

    @property
    def source_defined_cursor(self) -> bool:
        return False
And in the UI I am able to select a cursor_field, for the rest I have no deceleration in my code of cursor_field (I want it to be user defined). I have a log row in
def request_params()
containing
<http://self.logger.info|self.logger.info>(f"Cursor Field is = {self.cursor_field}")
my console output is as following:
Copy code
2022-03-30 16:28:27 source > Syncing stream: XXX_Financial_Journalrules 
2022-03-30 16:28:27 source > Cursor Field is = []
2022-03-30 16:28:27 source > Doing request with params {'take': 10000, 'skip': 0}