gihrig
03/07/2018, 10:58 PMreturn ctx.db.mutation.updateItem(
{
where: { id },
data: {
icon,
href,
desc,
title,
keywords,
},
I want to be able execute this in the Playground:
mutation{
updateItem(
id: "cjehhjypy008k01177zefqey0"
title: "New Title"
)
{
id
title
}
}
And I get this error:
"message": "icon is not defined"