{"id":18607360,"url":"https://github.com/addono/graphql-yoga-ts-example","last_synced_at":"2025-11-02T15:30:25.762Z","repository":{"id":42691059,"uuid":"309939177","full_name":"Addono/graphql-yoga-ts-example","owner":"Addono","description":"A toy example of a GraphQL server written in TypeScript.","archived":false,"fork":false,"pushed_at":"2023-03-05T15:23:39.000Z","size":330,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-12-27T00:27:26.768Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Addono.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-11-04T08:24:27.000Z","updated_at":"2021-09-21T18:32:13.000Z","dependencies_parsed_at":"2024-12-27T00:27:12.242Z","dependency_job_id":"bff1b20e-5a7f-4747-83cc-45719a05a259","html_url":"https://github.com/Addono/graphql-yoga-ts-example","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/Addono%2Fgraphql-yoga-ts-example","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Addono%2Fgraphql-yoga-ts-example/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Addono%2Fgraphql-yoga-ts-example/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Addono%2Fgraphql-yoga-ts-example/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Addono","download_url":"https://codeload.github.com/Addono/graphql-yoga-ts-example/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239395877,"owners_count":19631336,"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-07T02:29:10.449Z","updated_at":"2025-11-02T15:30:25.717Z","avatar_url":"https://github.com/Addono.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!-- PROJECT SHIELDS --\u003e\n\n[![Contributors][contributors-shield]][contributors-url]\n[![Forks][forks-shield]][forks-url]\n[![Stargazers][stars-shield]][stars-url]\n[![Issues][issues-shield]][issues-url]\n[![MIT License][license-shield]][license-url]\n[![Test pipeline][test-pipeline-shield]][test-pipeline-url]\n\n\u003c!-- PROJECT LOGO --\u003e\n\u003cbr /\u003e\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/addono/graphql-yoga-ts-example\"\u003e\n    \u003cimg src=\"https://raw.githubusercontent.com/graphql/graphql.github.io/source/static/img/logo.svg\" alt=\"Logo\" width=\"80\" height=\"80\"\u003e\n  \u003c/a\u003e\n\n  \u003ch3 align=\"center\"\u003eGraphQL-Yoga + TypeScript Example \u003c/h3\u003e\n\n  \u003cp align=\"center\"\u003e\n    A toy example of a GraphQL server written in TypeScript.\n    \u003c!--\u003cbr /\u003e\n    \u003ca href=\"https://github.com/addono/graphql-yoga-ts-example\"\u003e\u003cstrong\u003eExplore the docs »\u003c/strong\u003e\u003c/a\u003e\n    --\u003e\n    \u003cbr /\u003e\n    \u003cbr /\u003e\n    \u003ca href=\"https://github.com/addono/graphql-yoga-ts-example/issues\"\u003eReport Bug\u003c/a\u003e\n    ·\n    \u003ca href=\"https://github.com/addono/graphql-yoga-ts-example/issues\"\u003eRequest Feature\u003c/a\u003e\n  \u003c/p\u003e\n\n\u003c/p\u003e\n\n\u003c!-- TABLE OF CONTENTS --\u003e\n\n## Table of Contents\n\n- [Getting Started](#getting-started)\n  - [Prerequisites](#prerequisites)\n  - [Installation](#installation)\n- [Usage](#usage)\n- [Contributing](#contributing)\n- [License](#license)\n\n\u003c!-- GETTING STARTED --\u003e\n\n## Getting Started\n\nTo get a local copy up and running follow these simple steps.\n\n### Prerequisites\n\nYou need the following applications to be able to run this repo:\n\n- Node.js\n- Yarn\n\n### Installation\n\n1. Clone the repo\n\n```sh\ngit clone https://github.com/Addono/graphql-yoga-ts-example.git\n```\n\n2. Install Yarn packages\n\n```sh\nyarn install --frozen-lockfile\n```\n\n\u003c!-- USAGE EXAMPLES --\u003e\n\n## Usage\n\nFirst, start the server:\n\n```sh\nyarn run start\n```\n\nThen you can interact with the GraphQL endpoint at http://localhost:5000.\n\nFor example, the following query will create a new user named Bob:\n\n```graphql\nmutation {\n  createUser(name: \"Bob\") {\n    id\n    name\n  }\n}\n```\n\nAnd this query gets you the name and id of all registered users:\n\n```graphql\nquery {\n  users {\n    name\n    id\n  }\n}\n```\n\n\u003c!-- CONTRIBUTING --\u003e\n\n## Contributing\n\nContributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are **greatly appreciated**.\n\n1. Fork the Project\n2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)\n4. Push to the Branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n\n\u003c!-- LICENSE --\u003e\n\n## License\n\nDistributed under the MIT License. See `LICENSE` for more information.\n\n\u003c!-- MARKDOWN LINKS \u0026 IMAGES --\u003e\n\u003c!-- https://www.markdownguide.org/basic-syntax/#reference-style-links --\u003e\n\n[contributors-shield]: https://img.shields.io/github/contributors/addono/graphql-yoga-ts-example.svg?style=flat-square\n[contributors-url]: https://github.com/addono/graphql-yoga-ts-example/graphs/contributors\n[forks-shield]: https://img.shields.io/github/forks/addono/graphql-yoga-ts-example.svg?style=flat-square\n[forks-url]: https://github.com/addono/graphql-yoga-ts-example/network/members\n[stars-shield]: https://img.shields.io/github/stars/addono/graphql-yoga-ts-example.svg?style=flat-square\n[stars-url]: https://github.com/addono/graphql-yoga-ts-example/stargazers\n[issues-shield]: https://img.shields.io/github/issues/addono/graphql-yoga-ts-example.svg?style=flat-square\n[issues-url]: https://github.com/addono/graphql-yoga-ts-example/issues\n[license-shield]: https://img.shields.io/github/license/addono/graphql-yoga-ts-example.svg?style=flat-square\n[license-url]: https://github.com/addono/graphql-yoga-ts-example/blob/main/LICENSE\n[test-pipeline-shield]: https://img.shields.io/github/workflow/status/Addono/graphql-yoga-ts-example/Test?style=flat-square\u0026logo=github%20actions\n[test-pipeline-url]: https://github.com/Addono/graphql-yoga-ts-example/actions?query=workflow%3ATest\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faddono%2Fgraphql-yoga-ts-example","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faddono%2Fgraphql-yoga-ts-example","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faddono%2Fgraphql-yoga-ts-example/lists"}