added
New pagination limit for `updates` queries
January 14th, 2025
In API versions 2025-01
and later, the updates
query will return a maximum of 100 updates per page. To retrieve all updates, you'll need to paginate through the subsequent pages.
For example, the following query will return the first page of 100 updates. You can modify the page
argument to return additional pages.
query {
updates (page: 1) {
id
text_body
}
}