webapp/src/graphql/query/my-chats.ts
2022-10-04 12:26:47 +03:00

24 lines
305 B
TypeScript

import { gql } from '@urql/core'
export default gql`
query GetChatsQuery {
myChats {
messages {
chatId
id
author
body
replyTo
createdAt
}
users {
slug
name
pic
}
title
createdAt
}
}
`