getstation / apollo-server-plugin-error

apollo-server plugin that handle errors

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Usage

import { ApolloServerPluginError } from 'apollo-server-plugin-error';

...
const server = new ApolloServer({
  ...,
  plugins: [
    new ApolloServerPluginError((error) => {
      // here you handle the error as you want
      console.error(error);
    })
  ],
});

Install

# via npm
npm install apollo-server-plugin-error
# or via yarn
yarn add apollo-server-plugin-error

About

apollo-server plugin that handle errors

License:MIT License


Languages

Language:TypeScript 100.0%