I need to extract more than 500 items using graphql API in python

Guys, good morning! I would like some help if possible. I have boards with more than 500 items and I need to extract the information using Python. I currently have the code that works but only returns 500 items. Please help me return all the items somehow?

query_text_obz = ‘{boards (ids: 1234567890) {items_page (limit: 500){items {name column_values {column {title} text } } } } }’
column_obz = pd.DataFrame([‘Element’] + [[c_v[‘column’][‘title’] for c_v in item[‘column_values’]] for item in data_obz[‘data’][‘boards’][0][‘items_page’][‘items’]][0]).T

Hello, how did you manager this issue ? I am currently with the same problem.