Created
December 17, 2019 10:47
-
-
Save indreklasn/787b8ce120a2193df501d4fd93b0ed2b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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