| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /* 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 iid: string;
- readonly pokedexNumber: number | null;
- readonly nickname: string | null;
- readonly createdAt: any | null;
- readonly updatedAt: any | 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": "iid",
- "args": null,
- "storageKey": null
- },
- {
- "kind": "ScalarField",
- "alias": null,
- "name": "pokedexNumber",
- "args": null,
- "storageKey": null
- },
- {
- "kind": "ScalarField",
- "alias": null,
- "name": "nickname",
- "args": null,
- "storageKey": null
- },
- {
- "kind": "ScalarField",
- "alias": null,
- "name": "createdAt",
- "args": null,
- "storageKey": null
- },
- {
- "kind": "ScalarField",
- "alias": null,
- "name": "updatedAt",
- "args": null,
- "storageKey": null
- }
- ]
- };
- (node as any).hash = '8a2ac0b4888fd3581f1987b05dd2d33b';
- export default node;
|