2024-01-30 21:03:11 +08:00
|
|
|
import { gql } from '@apollo/client';
|
|
|
|
|
|
|
|
export const USER_CHANGED_LOCAL_SETTINGS = gql`
|
2024-07-05 04:00:06 +08:00
|
|
|
mutation UserChangedLocalSettings($settings: json!) {
|
|
|
|
userSetClientSettings(
|
|
|
|
userClientSettingsJson: $settings
|
|
|
|
)
|
2024-01-30 21:03:11 +08:00
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
export default {
|
|
|
|
USER_CHANGED_LOCAL_SETTINGS,
|
|
|
|
};
|