We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a103fc commit a77600aCopy full SHA for a77600a
graphql/examples/searchForPokemonInGerman.gql
@@ -0,0 +1,20 @@
1
+# This query searches for pokemon having a german name like "Ento.*"
2
+# Should return Psyduck and Golduck
3
+
4
+query searchForPokemonInGerman {
5
+ pokemon_v2_pokemonspecies(
6
+ where: {
7
+ pokemon_v2_pokemonspeciesnames: {
8
+ pokemon_v2_language: { name: { _eq: "de" } }
9
+ name: { _regex: "Ento.*" }
10
+ }
11
12
+ ) {
13
+ pokemon_v2_pokemonspeciesnames(
14
+ where: { pokemon_v2_language: { name: { _eq: "de" } } }
15
16
+ name
17
18
+ id
19
20
+}
0 commit comments