UpdateMeetingRollCallPayload
ObjectAutogenerated return type of UpdateMeetingRollCall.
mutation { organization(id: $organizationId) { project(id: $projectId) { updateMeetingRollCall } } }
Example
mutation UpdateMeetingRollCall(
$organizationId: ID!
$projectId: ID!
$input: UpdateMeetingRollCallInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
updateMeetingRollCall(input: $input) {
meeting
errors
}
}
}
}