|
|
@@ -2,8 +2,8 @@
|
|
|
|
|
|
import { ConcreteRequest } from "relay-runtime";
|
|
|
import { Show_pokemon$ref } from "./Show_pokemon.graphql";
|
|
|
-export type IndexQueryVariables = {};
|
|
|
-export type IndexQueryResponse = {
|
|
|
+export type AppPokemonIndexQueryVariables = {};
|
|
|
+export type AppPokemonIndexQueryResponse = {
|
|
|
readonly pokemonConnection: {
|
|
|
readonly edges: ReadonlyArray<{
|
|
|
readonly node: {
|
|
|
@@ -13,15 +13,15 @@ export type IndexQueryResponse = {
|
|
|
} | null> | null;
|
|
|
};
|
|
|
};
|
|
|
-export type IndexQuery = {
|
|
|
- readonly response: IndexQueryResponse;
|
|
|
- readonly variables: IndexQueryVariables;
|
|
|
+export type AppPokemonIndexQuery = {
|
|
|
+ readonly response: AppPokemonIndexQueryResponse;
|
|
|
+ readonly variables: AppPokemonIndexQueryVariables;
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
-query IndexQuery {
|
|
|
+query AppPokemonIndexQuery {
|
|
|
pokemonConnection {
|
|
|
edges {
|
|
|
node {
|
|
|
@@ -52,7 +52,7 @@ return {
|
|
|
"kind": "Request",
|
|
|
"fragment": {
|
|
|
"kind": "Fragment",
|
|
|
- "name": "IndexQuery",
|
|
|
+ "name": "AppPokemonIndexQuery",
|
|
|
"type": "Query",
|
|
|
"metadata": null,
|
|
|
"argumentDefinitions": [],
|
|
|
@@ -100,7 +100,7 @@ return {
|
|
|
},
|
|
|
"operation": {
|
|
|
"kind": "Operation",
|
|
|
- "name": "IndexQuery",
|
|
|
+ "name": "AppPokemonIndexQuery",
|
|
|
"argumentDefinitions": [],
|
|
|
"selections": [
|
|
|
{
|
|
|
@@ -162,12 +162,12 @@ return {
|
|
|
},
|
|
|
"params": {
|
|
|
"operationKind": "query",
|
|
|
- "name": "IndexQuery",
|
|
|
+ "name": "AppPokemonIndexQuery",
|
|
|
"id": null,
|
|
|
- "text": "query IndexQuery {\n pokemonConnection {\n edges {\n node {\n id\n ...Show_pokemon\n }\n }\n }\n}\n\nfragment Show_pokemon on Pokemon {\n id\n iid\n nickname\n pokedexNumber\n}\n",
|
|
|
+ "text": "query AppPokemonIndexQuery {\n pokemonConnection {\n edges {\n node {\n id\n ...Show_pokemon\n }\n }\n }\n}\n\nfragment Show_pokemon on Pokemon {\n id\n iid\n nickname\n pokedexNumber\n}\n",
|
|
|
"metadata": {}
|
|
|
}
|
|
|
};
|
|
|
})();
|
|
|
-(node as any).hash = 'd0f65678ccc4dbf9f8b745dd0213a802';
|
|
|
+(node as any).hash = 'bd8d28f417b6cf2d9c83547f6107b4a8';
|
|
|
export default node;
|