23 lines
312 B
GraphQL
23 lines
312 B
GraphQL
mutation UpdateDealMutation($input: UpdateDealInput!) {
|
|
updateDeal(input: $input) {
|
|
id
|
|
contact
|
|
title
|
|
stage
|
|
amount
|
|
paidAmount
|
|
nextStep
|
|
summary
|
|
currentStepId
|
|
steps {
|
|
id
|
|
title
|
|
description
|
|
status
|
|
dueAt
|
|
order
|
|
completedAt
|
|
}
|
|
}
|
|
}
|