File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
apollo-compiler/src/main/kotlin/com/apollographql/apollo3/compiler
apollo-gradle-plugin-external/src/main/kotlin/com/apollographql/apollo3/gradle/api Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 1
1
package com.apollographql.apollo3.compiler
2
2
3
+ import com.apollographql.apollo3.annotations.ApolloDeprecatedSince
3
4
import java.nio.charset.StandardCharsets
4
5
import java.security.MessageDigest
5
6
7
+ @Suppress(" DEPRECATION" )
8
+ @Deprecated(" Use ApolloCompilerPlugin.operationIds() instead. See https://go.apollo.dev/ak-compiler-plugins for more details." )
9
+ @ApolloDeprecatedSince(ApolloDeprecatedSince .Version .v4_0_0)
6
10
interface OperationIdGenerator {
7
11
/* *
8
12
* computes an id for the given operation
Original file line number Diff line number Diff line change @@ -240,6 +240,9 @@ interface Service {
240
240
*
241
241
* Default value: [OperationIdGenerator.Sha256]
242
242
*/
243
+ @Suppress(" DEPRECATION" )
244
+ @Deprecated(" Use ApolloCompilerPlugin.operationIds() instead. See https://go.apollo.dev/ak-compiler-plugins for more details." )
245
+ @ApolloDeprecatedSince(ApolloDeprecatedSince .Version .v4_0_0)
243
246
val operationIdGenerator: Property <OperationIdGenerator >
244
247
245
248
/* *
You can’t perform that action at this time.
0 commit comments