1.0.4 • Published 1 year ago

@dmamontov/graphql-mesh-public-schema-plugin v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Public Schema Plugin for GraphQL Mesh

Public Schema Plugin is a plugin for GraphQL Mesh that allows you to separate public and private schemas in your API. With this plugin, you can designate which parts of your schema should be accessible only within your service and which can be exposed to external service.

Installation

Before you can use the Public Schema Plugin, you need to install it along with GraphQL Mesh if you haven't already done so. You can install these using npm or yarn.

npm install @dmamontov/graphql-mesh-public-schema-plugin

or

yarn add @dmamontov/graphql-mesh-public-schema-plugin

Configuration

Modifying tsconfig.json

To make TypeScript recognize the Public Schema Plugin, you need to add an alias in your tsconfig.json.

Add the following paths configuration under the compilerOptions in your tsconfig.json file:

{
  "compilerOptions": {
    "paths": {
       "public-schema": ["node_modules/@dmamontov/graphql-mesh-public-schema-plugin"]
    }
  }
}

Adding the Plugin to GraphQL Mesh

You need to include the Public Schema Plugin in your GraphQL Mesh configuration file (usually .meshrc.yaml). Below is an example configuration that demonstrates how to use this plugin:

additionalTypeDefs:
  - node_modules/@dmamontov/graphql-mesh-public-schema-plugin/esm/private-directive.graphql
  
plugins:
  - publicSchema:
      enabled: true

Conclusion

Remember, always test your configurations in a development environment before applying them in production to ensure that everything works as expected.