Breaking changes: Updates to `app_installs` queries

API version [2024-04] contains the following breaking changes to the app_installs object:

  1. The [app_id] field type will change from Int! to ID!
  2. On the [app_install_user] field, the id field will change from Int to ID
  3. On the [app_install_account] field, the id field will change from Int! to ID!
query {
  app_installs (app_id: 123456, account_id: 98766543210) {
    app_id
    app_install_account {
      id
    }
    app_install_user {
      id
    }
  }
}