Instead of calling instance.Object and supplying keys everytime doing the following below would be shorter.
Example would be.
//known ref with key
await instance.Ref("test/somekey/nested/somekey").save({new:"content"});
//singular
await instance.Ref("test/object").save({new:"content"})
Instead of calling instance.Object and supplying keys everytime doing the following below would be shorter.
Example would be.