GraphQL - Mutations
Given this input type:
and mutation:
You receive an error about missing required fields when calling the mutation with variables. What is the most likely cause?
input LocationInput { street: String!, city: String! }and mutation:
mutation createLocation($loc: LocationInput!) { addLocation(location: $loc) { id } }You receive an error about missing required fields when calling the mutation with variables. What is the most likely cause?
