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

23 lines
429 B
TypeScript

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