| 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/oms.js |
const express = require('express');
const { graphqlHTTP } = require('express-graphql');
const { omsSchema } = require('../schema');
const router = express.Router();
// Setup GraphQL endpoint
router.use('/', graphqlHTTP({
schema: omsSchema,
graphiql: true,
}));
module.exports = router;