GraphQL reference

UpdateMeetingItemPayload

Object

Autogenerated return type of UpdateMeetingItem.

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

Example

mutation UpdateMeetingItem(
  $organizationId: ID!
  $projectId: ID!
  $input: UpdateMeetingItemInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      updateMeetingItem(input: $input) {
        meetingItem
        errors
      }
    }
  }
}

Fields

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