graphiql-azure-functions
v1.0.5
Published
Easy deployment of GraphiQL to Azure Functions
Downloads
8
Maintainers
Readme
graphiql-azure-functions
Easy deployment of GraphiQL to Azure Functions
Installation
npm install --save graphiql-azure-functions
Example
const graphiqlAzureFunctions = require('graphiql-azure-functions');
module.exports = function(context) {
graphiqlAzureFunctions({
graphqlUrl: '/api/graphql',
})(context);
}