fix ID reference

This commit is contained in:
davidwells 2018-06-11 17:10:19 -07:00
parent 4f616b21a1
commit d4c3868e20
5 changed files with 43 additions and 52 deletions

View file

@ -1,27 +1,26 @@
'use strict';
import faunadb from 'faunadb'
// const faunadb = require('faunadb');
const q = faunadb.query;
const q = faunadb.query
const client = new faunadb.Client({
secret: process.env.FAUNADB_SECRET
});
})
exports.handler = (event, context, callback) => {
const data = JSON.parse(event.body);
console.log("update todo");
return client.query(q.Update(q.Ref("classes/todos/"+event.pathParameters.id), {data}))
const data = JSON.parse(event.body)
const id = event.path.replace(/\/\.netlify\/functions\/todos-update\//, "")
console.log("update todo", id)
return client.query(q.Update(q.Ref(`classes/todos/${id}`), {data}))
.then((response) => {
console.log("success", response);
console.log("success", response)
return callback(null, {
statusCode: 200,
body: JSON.stringify(response)
})
}).catch((error) => {
console.log("error", error);
console.log("error", error)
return callback(null, {
statusCode: 400,
body: JSON.stringify(error)
})
})
};
}