14 lines
262 B
TypeScript
14 lines
262 B
TypeScript
|
import { gql } from '@urql/core'
|
||
|
|
||
|
export default gql`
|
||
|
query LoadMessagesQuery($chatId: String!, $offset: Int, $amount: Int) {
|
||
|
loadChat(chatId: $chatId, offset: $offset, amount: $amount) {
|
||
|
id
|
||
|
title
|
||
|
desc
|
||
|
slug
|
||
|
amount
|
||
|
}
|
||
|
}
|
||
|
`
|