Highly ambitious ATProtocol AppView service and sdks
1/**
2 * @generated SignedSource<<5c8e7333a669c535b9933d9ed7570839>>
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 ProfileSettingsCreateMutation$variables = {
19 input: NetworkSlicesActorProfileInput;
20 rkey?: string | null | undefined;
21};
22export type ProfileSettingsCreateMutation$data = {
23 readonly createNetworkSlicesActorProfile: {
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 ProfileSettingsCreateMutation = {
33 response: ProfileSettingsCreateMutation$data;
34 variables: ProfileSettingsCreateMutation$variables;
35};
36
37const node: ConcreteRequest = (function(){
38var v0 = [
39 {
40 "defaultValue": null,
41 "kind": "LocalArgument",
42 "name": "input"
43 },
44 {
45 "defaultValue": null,
46 "kind": "LocalArgument",
47 "name": "rkey"
48 }
49],
50v1 = [
51 {
52 "alias": null,
53 "args": [
54 {
55 "kind": "Variable",
56 "name": "input",
57 "variableName": "input"
58 },
59 {
60 "kind": "Variable",
61 "name": "rkey",
62 "variableName": "rkey"
63 }
64 ],
65 "concreteType": "NetworkSlicesActorProfile",
66 "kind": "LinkedField",
67 "name": "createNetworkSlicesActorProfile",
68 "plural": false,
69 "selections": [
70 {
71 "alias": null,
72 "args": null,
73 "kind": "ScalarField",
74 "name": "id",
75 "storageKey": null
76 },
77 {
78 "alias": null,
79 "args": null,
80 "kind": "ScalarField",
81 "name": "displayName",
82 "storageKey": null
83 },
84 {
85 "alias": null,
86 "args": null,
87 "kind": "ScalarField",
88 "name": "description",
89 "storageKey": null
90 },
91 {
92 "alias": null,
93 "args": null,
94 "concreteType": "Blob",
95 "kind": "LinkedField",
96 "name": "avatar",
97 "plural": false,
98 "selections": [
99 {
100 "alias": null,
101 "args": [
102 {
103 "kind": "Literal",
104 "name": "preset",
105 "value": "avatar"
106 }
107 ],
108 "kind": "ScalarField",
109 "name": "url",
110 "storageKey": "url(preset:\"avatar\")"
111 }
112 ],
113 "storageKey": null
114 }
115 ],
116 "storageKey": null
117 }
118];
119return {
120 "fragment": {
121 "argumentDefinitions": (v0/*: any*/),
122 "kind": "Fragment",
123 "metadata": null,
124 "name": "ProfileSettingsCreateMutation",
125 "selections": (v1/*: any*/),
126 "type": "Mutation",
127 "abstractKey": null
128 },
129 "kind": "Request",
130 "operation": {
131 "argumentDefinitions": (v0/*: any*/),
132 "kind": "Operation",
133 "name": "ProfileSettingsCreateMutation",
134 "selections": (v1/*: any*/)
135 },
136 "params": {
137 "cacheID": "23b8ee7e804963e66bfdda834c3e8953",
138 "id": null,
139 "metadata": {},
140 "name": "ProfileSettingsCreateMutation",
141 "operationKind": "mutation",
142 "text": "mutation ProfileSettingsCreateMutation(\n $input: NetworkSlicesActorProfileInput!\n $rkey: String\n) {\n createNetworkSlicesActorProfile(input: $input, rkey: $rkey) {\n id\n displayName\n description\n avatar {\n url(preset: \"avatar\")\n }\n }\n}\n"
143 }
144};
145})();
146
147(node as any).hash = "02c84d4bb7f1823aa27e23a8bbce0c73";
148
149export default node;