GraphQL reference

UpdateScheduleInput

Input

Autogenerated input type of UpdateSchedule

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

Example

mutation UpdateSchedule(
  $organizationId: ID!
  $projectId: ID!
  $input: UpdateScheduleInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      updateSchedule(input: $input) {
        schedule
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
createAttachments[CreateAttachment!]
deleteAttachments[DeleteAttachment!]
idID!
mutationMetadataJSON
nowISO8601DateTime
publishedAtISO8601DateTime
titleString!
uploadDateISO8601Date!