| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- /* tslint:disable */
- import { ConcreteRequest } from "relay-runtime";
- export type relayTestQueryVariables = {};
- export type relayTestQueryResponse = {
- readonly manyPokemon: ReadonlyArray<{
- readonly id: string;
- readonly iid: string;
- readonly nickname: string | null;
- }>;
- };
- export type relayTestQuery = {
- readonly response: relayTestQueryResponse;
- readonly variables: relayTestQueryVariables;
- };
- /*
- query relayTestQuery {
- manyPokemon {
- id
- iid
- nickname
- }
- }
- */
- const node: ConcreteRequest = (function(){
- var v0 = [
- {
- "kind": "LinkedField",
- "alias": null,
- "name": "manyPokemon",
- "storageKey": null,
- "args": null,
- "concreteType": "Pokemon",
- "plural": true,
- "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
- }
- ]
- }
- ];
- return {
- "kind": "Request",
- "fragment": {
- "kind": "Fragment",
- "name": "relayTestQuery",
- "type": "Query",
- "metadata": null,
- "argumentDefinitions": [],
- "selections": (v0/*: any*/)
- },
- "operation": {
- "kind": "Operation",
- "name": "relayTestQuery",
- "argumentDefinitions": [],
- "selections": (v0/*: any*/)
- },
- "params": {
- "operationKind": "query",
- "name": "relayTestQuery",
- "id": null,
- "text": "query relayTestQuery {\n manyPokemon {\n id\n iid\n nickname\n }\n}\n",
- "metadata": {}
- }
- };
- })();
- (node as any).hash = '5eed67aa0a2af74dfb92fe2656178710';
- export default node;
|