https://github.com/moonhighway/graphql-paypal
https://github.com/moonhighway/graphql-paypal
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/moonhighway/graphql-paypal
- Owner: MoonHighway
- Created: 2020-03-17T03:38:14.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-30T15:09:09.000Z (over 5 years ago)
- Last Synced: 2025-05-12T14:04:53.979Z (about 1 year ago)
- Size: 4.88 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GraphQL Workshop
Welcome! I'm really glad that you're here. Below you'll find all of the resources that we'll use throughout this course. If you're looking for slides, samples, links, etc., this is the place to look.
## Instructor Info
- **Eve Porcello**: [Twitter](https://twitter.com/eveporcello) | [Email](mailto:eve@moonhighway.com)
- **Moon Highway Training**: [Moon Highway Website](https://www.moonhighway.com) | [Mailing List](http://bit.ly/moonhighway) | [Articles](https://www.moonhighway.com/articles)
### GraphQL Query Language
- [Query Language Slides](https://slides.com/moonhighway/graphql-intro/)
- [Snowtooth Playground](https://snowtooth.moonhighway.com)
- [Pet Library Playground](https://pet-library.moonhighway.com)
- [Moon Highway Vote Playground](http://vote.moonhighway.com)
- [Github GraphQL Explorer](https://developer.github.com/v4/explorer/)
- [SWAPI: Star Wars API](http://graphql.org/swapi-graphql/)
- [Lab Instructions](https://slides.com/moonhighway/snowtooth-query-lab/)
### GraphQL Schema Definition Language
- [Schema Definition Language](https://slides.com/moonhighway/schema-definition-language/)
- [Lab Instructions](https://slides.com/moonhighway/schema-lab/)
### Mid Class Evaluation
- [Anonymous Evaluation](https://docs.google.com/forms/d/e/1FAIpQLSdZNGWrd3t1u9g4N0KgMWogdjUbmScc6AFFaJI4_PTlnj4qEw/viewform?usp=sf_link)
### Building a GraphQL API
- [Snowtooth API](https://github.com/graphqlworkshop/snowtooth-api)
- [Simple Strava Sample](https://github.com/eveporcello/simple-strava-sample/blob/master/index.js)
- [REST Data Sources](https://github.com/MoonHighway/countries-datasources)
### Apollo Client
#### Simple Requests
- curl Request
```sh
curl -X POST \
-H "Content-Type: application/json" \
--data '{ "query": "{allLifts{name}}" }' \
http://snowtooth.moonhighway.com
```
- [Fetch Sample](https://codesandbox.io/s/n3jro0o4n0)
- [graphql-request](https://codesandbox.io/s/4qzq5z2vz0)
### React & Apollo
- [React Overview](https://slides.com/moonhighway/react-overview)
- [Snowtooth UI Start Files](https://github.com/graphqlworkshop/snowtooth-ui)
- [Lab Instructions](https://slides.com/moonhighway/client-lab/)