updateDebt
Update or insert the properties of a single debt
GraphQL Schema
extend type mutation {
"""Update or insert the properties of a single debt"""
updateDebt(input: UpdateDebtInput): UpdateDebtPayload
}
Arguments
| Name | Type | Description |
|---|---|---|
| input | [UpdateDebtInput](/04-reference/05-Input Objects/UpdateDebtInput.mdx) |
Response Shape
This mutation returns UpdateDebtPayload
| Name | Type | Description |
|---|---|---|
| success | Boolean! | Whether the mutation was successful |
| error | ErrorType | Error information |
| debt | Debt |