ReorderMeetingSectionsInput
InputAutogenerated input type of ReorderMeetingSections
mutation { organization(id: $organizationId) { project(id: $projectId) { reorderMeetingSections } } }
Example
mutation ReorderMeetingSections(
$organizationId: ID!
$projectId: ID!
$input: ReorderMeetingSectionsInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
reorderMeetingSections(input: $input) {
meeting
errors
}
}
}
}