Graphql Server

Example GraphQL server with Mongoose (MongoDB) and Node.js
Alternatives To Graphql Server
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Mongoose25,473181,20311,4122 days ago758September 14, 2022286mitJavaScript
MongoDB object modeling designed to work in an asynchronous environment.
Node Elm11,215
a year ago62gpl-2.0JavaScript
基于 node.js + Mongodb 构建的后台系统
Node Express Boilerplate5,180
20 days ago10September 28, 202075mitJavaScript
A boilerplate for building production-ready RESTful APIs using Node.js, Express, and Mongoose
Node Express Mongoose Demo5,0541a month ago1January 18, 20163mitJavaScript
A simple demo app using node and mongodb for beginners (with docker)
Bulletproof Nodejs4,954
3 months ago68mitTypeScript
Implementation of a bulletproof node.js API 🛡️
Builderbook3,426
2 months ago69mitJavaScript
Open source web application to learn JS stack: React, Material-UI, Next.js, Node.js, Express.js, Mongoose, MongoDB database.
Saas3,322
a month ago11mitTypeScript
Build your own SaaS business with SaaS boilerplate. Productive stack: React, Material-UI, Next, MobX, WebSockets, Express, Node, Mongoose, MongoDB. Written with TypeScript.
Express Mongoose Es6 Rest Api2,896
3 years ago1September 03, 201668mitJavaScript
:collision: A boilerplate application for building RESTful APIs Microservice in Node.js using express and mongoose in ES6 with code coverage and JsonWebToken Authentication
Thal2,268
2 years agomitJavaScript
Getting started with Puppeteer and Chrome Headless for Web Scraping
Lad2,212212 months ago39April 27, 202212mitJavaScript
Node.js framework made by a former @expressjs TC and @koajs team member. Built for @forwardemail, @spamscanner, @breejs, @cabinjs, and @lassjs.
Alternatives To Graphql Server
Select To Compare


Alternative Project Comparisons
Readme

graphql-server

Codeship Status for RisingStack/graphql-server
GraphQL server with Mongoose (MongoDB) and Node.js

Like this? Check out our GraphQL ORM: graffiti

Example GraphQL query:

user(id: "1") {
  name
  friends {
    name
  }
}

Example response:

{
  "data": {
    "user": {
      "name": "John Doe",
      "friends": [
        {
          "name": "Friend One"
        },
        {
          "name": "Friend Two"
        }]
      }
    }
  }

Example GraphQL mutation:

mutation updateUser($userId: String! $name: String!) {
  updateUser(id: $userId name: $name) {
    name
  }
}

Used technologies

  • GraphQL
  • MongoDB with Mongoose
  • Node/IO.js
  • Babel

How to start

You need iojs or >= Node.js v0.12.x

install dependencies

npm install

seed database

npm run seed

start server

npm start

run client

npm run client

How to test

npm test
Popular Mongodb Projects
Popular Mongoose Projects
Popular Data Storage Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Javascript
Server
Mongodb
Graphql
Mongoose
Graphql Server