11 lines
249 B
TypeScript
11 lines
249 B
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const REMOVE_PERSON_PICTURE = gql`
|
|
mutation RemovePersonPicture($where: PersonWhereUniqueInput!) {
|
|
updateOnePerson(data: { avatarUrl: null }, where: $where) {
|
|
id
|
|
avatarUrl
|
|
}
|
|
}
|
|
`;
|