Files
clientsflow/frontend/graphql/operations/create-deal.graphql

23 lines
312 B
GraphQL

mutation CreateDealMutation($input: CreateDealInput!) {
createDeal(input: $input) {
id
contact
title
stage
amount
paidAmount
nextStep
summary
currentStepId
steps {
id
title
description
status
dueAt
order
completedAt
}
}
}