https://github.com/eddie4k-code/graphql-typescript-example
A Basic example of using Graphql with Typescript and Express-GraphQL
https://github.com/eddie4k-code/graphql-typescript-example
express-graphql graphql ts typescript typescript-graphql
Last synced: about 2 months ago
JSON representation
A Basic example of using Graphql with Typescript and Express-GraphQL
- Host: GitHub
- URL: https://github.com/eddie4k-code/graphql-typescript-example
- Owner: Eddie4k-code
- Created: 2023-05-30T15:40:31.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-05-30T15:45:38.000Z (about 3 years ago)
- Last Synced: 2025-07-19T06:40:32.153Z (11 months ago)
- Topics: express-graphql, graphql, ts, typescript, typescript-graphql
- Language: TypeScript
- Homepage:
- Size: 33.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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.