Learn how to filter your GraphQL schema elements with GraphQL Mesh filterSchema transform. Exclude deprecated entities and more!
The filter schema transform allows you to specify which schema elements to include or exclude in
your mesh. You can include or exclude entire queries and mutations, place restrictions on which
types can appear in your calls or which fields can appear in specific types.
For example, you might want to exclude deprecated queries, mutations, and types from your schema so
that your integration is not affected when these entities are removed.
How to use?
In the configuration, you can use regular function to filter the specific types, fields and
arguments.