├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .vscode/ 3 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # GraphQL Query Language 2 | 3 | Welcome to the GraphQL query language course! Really glad that you're here. Below, you'll find all of the links needed for this course + a bunch of resources for taking the next steps with GraphQL. 4 | 5 | ## Links for the Course 🔗 6 | 7 | - [Slides](https://slides.com/moonhighway/query-language-workshop/) 8 | - [Pet Library API](https://pet-library.moonhighway.com) 9 | - [Funded Pet Library API](https://funded-pet-library.moonhighway.com) 10 | - [GitHub GraphQL API](https://developer.github.com/v4/explorer/) 11 | - [Snowtooth API](https://snowtooth.moonhighway.com) 12 | - [OneGraph](https://www.onegraph.com/graphiql) 13 | 14 | ## GraphQL Docs & Resources 📃 15 | 16 | - [GraphQL](https://graphql.org) 17 | - [Apollo GraphQL Docs](https://www.apollographql.com/docs/) 18 | - [Apollo Platform Tutorial](https://www.apollographql.com/docs/tutorial/introduction) 19 | - [Hasura](https://hasura.io) 20 | - [Prisma](https://www.prisma.io/) 21 | - [AppSync](https://aws.amazon.com/appsync/) 22 | - [How to GraphQL Tutorials](https://www.howtographql.com) 23 | 24 | ## egghead Resources 🥚 25 | 26 | - [WTF is GraphQL](https://egghead.io/lessons/graphql-wtf-is-graphql): Wait, what is GraphQL? 27 | - [Create Fullstack GraphQL Apps with GraphQL, Apollo, and React Playlist](https://egghead.io/playlists/create-fullstack-applications-with-graphql-and-apollo-794dc9c7): Build a fullstack GraphQL app from scratch by Eve Porcello & Alex Banks 28 | - [Build a Blog with React and Markdown and Gatsby](https://egghead.io/courses/build-a-blog-with-react-and-markdown-using-gatsby): Lots of cool GraphQL for Gatsby tips here from Taylor Bell 29 | - [GraphQL Data in React with Apollo Client](https://egghead.io/courses/graphql-data-in-react-with-apollo-client): A great course on using GraphQL in React with Apollo Client by Nik Graf 30 | - [Building Serverless Web Applications with React & AWS Amplify](https://egghead.io/courses/building-serverless-web-applications-with-react-aws-amplify) 31 | - [Getting Started with Apollo Federation](https://egghead.io/playlists/getting-started-with-apollo-federation-60ad0165): Learn to build scalable GraphQL microservices with a federated architecture 32 | 33 | ## Moon Highway 🌘 34 | 35 | - [Moon Highway](https://www.moonhighway.com) 36 | - [Articles](https://www.moonhighway.com/articles) 37 | - Eve Porcello: eve@moonhighway.com, [@eveporcello](https://twitter.com/eveporcello) 38 | - Alex Banks: alex@moonhighway.com, [@moontahoe](https://twitter.com/moontahoe) 39 | --------------------------------------------------------------------------------