In Linux one can create a symbolic link. Using the ln
command you could make one path location "see" the folder content of another location.
I'd like to do the same things in firebase's Realtime Database. I'd like to take viewerPath
and let it "see" the data that exists at ownerPath
. I could copy the data over, but I'd need to keep doing it every time ownerPath
is updated. If I could add something like a symbolic link instead this would be a more elegant and clean solution.
Is this possible in firebase? Have not managed to find a definite answer.