feat(crm): add deal create/update controls with status and payment

This commit is contained in:
Ruslan Bakiev
2026-02-27 09:44:15 +07:00
parent 881a8c6d39
commit 12af9979ab
13 changed files with 907 additions and 94 deletions

View File

@@ -0,0 +1,22 @@
mutation UpdateDealMutation($input: UpdateDealInput!) {
updateDeal(input: $input) {
id
contact
title
stage
amount
paidAmount
nextStep
summary
currentStepId
steps {
id
title
description
status
dueAt
order
completedAt
}
}
}