Created
June 6, 2018 14:16
-
-
Save charlypoly/bf35bfa506bc6d3e9f770aef1581d834 to your computer and use it in GitHub Desktop.
User mutation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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