bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/app/mutations.jsx

12 lines
333 B
React
Raw Normal View History

2024-01-11 20:41:08 +08:00
import { gql } from '@apollo/client';
export const SET_SYNC_WITH_PRESENTER_LAYOUT = gql`
mutation SetSyncWithPresenterLayout($syncWithPresenterLayout: Boolean!) {
meetingLayoutSetSyncWithPresenterLayout(
syncWithPresenterLayout: $syncWithPresenterLayout,
)
}
`;
export default { SET_SYNC_WITH_PRESENTER_LAYOUT };