GraphQL reference

CreateDraftMeetingInput

Input

Autogenerated input type of CreateDraftMeeting

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

Example

mutation CreateDraftMeeting(
  $organizationId: ID!
  $projectId: ID!
  $input: CreateDraftMeetingInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      createDraftMeeting(input: $input) {
        meeting
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
beginsZoneString
clientMutationIdStringA unique identifier for the client performing the mutation.
idID!
mutationMetadataJSON
nowISO8601DateTime
titleString!