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 {
|
|
|
|
title
|
|
|
|
description
|
|
|
|
updatedAt
|
|
|
|
messages {
|
|
|
|
id
|
|
|
|
author
|
|
|
|
body
|
|
|
|
replyTo
|
|
|
|
createdAt
|
|
|
|
}
|
|
|
|
users {
|
|
|
|
slug
|
|
|
|
name
|
|
|
|
userpic
|
|
|
|
}
|
2022-10-04 09:26:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|