{"id":13624934,"url":"https://github.com/lucasbento/graphql-pokemon","last_synced_at":"2025-04-05T04:15:05.059Z","repository":{"id":46324025,"uuid":"69925705","full_name":"lucasbento/graphql-pokemon","owner":"lucasbento","description":"Get information of a Pokémon with GraphQL!","archived":false,"fork":false,"pushed_at":"2022-12-06T22:36:52.000Z","size":243,"stargazers_count":500,"open_issues_count":11,"forks_count":77,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-03-28T10:53:56.645Z","etag":null,"topics":["graphql","koa","nodejs","react-relay-pokemon","relay"],"latest_commit_sha":null,"homepage":"https://graphql-pokemon.now.sh/","language":"JavaScript","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/lucasbento.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}},"created_at":"2016-10-04T01:37:09.000Z","updated_at":"2025-02-21T02:51:38.000Z","dependencies_parsed_at":"2023-01-23T13:30:20.049Z","dependency_job_id":null,"html_url":"https://github.com/lucasbento/graphql-pokemon","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/lucasbento%2Fgraphql-pokemon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucasbento%2Fgraphql-pokemon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucasbento%2Fgraphql-pokemon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucasbento%2Fgraphql-pokemon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lucasbento","download_url":"https://codeload.github.com/lucasbento/graphql-pokemon/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247284954,"owners_count":20913704,"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":["graphql","koa","nodejs","react-relay-pokemon","relay"],"created_at":"2024-08-01T21:01:48.369Z","updated_at":"2025-04-05T04:15:05.033Z","avatar_url":"https://github.com/lucasbento.png","language":"JavaScript","funding_links":[],"categories":["JavaScript","Libraries","Development Projects"],"sub_categories":["JavaScript Libraries"],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://github.com/lucasbento/graphql-pokemon/raw/master/content/logo.png\"\u003e\n\u003c/p\u003e\n\n\u003ch1 align=\"center\"\u003eGraphQL Pokémon\u003c/h1\u003e\n\u003cp align=\"center\"\u003e\n  Get information of a Pokémon with GraphQL!\u003cbr /\u003e\n  \u003ca href=\"https://graphql-pokemon.now.sh/\"\u003eSee the GraphiQL interface\u003c/a\u003e\n\u003c/p\u003e\n\n## How to use\n\nSimply get Pokémon's information through queries in GraphQL, example:\n\n```graphql\nquery {\n  pokemon(name: \"Pikachu\") {\n    id\n    number\n    name\n    attacks {\n      special {\n        name\n        type\n        damage\n      }\n    }\n    evolutions {\n      id\n      number\n      name\n      weight {\n        minimum\n        maximum\n      }\n      attacks {\n        fast {\n          name\n          type\n          damage\n        }\n      }\n    }\n  }\n}\n```\n\n\u003e Try this query [here](https://graphql-pokemon.now.sh/?query=%7B%0A%20%20pokemon(name%3A%20%22Pikachu%22)%20%7B%0A%20%20%20%20id%0A%20%20%20%20number%0A%20%20%20%20name%0A%20%20%20%20attacks%20%7B%0A%20%20%20%20%20%20special%20%7B%0A%20%20%20%20%20%20%20%20name%0A%20%20%20%20%20%20%20%20type%0A%20%20%20%20%20%20%20%20damage%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%20%20evolutions%20%7B%0A%20%20%20%20%20%20id%0A%20%20%20%20%20%20number%0A%20%20%20%20%20%20name%0A%20%20%20%20%20%20weight%20%7B%0A%20%20%20%20%20%20%20%20minimum%0A%20%20%20%20%20%20%20%20maximum%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20attacks%20%7B%0A%20%20%20%20%20%20%20%20fast%20%7B%0A%20%20%20%20%20%20%20%20%20%20name%0A%20%20%20%20%20%20%20%20%20%20type%0A%20%20%20%20%20%20%20%20%20%20damage%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D)!\n\n\u003e Check out the [React Relay Pokémon Project](https://github.com/lucasbento/react-relay-pokemon) and [Live Demo](https://react-relay-pokemon.now.sh/) too!\n\n## Running\n\n### Production\n\n```sh\nyarn\nyarn run build-app\nyarn start\n```\n\n### Development\n\n```sh\nyarn\nyarn run watch # Using nodemon for auto-reloading\n\nor\n\nvercel dev # npm i -g @now/cli\n```\n\n## Disclaimer\n\nThis was built as part of a talk on Relay \u0026 GraphQL at [@ReactSP](https://meetup.com/pt-BR/ReactJS-SP) meetup, check us out, we build cool stuff. ;)\n\n## Related Projects\n\n* [Pokemon Gopher](https://github.com/racerxdl/pokemon-gopher) - Fetch information about pokémons with GraphQL and GO 🙂\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flucasbento%2Fgraphql-pokemon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flucasbento%2Fgraphql-pokemon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flucasbento%2Fgraphql-pokemon/lists"}