get()
You can get your data using with get()
Syntax
db.get(path)
Path; Path is a string, split with dot and required.
Example
let user = db.get("user.john")
console.log(user)
/*
{
name:"John",
surname:"Doe",
age:18
}
*/
If you have not setup check this page 👇
Last updated
Was this helpful?