GraphQL reference

AddMeetingItemPayload

Object

Autogenerated return type of AddMeetingItem.

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

Example

mutation AddMeetingItem(
  $organizationId: ID!
  $projectId: ID!
  $input: AddMeetingItemInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      addMeetingItem(input: $input) {
        meetingItem
        errors
      }
    }
  }
}

Fields

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