Im making a social media app. All user data is child of username object. For example
root:
+users:
+ricksanchez:
+name:"Rick Sanchez";
+email:"rick@sanchez.com";
+bio:"I'm super smart";
+followers:
+follower1:morty;
+follower2:summer;
....
How to change ricksanchez key without losing data?
Is it possible to rename a key in the Firebase Realtime Database?
I checked out this question but im quite new in coding.I guess thats not Java.Do you know how to do it in Java?