Follow the adventures of Pokemon trainers, their teams, and achievements!
query TrainerProfile {
trainer(id: "ash-ketchum") {
id
name
trainerId
hometown
badges {
name
city
}
}
}
See a trainer's current team composition:
query TrainerTeam {
trainer(id: "misty") {
name
pokemon {
name
types
level
nickname
friendship
heldItem {
name
}
moves {
name
type
power
accuracy
}
}
}
}
Explore trainer battle statistics:
query TrainerBattles {
trainer(id: "gary-oak") {
name
hometown
battleRecord {
totalBattles
wins
losses
winRate
winStreak
bestWinStreak
}
}
}
Explore trainer's items and resources:
query TrainerInventory {
trainer(id: "ash-ketchum") {
name
items {
item {
id
name
description
}
quantity
}
pokemon {
name
types
heldItem {
name
description
}
}
}
}
Explore gym leaders and their specialties:
query GymLeaders {
gymLeaders(region: KANTO) {
id
name
hometown
badges {
name
city
}
pokemon {
name
types
level
}
battleRecord {
totalBattles
wins
winRate
}
}
}
Find all Pokemon owned by a specific trainer:
query PokemonByTrainer {
pokemonByTrainer(trainerId: "misty") {
id
name
types
level
nature
isShiny
trainer {
name
}
}
}