Giter Site home page Giter Site logo

Comments (6)

ShynRou avatar ShynRou commented on July 17, 2024

My implenentation with express:

  const MongoClient = mongodb.MongoClient;
  let db;

  try {
    let client = await MongoClient.connect(config.db.url);
    db = client.db(config.db.database);
  } catch (error) {
    console.error(error);
    process.exit(1);
  }

  const app = express();

  app.use('/graphql',
    graphqlHTTP({
        schema: Schema,
        rootValue: {},
        graphiql: true,
        context: { db },
        formatError: (err) => {
          console.log(err);
          return err;
        }
      })
  );
  app.listen(config.server.port);

from graphql-to-mongodb.

ahsath avatar ahsath commented on July 17, 2024

It is safe to pass the db instance even before /graphql?

from graphql-to-mongodb.

ShynRou avatar ShynRou commented on July 17, 2024

Yeah, my init function is async so I use await to make sure the MongoDB connection is established before moving on to initialization.

from graphql-to-mongodb.

ahsath avatar ahsath commented on July 17, 2024

How do you handle database connection errors to the client?

from graphql-to-mongodb.

ShynRou avatar ShynRou commented on July 17, 2024

I close the server since it wont work without, and let it restart via forever or pm2 until it reestablishes a connection.

   } catch (error) {
    console.error(error);
    process.exit(1);
  }

from graphql-to-mongodb.

yoavkarako avatar yoavkarako commented on July 17, 2024

There's no real right or wrong here; it's simply not within the package's scope to decide how you should do this. It also isn't necessary for the DB connection to reside in the context. Once in the resolve callback, you may acquire it however you prefer.

@ShynRou's implementation is a valid example.
Another example:

import connection from '...'

connection.then(db => {
    app.use('/',
        graphqlHTTP({
            context: { db },
            ...
        }));
}).catch(err =>{
    ...
});

from graphql-to-mongodb.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.