10 lines
139 B
React
10 lines
139 B
React
|
import { gql } from '@apollo/client';
|
||
|
|
||
|
export const MEETING_END = gql`
|
||
|
mutation {
|
||
|
meetingEnd
|
||
|
}
|
||
|
`;
|
||
|
|
||
|
export default { MEETING_END };
|