-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAppQuery.graphql.ts
More file actions
79 lines (74 loc) · 1.73 KB
/
AppQuery.graphql.ts
File metadata and controls
79 lines (74 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/**
* @generated SignedSource<<93944f03eea1c55a7246fc70920b8db2>>
* @lightSyntaxTransform
* @nogrep
*/
/* tslint:disable */
/* eslint-disable */
// @ts-nocheck
import { ConcreteRequest, Query } from 'relay-runtime';
import { FragmentRefs } from "relay-runtime";
export type AppQuery$variables = Record<PropertyKey, never>;
export type AppQuery$data = {
readonly greeting: string;
readonly " $fragmentSpreads": FragmentRefs<"AppChildComponent">;
};
export type AppQuery = {
response: AppQuery$data;
variables: AppQuery$variables;
};
const node: ConcreteRequest = (function(){
var v0 = {
"alias": null,
"args": null,
"kind": "ScalarField",
"name": "greeting",
"storageKey": null
};
return {
"fragment": {
"argumentDefinitions": [],
"kind": "Fragment",
"metadata": {
"throwOnFieldError": true
},
"name": "AppQuery",
"selections": [
(v0/*: any*/),
{
"args": null,
"kind": "FragmentSpread",
"name": "AppChildComponent"
}
],
"type": "Query",
"abstractKey": null
},
"kind": "Request",
"operation": {
"argumentDefinitions": [],
"kind": "Operation",
"name": "AppQuery",
"selections": [
(v0/*: any*/),
{
"alias": null,
"args": null,
"kind": "ScalarField",
"name": "alwaysThrows",
"storageKey": null
}
]
},
"params": {
"cacheID": "cef14ef62f51982e1cc6cd9125825124",
"id": null,
"metadata": {},
"name": "AppQuery",
"operationKind": "query",
"text": "query AppQuery {\n greeting\n ...AppChildComponent\n}\n\nfragment AppChildComponent on Query {\n alwaysThrows\n}\n"
}
};
})();
(node as any).hash = "3bdff508424f47c80c1bd6d267c74c40";
export default node;