12 lines
230 B
TypeScript
12 lines
230 B
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const UPDATE_CURRENT_USER = gql`
|
|
mutation UpdateCurrentUser($input: UpdateCurrentUserInput) {
|
|
updateCurrentUser(input: $input) {
|
|
id
|
|
fullName
|
|
email
|
|
}
|
|
}
|
|
`;
|