mirror of
https://github.com/PokeAPI/pokeapi
synced 2024-11-22 03:13:06 +00:00
20 lines
465 B
GraphQL
20 lines
465 B
GraphQL
# This query searches for pokemon having a german name like "Ento.*"
|
|
# Should return Psyduck and Golduck
|
|
|
|
query searchForPokemonInGerman {
|
|
pokemon_v2_pokemonspecies(
|
|
where: {
|
|
pokemon_v2_pokemonspeciesnames: {
|
|
pokemon_v2_language: { name: { _eq: "de" } }
|
|
name: { _regex: "Ento.*" }
|
|
}
|
|
}
|
|
) {
|
|
pokemon_v2_pokemonspeciesnames(
|
|
where: { pokemon_v2_language: { name: { _eq: "de" } } }
|
|
) {
|
|
name
|
|
}
|
|
id
|
|
}
|
|
}
|