{"id":18471004,"url":"https://github.com/moonhighway/graphql-intro","last_synced_at":"2026-03-19T04:35:08.611Z","repository":{"id":84066116,"uuid":"587418178","full_name":"MoonHighway/graphql-intro","owner":"MoonHighway","description":"Materials for an Intro to GraphQL","archived":false,"fork":false,"pushed_at":"2023-05-12T16:16:16.000Z","size":23,"stargazers_count":7,"open_issues_count":0,"forks_count":1,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-02-16T18:44:26.930Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MoonHighway.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-01-10T17:52:06.000Z","updated_at":"2024-09-28T11:18:11.000Z","dependencies_parsed_at":"2023-05-24T17:45:43.764Z","dependency_job_id":null,"html_url":"https://github.com/MoonHighway/graphql-intro","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MoonHighway%2Fgraphql-intro","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MoonHighway%2Fgraphql-intro/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MoonHighway%2Fgraphql-intro/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MoonHighway%2Fgraphql-intro/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MoonHighway","download_url":"https://codeload.github.com/MoonHighway/graphql-intro/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253748640,"owners_count":21957959,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-06T10:15:31.676Z","updated_at":"2026-01-24T21:11:38.618Z","avatar_url":"https://github.com/MoonHighway.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n\u003cimg src=\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/GraphQL_Logo.svg/512px-GraphQL_Logo.svg.png\" width=\"100\" alt=\"graphql logo\"/\u003e\n\u003cimg src=\"https://i.imgur.com/migo24P.png\" width=\"100\" alt=\"moon highway logo\"/\u003e\n\u003c/p\u003e\n\n# GraphQL Workshop\n\nWelcome! We're really glad 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.\n\n## Instructor Info\n\n- **Eve Porcello**: [Twitter](https://twitter.com/eveporcello) | [Email](mailto:eve@moonhighway.com)\n- **Moon Highway Training**: [Moon Highway Website](https://www.moonhighway.com) | [Mailing List](http://bit.ly/moonhighway) | [Articles](https://www.moonhighway.com/articles)\n\n## GraphQL Query Language\n\n- [Query Language Slides](https://slides.com/moonhighway/graphql-intro/)\n- [GitHub GraphQL Explorer](https://developer.github.com/v4/explorer/)\n- [Pet Library](https://pet-library.moonhighway.com)\n- [Vote Playground](https://host-election.fly.dev/)\n- [Funded Pet Library](https://funded-pet-library.moonhighway.com)\n- [Snowtooth Playground](https://snowtooth.moonhighway.com)\n- [Lab Instructions](https://slides.com/moonhighway/snowtooth-query-lab/)\n\n## GraphQL Schemas\n\n- [Schema Slides](https://slides.com/moonhighway/schema-definition-language)\n- [Schema Cheatsheet](https://raw.githubusercontent.com/sogko/graphql-shorthand-notation-cheat-sheet/master/graphql-shorthand-notation-cheat-sheet.png)\n- [Starting Repo](https://github.com/MoonHighway/pet-library-schema)\n- [First Schema Iteration](https://github.com/MoonHighway/pet-library-schema/tree/initial-schema)\n- [Complete Schema](https://github.com/MoonHighway/pet-library-schema/tree/complete)\n- [Unions \u0026 Interfaces](https://slides.com/moonhighway/apollo-schema-design-advanced)\n\n_Don't want to work with the repo or code editor? Use the [Schema Project in CodeSandbox](https://codesandbox.io/s/github/moonhighway/pet-library-schema)_\n\n### Federation\n\n- [Federation](https://www.apollographql.com/docs/federation/)\n- [Pet Schema](https://github.com/MoonHighway/federated-mock-pets-sample)\n- [Customer Schema](https://github.com/MoonHighway/federated-customers-mock-sample)\n\n## GraphQL Clients\n\n### Simple Requests\n\n- curl Request\n\n```sh\ncurl -X POST \\\n     -H \"Content-Type: application/json\" \\\n     --data '{ \"query\": \"{allLifts{name}}\" }' \\\n     http://snowtooth.moonhighway.com\n```\n\n- [Fetch Sample](https://codesandbox.io/s/n3jro0o4n0)\n- [graphql-request](https://codesandbox.io/s/4qzq5z2vz0)\n- [Snowtooth UI Start Files](https://github.com/graphqlworkshop/snowtooth-ui)\n\n### Apollo Link - Creating a Network Layer\n\n- [Apollo Client](https://codesandbox.io/s/adoring-architecture-uw413f?file=/src/index.js)\n- [Concatenating Links](https://codesandbox.io/s/ql4jlz54yq)\n\n### Apollo \u0026 React\n\n- [Snowtooth UI Start Files](https://github.com/graphqlworkshop/snowtooth-ui)\n- [Snowtooth UI Finished Files](https://github.com/graphqlworkshop/snowtooth-ui/tree/complete)\n\n### Client Documentation\n\n- [Apollo Client Docs - React](https://www.apollographql.com/docs/react)\n- [Apollo Client Docs - iOS](https://www.apollographql.com/docs/ios)\n- [Apollo Client Docs - Kotlin](https://www.apollographql.com/docs/kotlin)\n- [Persisted Queries](https://www.apollographql.com/docs/apollo-server/performance/apq/)\n- [Relay Docs](https://relay.dev/)\n- [Relay Connection Spec](https://relay.dev/graphql/connections.htm)\n\n### Caching\n\n- [Caching Slides](https://slides.com/moonhighway/client-cache-config/)\n- [Caching, Client Side Schema](https://github.com/eveporcello/pet-library-client)\n\n### Defer and Stream\n\n- [Defer and Stream Slides](https://slides.com/moonhighway/defer-stream)\n- [Defer in Apollo Client](https://www.apollographql.com/docs/react/data/defer/)\n- [Defer Demo](https://studio.apollographql.com/public/hack-the-e-commerce/explorer?variant=main)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoonhighway%2Fgraphql-intro","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmoonhighway%2Fgraphql-intro","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoonhighway%2Fgraphql-intro/lists"}