我有下一个疑问。
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
但结果包含第一个请求的结果(我的数据库包含 100 多页)
我应该如何重写我的请求?