Using end_cursor instead of skipped_cursor to fix #547. There are some rare edge cases where skipped_cursor returns an empty string with still more things to skip. Switching to end_cursor resolves this issue. Also does not reintroduce the bug that was fixed in #18, as in those cases, skipped_cursor and end_cursor are the same.
Integration tests will be coming soon, maybe in a future PR, as making a dataset that consistently replicates this issue is still under investigation.
Using
end_cursor
instead ofskipped_cursor
to fix #547. There are some rare edge cases whereskipped_cursor
returns an empty string with still more things to skip. Switching toend_cursor
resolves this issue. Also does not reintroduce the bug that was fixed in #18, as in those cases,skipped_cursor
andend_cursor
are the same.Integration tests will be coming soon, maybe in a future PR, as making a dataset that consistently replicates this issue is still under investigation.