Skip to content

Instantly share code, notes, and snippets.

@charlypoly
Created June 6, 2018 14:16
Show Gist options
  • Save charlypoly/bf35bfa506bc6d3e9f770aef1581d834 to your computer and use it in GitHub Desktop.
Save charlypoly/bf35bfa506bc6d3e9f770aef1581d834 to your computer and use it in GitHub Desktop.
User mutation
type Mutation {
update_user(id: String!, user: UserInputType): User
}
input UserInputType {
first_name: String
last_name: String
picture_path: String
job_title: String
email: String
username: String
phone_number: String
language: String
company_name: String
platform_role_ids: [String!]
space_role_ids: [String!]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment