Hi,
I’m facing an issue with this mutation:
mutation saveUpdate ($item_ids:Int, $body: String){
create_update (item_id: $item_ids, body: $body) {
id
text_body
body
created_at
}
}
And the answer I’m getting is:
{
"errors": s
{
"message": "An operation name is required"
}
],
"account_id": XXXXXX
}
What am I doing wrong?
Thanks
Carlos