Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Created December 17, 2019 10:47
Show Gist options
  • Save indreklasn/787b8ce120a2193df501d4fd93b0ed2b to your computer and use it in GitHub Desktop.
Save indreklasn/787b8ce120a2193df501d4fd93b0ed2b to your computer and use it in GitHub Desktop.
import { client, q } from '../config/db'
const createNote = text => client.query(
q.Create(
q.Collection('notes'),
{
data: {
text
},
},
)
)
.then(ret => ret)
.catch(err => console.warn(err))
export default createNote
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment