1import { graphql } from './graphql'; 2import { Pokemon } from './fragment'; 3 4const x = graphql(` 5 query Pok($limit: Int!) { 6 pokemons(limit: $limit) { 7 id 8 name 9 } 10 } 11`); 12 13console.log(Pokemon);