Highly ambitious ATProtocol AppView service and sdks
1/**
2 * @generated SignedSource<<1d60598d9699eb8c1961ee2383711bc3>>
3 * @lightSyntaxTransform
4 * @nogrep
5 */
6
7/* tslint:disable */
8/* eslint-disable */
9// @ts-nocheck
10
11import { ConcreteRequest } from 'relay-runtime';
12export type NetworkSlicesActorProfileInput = {
13 avatar?: any | null | undefined;
14 createdAt?: string | null | undefined;
15 description?: string | null | undefined;
16 displayName?: string | null | undefined;
17};
18export type ProfileSettingsUpdateMutation$variables = {
19 input: NetworkSlicesActorProfileInput;
20 rkey: string;
21};
22export type ProfileSettingsUpdateMutation$data = {
23 readonly updateNetworkSlicesActorProfile: {
24 readonly avatar: {
25 readonly url: string;
26 } | null | undefined;
27 readonly description: string | null | undefined;
28 readonly displayName: string | null | undefined;
29 readonly id: string;
30 };
31};
32export type ProfileSettingsUpdateMutation = {
33 response: ProfileSettingsUpdateMutation$data;
34 variables: ProfileSettingsUpdateMutation$variables;
35};
36
37const node: ConcreteRequest = (function(){
38var v0 = {
39 "defaultValue": null,
40 "kind": "LocalArgument",
41 "name": "input"
42},
43v1 = {
44 "defaultValue": null,
45 "kind": "LocalArgument",
46 "name": "rkey"
47},
48v2 = [
49 {
50 "alias": null,
51 "args": [
52 {
53 "kind": "Variable",
54 "name": "input",
55 "variableName": "input"
56 },
57 {
58 "kind": "Variable",
59 "name": "rkey",
60 "variableName": "rkey"
61 }
62 ],
63 "concreteType": "NetworkSlicesActorProfile",
64 "kind": "LinkedField",
65 "name": "updateNetworkSlicesActorProfile",
66 "plural": false,
67 "selections": [
68 {
69 "alias": null,
70 "args": null,
71 "kind": "ScalarField",
72 "name": "id",
73 "storageKey": null
74 },
75 {
76 "alias": null,
77 "args": null,
78 "kind": "ScalarField",
79 "name": "displayName",
80 "storageKey": null
81 },
82 {
83 "alias": null,
84 "args": null,
85 "kind": "ScalarField",
86 "name": "description",
87 "storageKey": null
88 },
89 {
90 "alias": null,
91 "args": null,
92 "concreteType": "Blob",
93 "kind": "LinkedField",
94 "name": "avatar",
95 "plural": false,
96 "selections": [
97 {
98 "alias": null,
99 "args": [
100 {
101 "kind": "Literal",
102 "name": "preset",
103 "value": "avatar"
104 }
105 ],
106 "kind": "ScalarField",
107 "name": "url",
108 "storageKey": "url(preset:\"avatar\")"
109 }
110 ],
111 "storageKey": null
112 }
113 ],
114 "storageKey": null
115 }
116];
117return {
118 "fragment": {
119 "argumentDefinitions": [
120 (v0/*: any*/),
121 (v1/*: any*/)
122 ],
123 "kind": "Fragment",
124 "metadata": null,
125 "name": "ProfileSettingsUpdateMutation",
126 "selections": (v2/*: any*/),
127 "type": "Mutation",
128 "abstractKey": null
129 },
130 "kind": "Request",
131 "operation": {
132 "argumentDefinitions": [
133 (v1/*: any*/),
134 (v0/*: any*/)
135 ],
136 "kind": "Operation",
137 "name": "ProfileSettingsUpdateMutation",
138 "selections": (v2/*: any*/)
139 },
140 "params": {
141 "cacheID": "bad3ba655467b372856e5abf7209c8bd",
142 "id": null,
143 "metadata": {},
144 "name": "ProfileSettingsUpdateMutation",
145 "operationKind": "mutation",
146 "text": "mutation ProfileSettingsUpdateMutation(\n $rkey: String!\n $input: NetworkSlicesActorProfileInput!\n) {\n updateNetworkSlicesActorProfile(rkey: $rkey, input: $input) {\n id\n displayName\n description\n avatar {\n url(preset: \"avatar\")\n }\n }\n}\n"
147 }
148};
149})();
150
151(node as any).hash = "233d9d4e35a9892ec5d8269fd12976c2";
152
153export default node;