Breaking changes: Updates to `app_installs` queries
March 13th, 2024
API version [2024-04] contains the following breaking changes to the app_installs object:
- The
[app_id]field type will change fromInt!toID! - On the
[app_install_user]field, theidfield will change fromInttoID - On the
[app_install_account]field, theidfield will change fromInt!toID!
query {
app_installs (app_id: 123456, account_id: 98766543210) {
app_id
app_install_account {
id
}
app_install_user {
id
}
}
}