GraphQL reference

CreateScheduleTaskPayload

Object

Autogenerated return type of CreateScheduleTask.

mutation { organization(id: $organizationId) { project(id: $projectId) { createScheduleTask } } }

Example

mutation CreateScheduleTask(
  $organizationId: ID!
  $projectId: ID!
  $input: CreateScheduleTaskInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      createScheduleTask(input: $input) {
        scheduleTask
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
constructableUrlString
errors[String!]!
scheduleTaskScheduleTask