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

14 lines
273 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) {
2022-11-02 13:51:57 +00:00
author
body
createdAt
updatedAt
seen
2022-11-02 13:44:00 +00:00
}
}
`