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

23 lines
290 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 {
id
author
body
replyTo
createdAt
}
users {
slug
name
pic
}
title
createdAt
}
}
`