GraphQL reference

AddMeetingSectionInput

Input

Autogenerated input type of AddMeetingSection

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

Example

mutation AddMeetingSection(
  $organizationId: ID!
  $projectId: ID!
  $input: AddMeetingSectionInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      addMeetingSection(input: $input) {
        meetingSection
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
descriptionString
meetingIdID!
mutationMetadataJSON
newIdID!
nowISO8601DateTime
sectionTypeString
titleString