dealStageUpdate

Graphql fields and variables for the dealStageUpdate mutation

Update a deal stage

Scope required: admin:write

For a complete list of input attributes see the DealStageAttributes type

mutation dealStageUpdate ($id: ID!, $attributes: DealStageAttributes!) {
  dealStageUpdate (id: $id, attributes: $attributes) {
      dealStage {
        createdAt
        description
        id
        name
        position
        probability
        updatedAt
      }
      errors
  }
}

Arguments

{
  "id": "456123",
  "attributes": {
    "name": "",
    "description": "",
    "position": 123,
    "probability": 123,
    "kind": "DealStageKind"
  }
}
Name
Type
Description

id

ID

Response

Name
Type
Description

dealStage

errors

List (String)

Last updated

Was this helpful?