AddMeetingSectionInput
InputAutogenerated input type of AddMeetingSection
mutation { organization(id: $organizationId) { project(id: $projectId) { addMeetingSection } } }
Example
mutation AddMeetingSection(
$organizationId: ID!
$projectId: ID!
$input: AddMeetingSectionInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
addMeetingSection(input: $input) {
meetingSection
errors
}
}
}
}