daddy/internal/graph/mutation.graphql

7 lines
107 B
GraphQL

input ProfileChanges {
name: String
}
type Mutation {
updateProfile(changes: ProfileChanges!): User!
}