query for all data

This commit is contained in:
davidwells 2018-06-11 18:49:22 -07:00
parent fd5b183d00
commit 4c794b23f3
2 changed files with 11 additions and 4 deletions

View file

@ -7,7 +7,7 @@ const client = new faunadb.Client({
exports.handler = (event, context, callback) => { exports.handler = (event, context, callback) => {
const data = JSON.parse(event.body) const data = JSON.parse(event.body)
console.log("Function `todo-create` invoked") console.log("Function `todo-create` invoked", data)
return client.query(q.Create(q.Ref("classes/todos"), {data})) return client.query(q.Create(q.Ref("classes/todos"), {data}))
.then((response) => { .then((response) => {
console.log("success", response) console.log("success", response)

View file

@ -10,9 +10,16 @@ exports.handler = (event, context, callback) => {
return client.query(q.Paginate(q.Match(q.Ref("indexes/all_todos")))) return client.query(q.Paginate(q.Match(q.Ref("indexes/all_todos"))))
.then((response) => { .then((response) => {
console.log("success", response) console.log("success", response)
const newQuery = response.data.map((ref) => {
console.log('ref', ref)
return q.Get(ref)
})
// then query the refs
return client.query(newQuery).then((ret) => {
return callback(null, { return callback(null, {
statusCode: 200, statusCode: 200,
body: JSON.stringify(response) body: JSON.stringify(ret)
})
}) })
}).catch((error) => { }).catch((error) => {
console.log("error", error) console.log("error", error)