Deprecation
Deprecate fields on the GraphQL schema by using a user interface, without the need to deploy any code.
Click to watch tutorial video - 02:33
Evolve the GraphQL schema by deprecating fields, and explaining how to replace them, through a user interface.
Field Deprecation
User interface to deprecate fields from the GraphQL schema.
Deprecation Notifier
Whenever a deprecated field is queried, a deprecation message is returned in that same GraphQL response, under the top-level entry extensions
.
This alerts users of our APIs to upgrade their use of the schema, even when they are not paying attention to the introspection query.
For instance, running this query, where field isPublished
is deprecated:
...will produce this response: