webapp/src/graphql/mutation/chat-delete.ts
2023-11-16 18:53:24 +03:00

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
}
}
`