11 lines
200 B
TypeScript
11 lines
200 B
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const DELETE_VIEW = gql`
|
|
mutation DeleteView($where: ViewWhereUniqueInput!) {
|
|
view: deleteOneView(where: $where) {
|
|
id
|
|
name
|
|
}
|
|
}
|
|
`;
|