Arguments
updateUserAttributesRequestSchemaInput
UpdateUserAttributesRequestSchemaInputResponse
attributes
JSONDescribes the structure of user attribute.
Mutation
1mutation updateUserAttributes(2 $updateUserAttributesRequestSchemaInput: UpdateUserAttributesRequestSchemaInput3) {4 updateUserAttributes(5 updateUserAttributesRequestSchemaInput: $updateUserAttributesRequestSchemaInput6 ) {7 attributes8 }9}
Try it
Input Variables
1{2 "updateUserAttributesRequestSchemaInput": {3 "attributes": {}4 }5}
Response
1{2 "updateUserAttributes": {3 "attributes": {}4 }5}
Was this section helpful?