Seb Jachec
10/16/2025, 3:18 PMApollo: unknown foreign schema 'cache/v0.3' for the following at the top of my updated graphqls file:
extend schema
@link(url: "<https://specs.apollo.dev/kotlin_labs/v0.5>", import: ["BuiltIn", "@mapTo"])
@link(url: "<https://specs.apollo.dev/cache/v0.3>", import: ["@connection", "@typePolicy"])
Does this require an Apollo 5.0 alpha, or is there something else going on here?mbonnin
10/16/2025, 3:21 PMmbonnin
10/16/2025, 3:21 PMSeb Jachec
10/16/2025, 3:24 PMSeb Jachec
10/16/2025, 3:24 PMmbonnin
10/16/2025, 3:26 PMmbonnin
10/16/2025, 3:27 PMplugin("com.apollographql.cache:normalized-cache-apollo-compiler-plugin:${libs.versions.apolloCache}")mbonnin
10/16/2025, 3:27 PMplugin("com.apollographql.cache:normalized-cache-apollo-compiler-plugin:1.0.0-alpha.5") { .. }mbonnin
10/16/2025, 3:27 PMmbonnin
10/16/2025, 3:27 PMplugin("com.apollographql.cache:normalized-cache-apollo-compiler-plugin:${libs.versions.apolloCache.get()}")mbonnin
10/16/2025, 3:28 PMlibs.version.apolloCache is an instance of some class that doesn't have a toString() )Seb Jachec
10/16/2025, 4:00 PMplugin("com.apollographql.cache:normalized-cache-apollo-compiler-plugin:${libs.versions.apolloCache.get()}") does indeed work!