begin_tasks

Begin one or more tasks. (Move their status from OPEN to IN_PROGRESS).

Input fields

sentera_ids ([ID!]!)

An array of Task Sentera IDs to begin. The limit is 100 tasks.

Return fields

failed ([BulkUpdateError!]!)

A list of any errors and the location in the input array.

succeeded ([ID!]!)

A list of all the IDs on which this bulk operation succeeded.

Examples

Begin Tasks

You move one or more tasks from OPEN to IN_PROGRESS

Try this example in GraphiQL
mutation BeginTasks {
  begin_tasks(sentera_ids: ["7qhgc8l_TA_phgrAcme_CV_deve_5ab6a8995_221219_142757"]) {
    succeeded
    failed {
      index
      errors {
        attribute
        code
        reason
        key
        message
        details
      }
    }
  }
}

{
  "data": {
    "begin_tasks": {
      "succeeded": [
        "7qhgc8l_TA_phgrAcme_CV_deve_5ab6a8995_221219_142757"
      ],
      "failed": []
    }
  }
}