Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 14 days 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 (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-05-30T15:45:38.000Z (over 1 year ago)
- Last Synced: 2024-10-17T00:11:05.800Z (29 days 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-GraphQLStart
1. npm install
2. npm startQueries
users - fetches all users
user(id:string) - fetches a specific user based on idMutations
createUser(name:string, email:string) - creates a user.