webapp/src/graphql/query/im-load-messages.ts

14 lines
262 B
TypeScript
Raw Normal View History

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) {
id
title
desc
slug
amount
}
}
`