Coder Social home page Coder Social logo

pokemon-tcg-graphql's Introduction

Unofficial GraphQL for Pokemon TCG API


Example query:

query($name: String!, $pageSize: Int){
  pokemoncards(name: $name,pageSize: $pageSize) {
    name,
    hp,
    number,
    rarity,
    image
  }
}

{
  "name": "Charizard-GX",
  "pageSize": 5
}


Example response:

{
  "data": {
    "pokemoncards": [
      {
        "name": "Charizard-GX",
        "hp": "250",
        "number": "9",
        "rarity": "Rare Holo GX",
        "image": "https://images.pokemontcg.io/sm115/9.png"
      },
      {
        "name": "Reshiram & Charizard-GX",
        "hp": "270",
        "number": "20",
        "rarity": "Rare Holo GX",
        "image": "https://images.pokemontcg.io/sm10/20.png"
      },
      {
        "name": "Charizard-GX",
        "hp": "250",
        "number": "20",
        "rarity": "Rare Holo GX",
        "image": "https://images.pokemontcg.io/sm3/20.png"
      },
      {
        "name": "Charizard-GX",
        "hp": "250",
        "number": "SV49",
        "rarity": "Rare Shiny GX",
        "image": "https://images.pokemontcg.io/sma/SV49.png"
      },
      {
        "name": "Charizard-GX",
        "hp": "250",
        "number": "SM60",
        "rarity": "Promo",
        "image": "https://images.pokemontcg.io/smp/SM60.png"
      }
    ]
  }
}


Installation

npm install

Create a .env file with Pokemon TCG API Key which you can get from here

To start:

npm run dev

Visit the GraphQL explorer at http://localhost:4000

pokemon-tcg-graphql's People

Contributors

kernelshreyak avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.