guesstimate/internal/graph/mutation.graphql

7 lines
107 B
GraphQL
Raw Normal View History

2020-08-08 15:04:59 +02:00
input UserChanges {
name: String
}
type Mutation {
updateUser(id: ID!, changes: UserChanges!): User!
}