Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
My logs: user already exists: 32 There's no UID 32 in the user list under manage.
How can I go about finding that uid in mongo?
db.objects.find({_key:"uid", value: "32"}}); doesnt seem to work
The user object is user:32 so db.objects.find({_key: "user:32"}); should show the data if the user is not deleted.
user:32
db.objects.find({_key: "user:32"});
@baris much