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

28 lines
442 B
TypeScript
Raw Normal View History

2022-10-04 09:26:47 +00:00
import { gql } from '@urql/core'
export default gql`
2022-11-16 07:42:43 +00:00
query GetChatsQuery($limit: Int, $offset: Int) {
loadChats(limit: $limit, offset: $offset) {
2022-11-03 06:07:57 +00:00
error
chats {
2022-11-24 06:52:31 +00:00
id
2022-11-27 18:08:11 +00:00
title
2022-11-25 21:47:13 +00:00
admins
2022-11-27 18:08:11 +00:00
members {
slug
name
userpic
}
2022-11-25 21:47:13 +00:00
unread
description
updatedAt
2022-11-03 06:07:57 +00:00
messages {
id
body
2022-11-24 06:52:31 +00:00
author
}
2022-10-04 09:26:47 +00:00
}
}
}
`