Skip to content

Instantly share code, notes, and snippets.

@terrillo
Last active September 14, 2019 21:47
Show Gist options
  • Save terrillo/c389015c12598266fbea32fad18f781e to your computer and use it in GitHub Desktop.
Save terrillo/c389015c12598266fbea32fad18f781e to your computer and use it in GitHub Desktop.
var TDB = new TelegraphDB("my-project-key", "us-east")
// Access Collection
var users = TDB.collection("users")
// Insert Data
users.insert([{
"info": {
"first_name": "Jack",
"last_name": "Dorsey"
},
"social": {
"twitter": "jack"
},
"email": "jack@twitter.com"
}])
// Find
var userData = users.find({
"email": "jack@twitter.com"
})
console.log(userData)
// [{"info":{"first_name":"Jack","last_name":"Dorsey"},"social":{"twitter":"jack"},"email":"jack@twitter.com"}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment