After making the following change, the error below occurred: ```diff - val apolloNormalizedCacheIncubating = "0.0.4" - implementation("com.apollographql.cache:normalized-cache-incubating:$apolloNormalizedCacheIncubating") + val apolloNormalizedCache = "1.0.0-alpha.2" + implementation("com.apollographql.cache:normalized-cache:$apolloNormalizedCache") ``` ``` com.apollographql.apollo.exception.JsonDataException: Expected BEGIN_OBJECT but was NULL at path data.viewer.application.mobileApp ``` * `extensions.xxx.graphqls`: ```graphql extend type Application @nonnull(fields: "mobileApp") ``` * `build.gradle.kts`: ```kotlin schemaFiles.from("src/main/java/com/xxx/android/xxx.graphqls", "src/main/java/com/xxx/android/extensions.xxx.graphqls") ``` According to our server logs, `data.viewer.application.mobileApp` is not null. Has there been a specification change regarding the `@nonnull` directive?