Added
New arguments to filter `updates` by date
 June 4th, 2025 
  🏷️ API version:
  2025-07
  
When querying updates at the root, you can now filter the results by a specific date range using the new from_date and to_date arguments. These arguments must be used together—using only one will return an error.
👉 Read more about updates here!
query {
  updates (limit: 50, to_date: "2025-06-04", from_date: "2025-01-01") {
    body
      id
      created_at
      creator {
        name
        id
    }
  }
}