bigbluebutton-Github/bigbluebutton-html5/imports/ui/services/settings/hooks/mutations.ts
2024-01-30 10:03:11 -03:00

19 lines
350 B
TypeScript

import { gql } from '@apollo/client';
export const USER_CHANGED_LOCAL_SETTINGS = gql`
mutation UserChangedLocalSettings($settings: jsonb!) {
update_user_clientSettings(
where: {},
_set: {
userClientSettingsJson: $settings
}
) {
affected_rows
}
}
`;
export default {
USER_CHANGED_LOCAL_SETTINGS,
};