GraphQL reference

CreateScheduleInput

Input

Autogenerated input type of CreateSchedule

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

Example

mutation CreateSchedule(
  $organizationId: ID!
  $projectId: ID!
  $input: CreateScheduleInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      createSchedule(input: $input) {
        schedule
        errors
      }
    }
  }
}

Fields

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