Been tearing my hair out on this one for the past hour:
All my fields are correct and present, and suggested in the IDE so it’s not the same issue from back in May. It’s just … not updating the record. And not throwing any errors.
Mutation:
mutation Update($item: PartialUpdateArticleInput!, $id: ID!){
partialUpdateArticle(
id: $id
data: $item
) {
headline
}
}
Variables:
{
"id": "321914237385441351",
"item": {
"headline": "this is weird but",
"articleBody": "??????"
}
}
Headers:
{
"X-Schema-Preview": "partial-update-mutation",
"authorization": "Basic <TOKEN>"
}
Response:
{
"data": {
"partialUpdateArticle": null
}
}