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

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,
};