Build and Deploy a GraphQL API to the Edge with MySQL and PlanetScale — Part 4
A GraphQL mutation is a type of operation in GraphQL that modifies data on the server and typically look something like this:
mutation {
doSomething(a: String, b: Int) {
someField
}
}
doSomething is the name of the mutation
a and b are nam...
grafbase.hashnode.dev5 min read