docs: add query

This commit is contained in:
Alessandro Pezzè 2023-01-13 12:41:53 +01:00
parent 3a103fc658
commit a77600ab8d

View file

@ -0,0 +1,20 @@
# 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
}
}