Skip to content

sgnh/graphiql-azure-functions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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);
}