webapp/src/graphql/query/chats-load.ts
Tony 0b70289195
Prepare inbox (#65)
Chat client - MVP
2022-12-17 06:27:00 +03:00

31 lines
485 B
TypeScript

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