{"id":20879926,"url":"https://github.com/mirayatech/learn-graphql-apollo","last_synced_at":"2025-12-27T10:06:34.298Z","repository":{"id":189715150,"uuid":"681082836","full_name":"mirayatech/learn-graphql-apollo","owner":"mirayatech","description":"🚀 Learning GraphQL with Apollo Server for video game data.","archived":false,"fork":false,"pushed_at":"2023-08-21T17:57:18.000Z","size":31,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2023-12-28T15:25:41.434Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/mirayatech.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}},"created_at":"2023-08-21T08:19:05.000Z","updated_at":"2023-12-28T13:01:55.000Z","dependencies_parsed_at":"2023-08-21T18:53:18.538Z","dependency_job_id":null,"html_url":"https://github.com/mirayatech/learn-graphql-apollo","commit_stats":null,"previous_names":["mirayatech/graphql-node","mirayatech/learn-graphql-apollo"],"tags_count":0,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mirayatech%2Flearn-graphql-apollo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mirayatech%2Flearn-graphql-apollo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mirayatech%2Flearn-graphql-apollo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mirayatech%2Flearn-graphql-apollo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mirayatech","download_url":"https://codeload.github.com/mirayatech/learn-graphql-apollo/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225142274,"owners_count":17427405,"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-18T07:18:19.873Z","updated_at":"2025-12-27T10:06:34.277Z","avatar_url":"https://github.com/mirayatech.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 📖 Overview\n\nIn this repository, I'm documenting my progress as I dive deep into the world of GraphQL. With the help of Apollo Server, I've built a GraphQL server and have been actively working on various GraphQL queries and mutations. Join me as I explore this technology and build a simple schema to manage and query video game data.\n\n## 🏗️ Project Structure\n\n### 🚀 index.ts\n\nThe heart of this project is the `index.ts` file. Here's a brief overview of what I've accomplished:\n\n- Setup an Apollo Server, incorporating the defined schema (`typeDefs`) and the corresponding resolvers (`resolvers`).\n- Skillfully crafted resolvers for querying games, authors, reviews, and related data.\n- Added mutations for adding, updating, and deleting games.\n\n### 💾 database.ts\n\nWithin `database.ts`, I've created mock data to serve as the initial dataset for the GraphQL server. This data consists of:\n\n- A collection of video games, each with details such as title, platform, and a unique ID.\n- A list of authors, including their names and verification status.\n- A set of reviews, each linked to an author and a game, complete with ratings and content.\n\n### 📋 schema.ts\n\nIn `schema.ts`, I've defined the GraphQL schema using the Schema Definition Language (SDL). The schema outlines the various types, queries, mutations, and input types utilized in this project:\n\n- Types for `Game`, `Review`, and `Author`, each with their own distinct fields and relationships.\n- Queries designed to fetch games, reviews, authors, and individual items via their unique IDs.\n- Mutations for adding, deleting, and updating game data.\n\n## 🧠 Learning Focus\n\nThis project has been my personal playground for mastering GraphQL. My learning journey has included:\n\n- Crafting a GraphQL schema using SDL.\n- Skillfully implementing GraphQL resolvers to handle queries and mutations.\n- Leveraging Apollo Server to set up a GraphQL server.\n- Engaging in basic CRUD operations (Create, Read, Update, Delete) through GraphQL mutations.\n- Forming connections between GraphQL types, such as the relationships between games, authors, and reviews.\n\n## 📈 My Progress\n\nThroughout this journey, I've achieved various milestones:\n\n- Successfully set up a GraphQL server using Apollo Server.\n- Created a robust schema to define the structure of data.\n- Implemented resolvers to handle queries and mutations with precision.\n- Gained experience in establishing relationships between different types.\n- Improved my ability to model and manipulate data using GraphQL.\n\n## 🚗 Getting Started\n\nTo dive into my learning journey and explore this project on your own:\n\n1. 📦 Clone this repository to your local machine.\n2. ⚙️ Install the necessary dependencies by running `npm install`.\n3. 🚀 Start the server with `npm start`.\n\n\n## 📸\tScreenshots\n\n![Screenshot 2023-08-21 at 19 28 46](https://github.com/mirayatech/learn-graphql-apollo/assets/71933266/f701e573-6e7a-4506-bddd-89ad4a688b83)\n![Screenshot 2023-08-21 at 19 35 05](https://github.com/mirayatech/learn-graphql-apollo/assets/71933266/99be15a9-e0d6-404f-bbd3-5a66134471dc)\n![Screenshot 2023-08-21 at 19 27 48](https://github.com/mirayatech/learn-graphql-apollo/assets/71933266/a60d59ce-d3fc-4de5-9eeb-3573f72ccfc9)\n![Screenshot 2023-08-21 at 15 28 50](https://github.com/mirayatech/learn-graphql-apollo/assets/71933266/7455715b-fc7b-4982-9576-083600df5b4e)\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmirayatech%2Flearn-graphql-apollo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmirayatech%2Flearn-graphql-apollo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmirayatech%2Flearn-graphql-apollo/lists"}