GraphQL reference

DeleteMeetingSectionPayload

Object

Autogenerated return type of DeleteMeetingSection.

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

Example

mutation DeleteMeetingSection(
  $organizationId: ID!
  $projectId: ID!
  $input: DeleteMeetingSectionInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      deleteMeetingSection(input: $input) {
        meetingSection
        errors
      }
    }
  }
}

Fields

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