Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cvburgess/9-sandbox
test for issue created
https://github.com/cvburgess/9-sandbox
Last synced: 15 days ago
JSON representation
test for issue created
- Host: GitHub
- URL: https://github.com/cvburgess/9-sandbox
- Owner: cvburgess
- License: mit
- Created: 2019-01-23T17:02:45.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-11T01:19:44.000Z (about 2 years ago)
- Last Synced: 2025-01-03T14:13:31.573Z (22 days ago)
- Language: JavaScript
- Size: 11.2 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Intro to GraphQL
This repository has a trivial example of a GraphQL server that we can use to
understand basic concepts like schemas, resolvers, queries, and mutations.This code was originally part of the [Intro to GraphQL] workshop.
**NOTE:** Most of this code is taken from the [Apollo Server docs].
## Getting started
1. Install the latest version of [Node JS]
2. Run `npm install` in the terminal
3. Run `npm start` to create the server
4. Open your browser to the [GraphQL Playground] created by the server[apollo server docs]: https://www.apollographql.com/docs/apollo-server/getting-started.html
[intro to graphql]: https://www.meetup.com/GraphQL-Tampa-Bay/events/257668133/
[node js]: https://nodejs.org/en/
[graphql playground]: http://localhost:4000
[nodemon]: https://nodemon.io/## About this server
This server uses [Nodemon] to automatically restart the server as you make
changes to the code, so play around and see what happens!A production GraphQL has many more layers of complexity added, like
authentication, authorization, data sources, caching, batching, and more.The point of this server is to give you a starting point to see how a simple
GraphQL server functions and grow our knowledge over time.