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

23 lines
294 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
2022-11-02 13:51:57 +00:00
userpic
2022-10-04 09:26:47 +00:00
}
title
createdAt
}
}
`