|
|
@@ -0,0 +1,115 @@
|
|
|
+/* tslint:disable */
|
|
|
+
|
|
|
+import { ConcreteRequest } from "relay-runtime";
|
|
|
+export type User_QueryVariables = {};
|
|
|
+export type User_QueryResponse = {
|
|
|
+ readonly me: {
|
|
|
+ readonly iid: string;
|
|
|
+ readonly username: string | null;
|
|
|
+ readonly email: string | null;
|
|
|
+ } | null;
|
|
|
+};
|
|
|
+export type User_Query = {
|
|
|
+ readonly response: User_QueryResponse;
|
|
|
+ readonly variables: User_QueryVariables;
|
|
|
+};
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+/*
|
|
|
+query User_Query {
|
|
|
+ me {
|
|
|
+ iid
|
|
|
+ username
|
|
|
+ email
|
|
|
+ id
|
|
|
+ }
|
|
|
+}
|
|
|
+*/
|
|
|
+
|
|
|
+const node: ConcreteRequest = (function(){
|
|
|
+var v0 = {
|
|
|
+ "kind": "ScalarField",
|
|
|
+ "alias": null,
|
|
|
+ "name": "iid",
|
|
|
+ "args": null,
|
|
|
+ "storageKey": null
|
|
|
+},
|
|
|
+v1 = {
|
|
|
+ "kind": "ScalarField",
|
|
|
+ "alias": null,
|
|
|
+ "name": "username",
|
|
|
+ "args": null,
|
|
|
+ "storageKey": null
|
|
|
+},
|
|
|
+v2 = {
|
|
|
+ "kind": "ScalarField",
|
|
|
+ "alias": null,
|
|
|
+ "name": "email",
|
|
|
+ "args": null,
|
|
|
+ "storageKey": null
|
|
|
+};
|
|
|
+return {
|
|
|
+ "kind": "Request",
|
|
|
+ "fragment": {
|
|
|
+ "kind": "Fragment",
|
|
|
+ "name": "User_Query",
|
|
|
+ "type": "Query",
|
|
|
+ "metadata": null,
|
|
|
+ "argumentDefinitions": [],
|
|
|
+ "selections": [
|
|
|
+ {
|
|
|
+ "kind": "LinkedField",
|
|
|
+ "alias": null,
|
|
|
+ "name": "me",
|
|
|
+ "storageKey": null,
|
|
|
+ "args": null,
|
|
|
+ "concreteType": "User",
|
|
|
+ "plural": false,
|
|
|
+ "selections": [
|
|
|
+ (v0/*: any*/),
|
|
|
+ (v1/*: any*/),
|
|
|
+ (v2/*: any*/)
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "operation": {
|
|
|
+ "kind": "Operation",
|
|
|
+ "name": "User_Query",
|
|
|
+ "argumentDefinitions": [],
|
|
|
+ "selections": [
|
|
|
+ {
|
|
|
+ "kind": "LinkedField",
|
|
|
+ "alias": null,
|
|
|
+ "name": "me",
|
|
|
+ "storageKey": null,
|
|
|
+ "args": null,
|
|
|
+ "concreteType": "User",
|
|
|
+ "plural": false,
|
|
|
+ "selections": [
|
|
|
+ (v0/*: any*/),
|
|
|
+ (v1/*: any*/),
|
|
|
+ (v2/*: any*/),
|
|
|
+ {
|
|
|
+ "kind": "ScalarField",
|
|
|
+ "alias": null,
|
|
|
+ "name": "id",
|
|
|
+ "args": null,
|
|
|
+ "storageKey": null
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "params": {
|
|
|
+ "operationKind": "query",
|
|
|
+ "name": "User_Query",
|
|
|
+ "id": null,
|
|
|
+ "text": "query User_Query {\n me {\n iid\n username\n email\n id\n }\n}\n",
|
|
|
+ "metadata": {}
|
|
|
+ }
|
|
|
+};
|
|
|
+})();
|
|
|
+(node as any).hash = 'a2d5191273ecf6cdfbab27d81693a978';
|
|
|
+export default node;
|