-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Labels
Description
It's easy to imagine a scenario when you'd want to hold a path context in a variable. Here's an example.
var users = Gun().get('examplses').set().path('users').set()
users.set('bob')
users.set('dave')We'd expect the user object to interface exactly like a fresh gun instance. However, when calling users.val(), the relation is logged, instead of the node.
Reactions are currently unavailable