webapp/src/graphql/query/chats-load.ts
2022-11-26 00:47:13 +03:00

23 lines
366 B
TypeScript

import { gql } from '@urql/core'
export default gql`
query GetChatsQuery($limit: Int, $offset: Int) {
loadChats(limit: $limit, offset: $offset) {
error
chats {
id
admins
users
unread
description
updatedAt
messages {
id
body
author
}
}
}
}
`