deprecation in graphql
Record the ways of deprecation in GraphQL.
For GraphQL-Java, you can use annotations from GraphQL-java-annotations to annotate the deprecated fields.
@GraphQLDeprecate
and Java’s @Deprecated
can be used to specify a deprecated field.
Note: GraphQL doesn’t support deprecation of fields in input types. See github discussion here
Comments