README
Introduction
Apollo module for authorisation using JWT tokens.
import { authorisationModule } from 'apollo-module-authorisation';
import { processSchema, schemas, resolvers } from 'apollo-mantra/server';
processSchema([
authorisationModule,
... // your other schemas
]);
module.exports = {
schema: schemas(),
resolvers: resolvers()
};