I have the next query to notion.
curl -X POST 'https://api.notion.com/v1/databases/%DB_ID%/query'\
-H 'Authorization: Bearer %SECRET%' \
-H 'Notion-Version: 2021-05-13' \
--data '{
"filter":{}
,"start_cursor" : "%NEXT_CURSOR_FROM_PREV_REQUEST%"
}' > notion_db2.json
But result contains result of first request (my db contains more than 100 pages)
How should I rewrite my request?