{"id":18470976,"url":"https://github.com/moonhighway/intro-to-graphql","last_synced_at":"2025-07-30T00:36:37.167Z","repository":{"id":84066126,"uuid":"252588271","full_name":"MoonHighway/intro-to-graphql","owner":"MoonHighway","description":"This repository contains the course materials for an online intro to GraphQL course!","archived":false,"fork":false,"pushed_at":"2022-10-31T15:19:14.000Z","size":11,"stargazers_count":64,"open_issues_count":0,"forks_count":29,"subscribers_count":9,"default_branch":"master","last_synced_at":"2025-06-05T09:18:35.715Z","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":"2020-04-02T23:37:37.000Z","updated_at":"2024-11-05T16:58:02.000Z","dependencies_parsed_at":"2023-06-15T19:15:50.946Z","dependency_job_id":null,"html_url":"https://github.com/MoonHighway/intro-to-graphql","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MoonHighway/intro-to-graphql","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MoonHighway%2Fintro-to-graphql","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MoonHighway%2Fintro-to-graphql/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MoonHighway%2Fintro-to-graphql/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MoonHighway%2Fintro-to-graphql/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MoonHighway","download_url":"https://codeload.github.com/MoonHighway/intro-to-graphql/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MoonHighway%2Fintro-to-graphql/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267785895,"owners_count":24144124,"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","status":"online","status_checked_at":"2025-07-29T02:00:12.549Z","response_time":2574,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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:27.371Z","updated_at":"2025-07-30T00:36:37.115Z","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- **Alex Banks**: [Twitter](https://twitter.com/moontahoe) | [Email](mailto:alex@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- [Apollo Studio Link](https://studio.apollographql.com/sandbox/explorer)\n- [Pet Library Playground](https://pet-library.moonhighway.com)\n- [Moon Highway Vote Playground](http://vote.moonhighway.com)\n- [Snowtooth Playground](https://snowtooth.moonhighway.com)\n- [GitHub GraphQL Explorer](https://developer.github.com/v4/explorer/)\n- [Lab Instructions](https://slides.com/moonhighway/snowtooth-query-lab/)\n\n### Schema Slides\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\n### Building a GraphQL API\n\n- [Snowtooth API](https://github.com/graphqlworkshop/snowtooth-api)\n- [Snowtooth API: CodeSandbox Start](https://codesandbox.io/s/loving-turing-ri7pn)\n- [Simple Strava Sample](https://github.com/eveporcello/simple-strava-sample/blob/master/index.js)\n- [Pet Library - MongoDB](https://github.com/moonhighway/pet-library)\n- [REST Data Sources](https://github.com/MoonHighway/countries-datasources)\n\n### Apollo Client\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\n### Tutorials and Resources\n\n- [Apollo Odyssey](https://odyssey.apollographql.com/)\n- [How to GraphQL](https://howtographql.com)\n- [GraphQL.org](https://graphql.org)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoonhighway%2Fintro-to-graphql","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmoonhighway%2Fintro-to-graphql","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoonhighway%2Fintro-to-graphql/lists"}