All Downloads are FREE. Search and download functionalities are using the official Maven repository.

graphql-nodejs-express-server.server.js Maven / Gradle / Ivy

There is a newer version: 7.6.0
Show newest version
import express from 'express';
import {ApolloServer, graphiqlExpress, graphqlExpress} from 'apollo-server-express'
import combine from 'graphql-combine'
import path from 'path'

const PORT = 4000 || process.env;

// Initialize the app
const app = express();

// Get combined typeDefs and resolvers object
const {typeDefs, resolvers} = combine({
    // TypeDefs glob pattern
    typeDefs: path.join(__dirname, '**/*.graphql'),

    // Resolvers glob pattern
    resolvers: path.join(__dirname, 'api/*_resolver.js')
});

// GraphQL: Schema
const server = new ApolloServer({
    typeDefs: typeDefs,
    resolvers: resolvers,
    playground: {
        endpoint: `http://localhost:${PORT}/graphql`,
        settings: {
            'editor.theme': 'light'
        }
    }
});

server.applyMiddleware({app: app});

// Start the server
app.listen(PORT, () => {
    console.log(`You can reach GraphQL at: http://localhost:${PORT}/graphql`);
});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy