Closed yazdipour closed 5 months ago
This pull request addresses a bug related to cursor-based pagination in the get_articles
method of the omnivoreql.py
file. The changes replace the cursor
parameter with an after
parameter, which is now an integer instead of a string. This modification aims to simplify the pagination logic and improve the method's usability.
Files | Changes |
---|---|
omnivoreql/omnivoreql.py |
Replaced the cursor parameter with an after parameter in the get_articles method, updated the docstring, and modified the GraphQL query accordingly. |
Summary by Sourcery
This pull request addresses a bug in the get_articles method by replacing the 'cursor' parameter with 'after' to correct pagination functionality.