update.graphql 173 B

12345678910
  1. mutation userUpdate($id: ID!, $input: UserInput!) {
  2. userUpdate(id: $id, input: $input) {
  3. user {
  4. ...userAttributes
  5. }
  6. errors {
  7. ...errors
  8. }
  9. }
  10. }