2022-11-02 13:44:00 +00:00
|
|
|
import { gql } from '@urql/core'
|
|
|
|
|
|
|
|
export default gql`
|
|
|
|
query LoadMessagesQuery($chatId: String!, $offset: Int, $amount: Int) {
|
|
|
|
loadChat(chatId: $chatId, offset: $offset, amount: $amount) {
|
2022-11-03 06:07:57 +00:00
|
|
|
error
|
|
|
|
messages {
|
|
|
|
author
|
|
|
|
body
|
|
|
|
createdAt
|
|
|
|
updatedAt
|
|
|
|
seen
|
|
|
|
}
|
2022-11-02 13:44:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|