Create weakestPokemonAbleToBeatFireRedAlone.gql

This commit is contained in:
Alessandro Pezzè 2021-11-26 12:39:13 +01:00 committed by GitHub
parent 353f8e0fd6
commit fabc77d7df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,32 @@
query weakestPokemonAbleToBeatFireRedAlone {
pokemon: pokemon_v2_pokemon(
where: {
_and: {
pokemon_v2_pokemonspecy: {pokemon_v2_generation: {name: {_eq: "generation-i"}}}
pokemon_v2_pokemonmoves: {
pokemon_v2_move: {name: {_eq: "strength"}}
},
_and: {
pokemon_v2_pokemonmoves: {
pokemon_v2_move: {name: {_eq: "cut"}}
}
_and: {
pokemon_v2_pokemonmoves: {
pokemon_v2_move: {name: {_eq: "surf"}}
}
}
}
}
},
order_by:{
base_experience: asc
},
limit: 1
) {
species: pokemon_v2_pokemonspecy {
englishName: pokemon_v2_pokemonspeciesnames(where: {pokemon_v2_language: {name: {_eq: "en"}}}) {
name
}
}
}
}