Hello Airbyte friends, I am developing a custom co...
# help-connector-development
s
Hello Airbyte friends, I am developing a custom connector. I'm using the latest version
v0.44.4
. I'm blocked on combining
Record Selector
and
Cursor Pagination
. I could not have all data from next pages, I got data from the first page only, if I set the
Record Selector
is
content
. In contrast, I will have all data thanks to
Cursor Pagination
but I could not use the result as parent stream for other sub streams. Do we have any way to combine them to get all data and useful for sub streams ? Could you help me please 🙏 You could refer my configuration file and the original data structure which ingested from API below.
j
Can you explain why you can't use the result as a parent stream for another stream?
Your pagination configuration looks a little strange
You shouldn't need to use the last_records variable here as your page token is not in the records, but next to them in the response
`{{ response.nextPageId }}`as cursor value and
{{ not response.nextPageId }}
should be enough for your case
s
super @Joe Reuter! I got what I expect now. Thanks a lot!
👍 1