GraphQL reference

UpdateMeetingAttendeesInput

Input

Autogenerated input type of UpdateMeetingAttendees

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

Example

mutation UpdateMeetingAttendees(
  $organizationId: ID!
  $projectId: ID!
  $input: UpdateMeetingAttendeesInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      updateMeetingAttendees(input: $input) {
        meeting
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
meetingIdID!
mutationMetadataJSON
nowISO8601DateTime
projectIdID!
userIds[ID!]!