| Current Path : /proc/thread-self/root/proc/thread-self/root/home/deltalab/PMS/ims-connector/graphql/routes/ |
| Current File : //proc/thread-self/root/proc/thread-self/root/home/deltalab/PMS/ims-connector/graphql/routes/ims.js |
const express = require('express');
const { graphqlHTTP } = require('express-graphql');
const { imsSchema } = require('../schema');
const router = express.Router();
// Setup GraphQL endpoint
router.use('/', graphqlHTTP({
schema: imsSchema,
graphiql: true,
}));
module.exports = router;