An express middleware that serves abtnode graphql server
API Layer built on the core state management library of ABT Node, works with express.
``shell`
yarn add @abtnode/gql
Then:
`javascript
const express = require('express');
const gql = require('@abtnode/gql');
const app = express();
app.use('/api/gql', gql(node));
``