1import { graphql } from './gql/gql'; 2 3const x = graphql(` 4 query Pok($limit: Int!) { 5 pokemons(limit: $limit) { 6 id 7 name 8 fleeRate 9 classification 10 ...pokemonFields 11 __typename 12 } 13 } 14`);