11 lines
244 B
TypeScript
11 lines
244 B
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const REMOVE_PROFILE_PICTURE = gql`
|
|
mutation RemoveProfilePicture($where: UserWhereUniqueInput!) {
|
|
updateUser(data: { avatarUrl: null }, where: $where) {
|
|
id
|
|
avatarUrl
|
|
}
|
|
}
|
|
`;
|