-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
50 lines (42 loc) · 865 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
const { GraphQLServer } = require("graphql-yoga");
const fetch = require("node-fetch");
const typeDefs = `
type Query {
getPokemon(id: Int!): Pokemon
}
type Pokemon {
id: Int
name: String
height: Int
abilities: [AbilityObj]
stats: [StatObj]
}
type AbilityObj {
slot: Int
is_hidden: Boolean
ability: Ability
}
type Ability {
name: String
url: String
}
type StatObj {
effort: Int
base_stat: Int
stat: Stat
}
type Stat {
name: String
url: String
}
`;
const resolvers = {
Query: {
getPokemon: async (_, { id }) => {
const response = await fetch(`http://pokeapi.co/api/v2/pokemon/${id}`);
return response.json();
}
}
};
const server = new GraphQLServer({ typeDefs, resolvers });
server.start(() => console.log("Server is running on localhost:4000"));