webapp/src/graphql/query/my-chats.ts

24 lines
305 B
TypeScript
Raw Normal View History

2022-10-04 09:26:47 +00:00
import { gql } from '@urql/core'
export default gql`
query GetChatsQuery {
myChats {
messages {
chatId
id
author
body
replyTo
createdAt
}
users {
slug
name
pic
}
title
createdAt
}
}
`