bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/video-provider/mutations.ts
2024-01-29 09:23:10 -03:00

14 lines
246 B
TypeScript

import { gql } from '@apollo/client';
export const CAMERA_BROADCAST_START = gql`
mutation CameraBroadcastStart($cameraId: String!) {
cameraBroadcastStart(
stream: $cameraId
)
}
`;
export default {
CAMERA_BROADCAST_START,
};