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

29 lines
450 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-03 06:07:57 +00:00
messages {
id
body
2022-11-24 06:52:31 +00:00
author
}
admins {
slug
name
2022-11-03 06:07:57 +00:00
}
users {
slug
name
}
2022-11-24 06:52:31 +00:00
unread
description
updatedAt
2022-10-04 09:26:47 +00:00
}
}
}
`