webapp/src/graphql/mutation/chat-delete.ts

11 lines
200 B
TypeScript
Raw Normal View History

2023-11-16 15:53:24 +00:00
import { ChatInput } from './../types.gen'
import { gql } from '@urql/core'
export default gql`
mutation DeleteChat($chat_id: String!) {
deleteChat(chat_id: $chat_id) {
error
}
}
`