Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 327 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 327 Bytes

GraphQL-TypeScript-Example

A Basic example of using Graphql with Typescript and Express-GraphQL

Start

1. npm install

2. npm start

Queries

users - fetches all users user(id:string) - fetches a specific user based on id

Mutations

createUser(name:string, email:string) - creates a user.