updatePerson
Update a single person (user / partner)
GraphQL Schema
extend type mutation {
"""Update a single person (user / partner)"""
updatePerson(input: UpdatePersonInput!): UpdatePersonPayload!
}
Arguments
| Name | Type | Description |
|---|---|---|
| input | [UpdatePersonInput!](/04-reference/05-Input Objects/UpdatePersonInput.mdx) |
Response Shape
This mutation returns UpdatePersonPayload!
| Name | Type | Description |
|---|---|---|
| success | Boolean! | Whether the mutation was successful |
| error | ErrorType | Error information |
| person | Person |