bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/notes/mutations.ts
2024-05-01 09:39:03 -03:00

15 lines
236 B
TypeScript

import { gql } from '@apollo/client';
export const PIN_NOTES = gql`
mutation pinNotes($pinned: Boolean!) {
sharedNotesSetPinned(
sharedNotesExtId: notes,
pinned: $pinned
)
}
`;
export default {
PIN_NOTES,
};