mutation

updateUserAttributes

Update user attributes.
Arguments
updateUserAttributesRequestSchemaInput
UpdateUserAttributesRequestSchemaInput
Response
attributes
JSON
Describes the structure of user attribute.
Mutation
1mutation updateUserAttributes(
2 $updateUserAttributesRequestSchemaInput: UpdateUserAttributesRequestSchemaInput
3) {
4 updateUserAttributes(
5 updateUserAttributesRequestSchemaInput: $updateUserAttributesRequestSchemaInput
6 ) {
7 attributes
8 }
9}
Try it
Input Variables
1{
2 "updateUserAttributesRequestSchemaInput": {
3 "attributes": {}
4 }
5}
Response
1{
2 "updateUserAttributes": {
3 "attributes": {}
4 }
5}