| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- /* tslint:disable */
- import { ConcreteRequest } from "relay-runtime";
- type Show_pokemon$ref = any;
- export type AppPokemonIndexQueryVariables = {};
- export type AppPokemonIndexQueryResponse = {
- readonly pokemonConnection: {
- readonly edges: ReadonlyArray<{
- readonly node: {
- readonly id: string;
- readonly " $fragmentRefs": Show_pokemon$ref;
- } | null;
- } | null> | null;
- };
- };
- export type AppPokemonIndexQuery = {
- readonly response: AppPokemonIndexQueryResponse;
- readonly variables: AppPokemonIndexQueryVariables;
- };
- /*
- query AppPokemonIndexQuery {
- pokemonConnection {
- edges {
- node {
- id
- ...Show_pokemon
- }
- }
- }
- }
- fragment Show_pokemon on Pokemon {
- id
- iid
- nickname
- pokedexNumber
- }
- */
- const node: ConcreteRequest = (function(){
- var v0 = {
- "kind": "ScalarField",
- "alias": null,
- "name": "id",
- "args": null,
- "storageKey": null
- };
- return {
- "kind": "Request",
- "fragment": {
- "kind": "Fragment",
- "name": "AppPokemonIndexQuery",
- "type": "Query",
- "metadata": null,
- "argumentDefinitions": [],
- "selections": [
- {
- "kind": "LinkedField",
- "alias": null,
- "name": "pokemonConnection",
- "storageKey": null,
- "args": null,
- "concreteType": "PokemonConnection",
- "plural": false,
- "selections": [
- {
- "kind": "LinkedField",
- "alias": null,
- "name": "edges",
- "storageKey": null,
- "args": null,
- "concreteType": "PokemonEdge",
- "plural": true,
- "selections": [
- {
- "kind": "LinkedField",
- "alias": null,
- "name": "node",
- "storageKey": null,
- "args": null,
- "concreteType": "Pokemon",
- "plural": false,
- "selections": [
- (v0/*: any*/),
- {
- "kind": "FragmentSpread",
- "name": "Show_pokemon",
- "args": null
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- },
- "operation": {
- "kind": "Operation",
- "name": "AppPokemonIndexQuery",
- "argumentDefinitions": [],
- "selections": [
- {
- "kind": "LinkedField",
- "alias": null,
- "name": "pokemonConnection",
- "storageKey": null,
- "args": null,
- "concreteType": "PokemonConnection",
- "plural": false,
- "selections": [
- {
- "kind": "LinkedField",
- "alias": null,
- "name": "edges",
- "storageKey": null,
- "args": null,
- "concreteType": "PokemonEdge",
- "plural": true,
- "selections": [
- {
- "kind": "LinkedField",
- "alias": null,
- "name": "node",
- "storageKey": null,
- "args": null,
- "concreteType": "Pokemon",
- "plural": false,
- "selections": [
- (v0/*: any*/),
- {
- "kind": "ScalarField",
- "alias": null,
- "name": "iid",
- "args": null,
- "storageKey": null
- },
- {
- "kind": "ScalarField",
- "alias": null,
- "name": "nickname",
- "args": null,
- "storageKey": null
- },
- {
- "kind": "ScalarField",
- "alias": null,
- "name": "pokedexNumber",
- "args": null,
- "storageKey": null
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- },
- "params": {
- "operationKind": "query",
- "name": "AppPokemonIndexQuery",
- "id": null,
- "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 = 'bd8d28f417b6cf2d9c83547f6107b4a8';
- export default node;
|