show_pokemon.graphql.ts 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* tslint:disable */
  2. import { ReaderFragment } from "relay-runtime";
  3. declare const _show_pokemon$ref: unique symbol;
  4. export type show_pokemon$ref = typeof _show_pokemon$ref;
  5. export type show_pokemon = {
  6. readonly iid: string;
  7. readonly pokedexNumber: number | null;
  8. readonly nickname: string | null;
  9. readonly createdAt: any | null;
  10. readonly updatedAt: any | null;
  11. readonly " $refType": show_pokemon$ref;
  12. };
  13. const node: ReaderFragment = {
  14. "kind": "Fragment",
  15. "name": "show_pokemon",
  16. "type": "Pokemon",
  17. "metadata": null,
  18. "argumentDefinitions": [],
  19. "selections": [
  20. {
  21. "kind": "ScalarField",
  22. "alias": null,
  23. "name": "iid",
  24. "args": null,
  25. "storageKey": null
  26. },
  27. {
  28. "kind": "ScalarField",
  29. "alias": null,
  30. "name": "pokedexNumber",
  31. "args": null,
  32. "storageKey": null
  33. },
  34. {
  35. "kind": "ScalarField",
  36. "alias": null,
  37. "name": "nickname",
  38. "args": null,
  39. "storageKey": null
  40. },
  41. {
  42. "kind": "ScalarField",
  43. "alias": null,
  44. "name": "createdAt",
  45. "args": null,
  46. "storageKey": null
  47. },
  48. {
  49. "kind": "ScalarField",
  50. "alias": null,
  51. "name": "updatedAt",
  52. "args": null,
  53. "storageKey": null
  54. }
  55. ]
  56. };
  57. (node as any).hash = '8a2ac0b4888fd3581f1987b05dd2d33b';
  58. export default node;