Skip to content

Instantly share code, notes, and snippets.

@retrorocket
Created September 24, 2023 10:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save retrorocket/c185d0661324cf338b42597c115683f2 to your computer and use it in GitHub Desktop.
Save retrorocket/c185d0661324cf338b42597c115683f2 to your computer and use it in GitHub Desktop.
pokeaipiのgraphqlでポケモンの図鑑番号と日本語のポケモン名を取得するクエリ
query {
species: pokemon_v2_pokemonspecies(order_by: { id: asc }) {
id
names: pokemon_v2_pokemonspeciesnames(where: { language_id: { _eq: 11 } }) {
name
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment