All Projects → lucasbento → Graphql Pokemon

lucasbento / Graphql Pokemon

Get information of a Pokémon with GraphQL!

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Graphql Pokemon

Create Graphql
Command-line utility to build production-ready servers with GraphQL.
Stars: ✭ 441 (+0%)
Mutual labels:  graphql, relay, koa
Fsharp.data.graphql
FSharp implementation of Facebook GraphQL query language.
Stars: ✭ 320 (-27.44%)
Mutual labels:  graphql, relay
Graphql Starter
💥 Monorepo template (seed project) pre-configured with GraphQL API, PostgreSQL, React, Relay, and Material UI.
Stars: ✭ 3,377 (+665.76%)
Mutual labels:  graphql, relay
Jseg
A super simple, in-memory, JS graph database.
Stars: ✭ 344 (-22%)
Mutual labels:  graphql, relay
Fraql
GraphQL fragments made simple ⚡️
Stars: ✭ 433 (-1.81%)
Mutual labels:  graphql, relay
Node Github Profile Summary
[Temporarily unavailable]The node version of github-profile-summary with GraphQL
Stars: ✭ 261 (-40.82%)
Mutual labels:  graphql, koa
Relay Modern Course
Relay Modern Course
Stars: ✭ 310 (-29.71%)
Mutual labels:  graphql, relay
Graphql Ws
Coherent, zero-dependency, lazy, simple, GraphQL over WebSocket Protocol compliant server and client.
Stars: ✭ 398 (-9.75%)
Mutual labels:  graphql, relay
Parse Server
API server module for Node/Express
Stars: ✭ 19,165 (+4245.8%)
Mutual labels:  graphql, relay
Apollo Upload Examples
A full stack demo of file uploads via GraphQL mutations using Apollo Server and apollo-upload-client.
Stars: ✭ 358 (-18.82%)
Mutual labels:  graphql, koa
koa-server
🗄️ GraphQL Back-end Server with Relay, Koa, MongoDB and Mongoose
Stars: ✭ 31 (-92.97%)
Mutual labels:  relay, koa
Graphql Dataloader Boilerplate
Very simple boilerplate using GraphQL and DataLoader
Stars: ✭ 405 (-8.16%)
Mutual labels:  graphql, relay
Strapi Sdk Javascript
🔌 Official JavaScript SDK for APIs built with Strapi.
Stars: ✭ 247 (-43.99%)
Mutual labels:  graphql, koa
Jobs
Come and join the Entria team
Stars: ✭ 292 (-33.79%)
Mutual labels:  graphql, relay
Awesome Relay
Awesome resources for Relay
Stars: ✭ 246 (-44.22%)
Mutual labels:  graphql, relay
Rescript Relay
Use Relay with ReasonML.
Stars: ✭ 214 (-51.47%)
Mutual labels:  graphql, relay
Relay Workshop
Material for my Relay Workshop
Stars: ✭ 197 (-55.33%)
Mutual labels:  graphql, relay
Django Graphql Auth
Django registration and authentication with GraphQL.
Stars: ✭ 200 (-54.65%)
Mutual labels:  graphql, relay
Absinthe
The GraphQL toolkit for Elixir
Stars: ✭ 3,805 (+762.81%)
Mutual labels:  graphql, relay
Reactjs101
從零開始學 ReactJS(ReactJS 101)是一本希望讓初學者一看就懂的 React 中文入門教學書,由淺入深學習 ReactJS 生態系 (Flux, Redux, React Router, ImmutableJS, React Native, Relay/GraphQL etc.)。
Stars: ✭ 4,004 (+807.94%)
Mutual labels:  graphql, relay

GraphQL Pokémon

Get information of a Pokémon with GraphQL!
See the GraphiQL interface

How to use

Simply get Pokémon's information through queries in GraphQL, example:

query {
  pokemon(name: "Pikachu") {
    id
    number
    name
    attacks {
      special {
        name
        type
        damage
      }
    }
    evolutions {
      id
      number
      name
      weight {
        minimum
        maximum
      }
      attacks {
        fast {
          name
          type
          damage
        }
      }
    }
  }
}

Try this query here!

Check out the React Relay Pokémon Project and Live Demo too!

Running

Production

yarn
yarn run build
yarn start

Development

yarn
yarn run watch # Using nodemon for auto-reloading

Disclaimer

This was built as part of a talk on Relay & GraphQL at @ReactSP meetup, check us out, we build cool stuff. ;)

Related Projects

  • Pokemon Gopher - Fetch information about pokémons with #graphql and #go 🙂
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].