Attempting to get an item’s updates via GraphQL has broken with the rollout of version 2024-10.
This query would work on version 2024-07, but now does not work. Please try it on the API Playground:
query {
items(ids: [itemIdHere]) {
name
updates(limit: 40) {
creator {
name
}
}
}
}
This same query works fine even with about 190 columns on a board:
query {
items(ids: [itemIdHere]) {
name
column_values {
id
value
text
type
}
}
}
For the first query, lowering the update limit to something like 20 or 25 causes the query to execute properly. Previously in version 2024-07, you could request something very large like 300 updates in one request and it would run just fine.
Why has this functionality been changed? What is the proper process for getting all updates from an item now?