GraphQL - Schema Definition Language (SDL)
If a GraphQL schema defines a mutation like:
What will happen if a client sends a mutation without the "name" argument?
type Mutation { addUser(name: String!): User }What will happen if a client sends a mutation without the "name" argument?
