7 lines
107 B
GraphQL
7 lines
107 B
GraphQL
|
input ProfileChanges {
|
||
|
name: String
|
||
|
}
|
||
|
|
||
|
type Mutation {
|
||
|
updateProfile(changes: ProfileChanges!): User!
|
||
|
}
|