GraphQL - Mutations
Consider this mutation:
Which fields will the server return after a successful update?
mutation { updateArticle(id: "7", input: {content: "Updated content"}) { id content publishedAt } }Which fields will the server return after a successful update?
