11 lines
200 B
TypeScript
11 lines
200 B
TypeScript
import { ChatInput } from './../types.gen'
|
|
import { gql } from '@urql/core'
|
|
|
|
export default gql`
|
|
mutation DeleteChat($chat_id: String!) {
|
|
deleteChat(chat_id: $chat_id) {
|
|
error
|
|
}
|
|
}
|
|
`
|