GraphQL reference

DeleteMeetingInput

Input

Autogenerated input type of DeleteMeeting

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

Example

mutation DeleteMeeting(
  $organizationId: ID!
  $projectId: ID!
  $input: DeleteMeetingInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      deleteMeeting(input: $input) {
        meeting
        errors
      }
    }
  }
}

Fields

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