| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /* tslint:disable */
- import { ReaderFragment } from "relay-runtime";
- declare const _Show_pokemon$ref: unique symbol;
- export type Show_pokemon$ref = typeof _Show_pokemon$ref;
- export type Show_pokemon = {
- readonly id: string;
- readonly iid: string;
- readonly nickname: string | null;
- readonly pokedexNumber: number | null;
- readonly " $refType": Show_pokemon$ref;
- };
- const node: ReaderFragment = {
- "kind": "Fragment",
- "name": "Show_pokemon",
- "type": "Pokemon",
- "metadata": null,
- "argumentDefinitions": [],
- "selections": [
- {
- "kind": "ScalarField",
- "alias": null,
- "name": "id",
- "args": null,
- "storageKey": null
- },
- {
- "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
- }
- ]
- };
- (node as any).hash = 'fa2ea53fc6df10adfbe4e2559578ac06';
- export default node;
|