andrezero / node-graphql-express-ts

Quick test with GraphQL + Express + Typescript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Graphql + Express

Uses:

Under the hood:

WARNING: This code is not maintained

Very obvious - but due - WARNING: check the links above for the state of the art. It's probably easier to start from scrath than to use this as a boilerplate ;-)

Getting started

If you don't have a local mongod instance start/stop a docker one with npm run mongo:start and npm run mongo:stop

npm install
npm run start

Queries and Mutations

Open GraphQL interface at http://localhost:4000/graphql

The following examples should work out of the box.

mutation {
  createUser(user: {name: "Andre", email: "andre@andre.com"}) {
    _id,
    name,
    email
  }
}

query {
  users {
    _id,
    name,
    email
  }
}

query {
  user(_id: "5ca14f895f0e0255a395631c") {
   	_id,
    name,
    email
  }
}

Other scripts

npm run start-dev
npm run build
npm run coverage

Copyright (c) 2019 Andre Torgal

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Quick test with GraphQL + Express + Typescript

License:Other


Languages

Language:TypeScript 100.0%