bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/pads/pads-graphql/mutations.ts

14 lines
241 B
TypeScript

import { gql } from '@apollo/client';
export const CREATE_SESSION = gql`
mutation createSession($externalId: String!) {
sharedNotesCreateSession(
sharedNotesExtId: $externalId
)
}
`;
export default {
CREATE_SESSION,
};